/*
 * ============================================================
 *  ROBERTS FUEL SERVICES — STYLESHEET
 * ============================================================
 *  Mobile-first. Brand palette only.
 *
 *  COLOR TOKENS:
 *    --bark:      #1E2832  deep bark brown (primary dark)
 *    --bark-deep: #111827  near-black brown (footer)
 *    --saddle:    #2C3E50  saddle brown
 *    --wheat:     #E8620A  wheat gold (accent / CTA highlight)
 *    --green:     #E8620A  forest green (primary CTA)
 *    --green-lt:  #F5A673  light green (secondary coverage)
 *    --linen:     #F4F5F6  linen (page background)
 *    --linen-dark:#E9ECEF  warm off-white (alt sections)
 *    --white:     #FFFFFF
 *    --text:      #111827  near-black body text
 *    --muted:     #6B7280  secondary text
 *    --border:    #CBD5E0  warm border
 *
 *  FONTS: Roboto Condensed 700/900 (display) + Source Serif 4 400/600 (body)
 * ============================================================
 */

/* ============================================================
   RESET & CUSTOM PROPERTIES
   ============================================================ */

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

:root {
  --slate-dark:   #1E2832;
  --slate-mid:    #2C3E50;
  --slate-light:  #374A5A;
  --orange:       #E8620A;
  --orange-dark:  #C4510A;
  --orange-mid:   #F5A673;
  --orange-light: #FFF0E6;
  --white:        #FFFFFF;
  --off-white:    #F4F5F6;
  --surface:      #E9ECEF;
  --text-dark:    #111827;
  --text-muted:   #6B7280;
  --text-light:   #E5E7EB;
  --border:       #CBD5E0;

  --font-display: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);

  --max-width:   960px;
  --section-pad: 5rem 1.5rem;
  --nav-height:  68px;
}

/* ============================================================
   BASE
   ============================================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.65rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section--dark      { background: var(--slate-dark);      color: var(--white); }
.section--bark      { background: var(--slate-dark);      color: var(--white); }
.section--saddle    { background: var(--slate-mid);    color: var(--white); }
.section--linen     { background: var(--off-white); }
.section--linen-dark { background: var(--surface); }
.section--white     { background: var(--white); }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Section header block */
.section-header {
  margin-bottom: 3rem;
  max-width: 680px;
}

.section-header h2 {
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }

/* Primary — wheat gold */
.btn--primary {
  background: var(--orange);
  color: var(--text-dark);
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(232,98,10,0.28);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 5px 18px rgba(232,98,10,0.45);
}

/* Secondary — white outlined */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Green CTA */
.btn--green {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(232,98,10,0.28);
}
.btn--green:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 5px 16px rgba(232,98,10,0.40);
}

/* Outline dark (saddle) */
.btn--outline-dark {
  background: transparent;
  color: var(--slate-mid);
  border-color: var(--slate-mid);
}
.btn--outline-dark:hover {
  background: var(--slate-mid);
  color: var(--white);
}

/* ============================================================
   24/7 AVAILABILITY BAR
   ============================================================ */

.avail-bar {
  background: var(--slate-mid);
  padding: 0.5rem 1.5rem;
  position: relative;
  z-index: 1001;
}

.avail-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.avail-bar__badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--orange);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

.avail-bar__text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
}

.avail-bar__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  color: var(--orange);
  transition: opacity 0.15s;
}

.avail-bar__phone:hover { opacity: 0.8; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--slate-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.32);
}

/* Wheat pinstripe at top of nav */
.nav::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--orange);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  position: relative;
}

/* Underline accent on hover/active */
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__links a.active {
  color: var(--orange);
}
.nav__links a.active::after { transform: scaleX(1); }

/* Phone CTA button */
.nav__cta {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  background: var(--orange);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(232,98,10,0.3);
}

.nav__cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(232,98,10,0.48);
}

/* Hamburger button */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--text-dark);
  padding: 0.75rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(232,98,10,0.2);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover      { color: var(--orange); }

.nav__mobile-phone {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange) !important;
  letter-spacing: 0.05em;
  border: none !important;
}

@media (min-width: 768px) {
  .nav__links     { display: flex; }
  .nav__cta       { display: inline-block; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   HERO (home page)
   ============================================================ */

.hero {
  position: relative;
  background: var(--slate-dark); /* fallback if photo fails to load */
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Full-bleed background photo */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  display: block;
}

/* Dark overlay so text stays readable on photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 28, 0.65);
  z-index: 1;
}

/* Subtle dot texture on top of overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,98,10,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 2;
}

/* Wheat accent bar at bottom */
.hero__accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 60%, var(--orange) 100%);
  z-index: 4;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero__title {
  color: var(--white);
  max-width: 660px;
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.35);
}

.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  font-weight: 400;
}

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

@media (max-width: 767px) {
  .hero { min-height: 480px; }
  .hero__inner { padding: 3.5rem 1.5rem 4.5rem; }
}

@media (min-width: 768px) {
  .hero { min-height: 640px; }
  .hero__inner { padding: 6.5rem 1.5rem; }
}

@media (min-width: 1024px) {
  .hero { min-height: 720px; }
}

/* ============================================================
   SERVICE OVERVIEW CARDS (home page)
   ============================================================ */

.service-cards {
  background: var(--white);
  padding: var(--section-pad);
}

.service-cards .section-header h2 { color: var(--slate-dark); }

.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

/* Left green accent bar — slides in on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.22s ease;
  border-radius: 0 0 0 var(--radius-md);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232,98,10,0.25);
}

.card:hover::before { transform: scaleY(1); }

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  display: block;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--slate-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   WHY CHOOSE US — STAT ROW
   ============================================================ */

.why-section {
  background: var(--slate-dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe texture */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.018) 40px,
    rgba(255,255,255,0.018) 41px
  );
  pointer-events: none;
}

.why-section .section-header { position: relative; }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p  { color: rgba(255,255,255,0.58); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  transition: background 0.2s;
}

.stat-card:hover { background: rgba(255,255,255,0.07); }

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.stat-card__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.stat-card__detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}

/* ============================================================
   24/7 CTA BAND
   ============================================================ */

.cta-band {
  background: var(--slate-dark);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot texture */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-band__inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.cta-band__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.22);
  transition: opacity 0.15s, transform 0.15s;
}

.cta-band__phone:hover {
  opacity: 0.88;
  transform: scale(1.01);
}

/* Two-column CTA band variant (index.html) */
@media (min-width: 900px) {
  .cta-band--split .cta-band__inner {
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
  }
  .cta-band--split .cta-band__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
  }
  .cta-band--split .cta-band__phone { margin-bottom: 0; }
}

/* ============================================================
   CONTACT TEASER (home page)
   ============================================================ */

.contact-teaser {
  background: var(--surface);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.contact-teaser__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .contact-teaser__inner { grid-template-columns: 1fr 1fr; }
}

.contact-teaser h2 { color: var(--slate-dark); margin-bottom: 0.5rem; }
.contact-teaser p  { color: var(--text-muted); margin-top: 0.5rem; font-size: 1.05rem; }

.contact-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ============================================================
   CONTACT INFO CARD ITEMS (home teaser + contact page)
   ============================================================ */

.contact-info__item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-mid);
}

.contact-info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1.05rem;
  color: var(--slate-dark);
  font-weight: 600;
}

.contact-info__value a {
  color: var(--orange);
  transition: opacity 0.15s;
}

.contact-info__value a:hover { opacity: 0.75; }

/* Small card for teaser panel on home page */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PAGE HERO (inner pages: services, about, contact)
   ============================================================ */

.page-hero {
  background: var(--slate-dark); /* fallback */
  padding: 5rem 1.5rem 4.5rem;
  border-bottom: 4px solid var(--orange);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .page-hero { min-height: 580px; }
}

/* Full-bleed background photo */
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 0;
  display: block;
}

/* Dark overlay for text legibility */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 28, 0.65);
  z-index: 1;
}

/* Wheat gradient reinforcement at bottom edge */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(30,40,50,0.5) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 580px;
}

/* ============================================================
   SERVICES DETAIL BLOCKS
   ============================================================ */

.services-detail {
  background: var(--white);
  padding: var(--section-pad);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .service-block { grid-template-columns: 1fr 1fr; }
  .service-block--reverse .service-block__visual { order: -1; }
  .service-block__visual { min-height: 420px; }
}

.service-block__visual {
  border-radius: var(--radius-md);
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface); /* fallback if photo fails */
}

/* Real photo inside service block visual */
.service-block__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.service-block:hover .service-block__visual img {
  transform: scale(1.03);
}

.service-block h3 { color: var(--slate-dark); margin-bottom: 0.75rem; }
.service-block p  { color: var(--text-muted); line-height: 1.7; }

.service-block__list { margin-top: 1.1rem; }

.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

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

.service-block__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.88rem;
}

/* ============================================================
   COVERAGE MAP
   ============================================================ */

.map-section {
  padding: var(--section-pad);
  background: var(--surface);
}

.map-section .section-header h2 { color: var(--slate-dark); }
.map-section .section-header p  { color: var(--text-muted); }

.map-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

#coverage-map {
  width: 100%;
  display: block;
  cursor: default;
}

#coverage-map path {
  stroke: var(--white);
  stroke-width: 1.5;
  transition: fill 0.18s ease;
}

#coverage-map path[data-tier="primary"]   { fill: var(--orange);    cursor: pointer; }
#coverage-map path[data-tier="secondary"] { fill: var(--orange-mid); cursor: pointer; }
#coverage-map path[data-tier="none"]      { fill: #CBD5E0; }

#coverage-map path[data-tier="primary"]:hover   { fill: var(--orange-dark); }
#coverage-map path[data-tier="secondary"]:hover { fill: #E8916A; }

.map-info-bar {
  background: var(--slate-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.93rem;
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.map-info-bar__state {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--orange);
  white-space: nowrap;
}

.map-info-bar__note { color: rgba(255,255,255,0.7); }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 1.5rem;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.map-legend__swatch {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-owner {
  padding: var(--section-pad);
  background: var(--white);
}

.about-owner__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-owner__layout { grid-template-columns: auto 1fr; }
}

.about-owner__photo {
  width: 200px;
  height: 260px;
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.about-owner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-owner h3 { color: var(--slate-dark); margin-bottom: 0.35rem; }

.about-owner__bio p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-owner__bio p:last-child { margin-bottom: 0; }

/* Credentials */
.credentials {
  padding: var(--section-pad);
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}

.credentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.018) 40px,
    rgba(255,255,255,0.018) 41px
  );
  pointer-events: none;
}

.credentials h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.credential-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  position: relative;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .credential-list { grid-template-columns: 1fr 1fr; }
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: background 0.18s;
}

.credential-list li:hover { background: rgba(255,255,255,0.07); }

.credential-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================================
   CONTACT PAGE & FORM
   ============================================================ */

.contact-page {
  padding: var(--section-pad);
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

/* Tip / note box (contact page) */
.tip-box {
  background: var(--orange-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-top: 0.5rem;
}

.tip-box__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 0.45rem;
}

.form--dark .form-group label { color: rgba(255,255,255,0.75); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,10,0.15);
}

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

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

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
  }
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
}

.form-message--success {
  background: #D4EDDA;
  border: 1px solid #A3D9B1;
  color: #1E5631;
}

.form-message--error {
  background: #F8D7DA;
  border: 1px solid #F1AEB5;
  color: #6E1C22;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.62);
  padding: 4rem 1.5rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232,98,10,0.18);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.1fr; }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.footer__brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer__links li   { margin-bottom: 0.55rem; }

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
}

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

.footer__contact-item {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.58);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   UTILITY — ACCESSIBILITY
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   COVERAGE MAP SCROLL WRAPPER
   ============================================================ */

.map-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.map-mobile-hint {
  display: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

/* ============================================================
   MOBILE  ≤ 639px
   ============================================================ */

@media (max-width: 639px) {

  /* Section padding */
  :root      { --section-pad: 2.5rem 1.25rem; }
  .container { padding: 0 1rem; }
  .cta-band  { padding: 3rem 1.25rem; }
  .footer    { padding: 2rem 1.25rem 0; }

  /* Typography */
  h1           { font-size: 2.2rem; }
  .hero__sub   { font-size: 1rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Availability bar — center when it wraps */
  .avail-bar__inner { justify-content: center; }
  .avail-bar__text  { font-size: 0.73rem; }
  .avail-bar__phone { font-size: 0.82rem; }

  /* Hero */
  .page-hero   { padding: 2rem 1.25rem; }
  .hero__inner { padding: 2.5rem 1.25rem 3rem; }
  .hero__ctas  { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  /* Buttons — universal min tap target; solo CTAs full-width */
  .btn           { min-height: 48px; }
  .cta-band .btn { display: block; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }

  /* Service cards */
  .card { padding: 1.5rem 1.25rem; }

  /* Footer — compact single-column with border dividers */
  .footer__grid         { gap: 0; padding-bottom: 0; border-bottom: none; }
  .footer__grid > *     { padding: 1.1rem 0; }
  .footer__grid > * + * { border-top: 1px solid rgba(255,255,255,0.08); }

  /* Brand — tight name+tagline, hide body copy on mobile */
  .footer__brand-name { font-size: 1.7rem; }
  .footer__brand-tag  { margin-bottom: 0; }
  .footer__brand-desc { display: none; }

  /* Nav — 2×2 grid, tighter links */
  .footer__links    { display: grid; grid-template-columns: 1fr 1fr; row-gap: 0.3rem; }
  .footer__links li { margin-bottom: 0; }

  /* Contact — phone tappable and orange, email wraps cleanly */
  .footer__contact-item--phone a {
    color: var(--orange) !important;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .footer__contact-item a { overflow-wrap: break-word; word-break: break-all; }

  /* Bottom bar — centered, padded for browser chrome */
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
  }

  /* Contact form — full-width inputs with adequate tap height */
  .form-group input,
  .form-group select,
  .form-group textarea { min-height: 48px; }

  /* Coverage map — horizontal scroll on small screens */
  .map-scroll-wrap              { margin: 0 -1rem; }
  .map-scroll-wrap .map-wrapper { min-width: 500px; }
  .map-mobile-hint              { display: block; }
}

/* ============================================================
   MOBILE LAYOUT REFLOW  ≤ 767px
   ============================================================ */

@media (max-width: 767px) {
  /* About page photo — center above bio instead of left-floating */
  .about-owner__photo {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

/* ============================================================
   REVIEWS — "WHAT OUR PARTNERS SAY" CAROUSEL (home page)
   ============================================================ */

.reviews {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.reviews-carousel {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* Scroll-snap track */
.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* Firefox */
  padding: 0.5rem 0.25rem 1.25rem;  /* room for card hover shadow */
  flex: 1;
  min-width: 0;
}
.reviews-track::-webkit-scrollbar { display: none; }

.reviews-track:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* Review card */
.review-card {
  flex: 0 0 85%;
  max-width: 420px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-card__stars {
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.review-card__star         { color: var(--border); }
.review-card__star--filled { color: var(--orange); }

.review-card__quote {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 1.25rem;
  flex: 1;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid var(--surface);
  padding-top: 0.9rem;
}

.review-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--slate-dark);
}

.review-card__company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Arrow buttons — desktop only */
.reviews-nav {
  flex: 0 0 auto;
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--slate-mid);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.reviews-nav:hover:not(:disabled) {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.reviews-nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (min-width: 768px) {
  .reviews-nav  { display: flex; }
  .review-card  { flex-basis: calc(50% - 0.625rem); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { scroll-behavior: auto; }
  .review-card,
  .review-card:hover { transition: none; transform: none; }
}

@media print {
  .nav, .avail-bar, .nav__mobile, .cta-band { display: none; }
  body { background: white; }
}
