/* ================================================================
   Catawba Ridge Land & Farm Services — Main Stylesheet
   Mobile-first, CSS Custom Properties, no preprocessor
   ================================================================ */

/* ── Custom Properties ── */
:root {
  --forest-green:       #1B2E1B;
  --forest-green-deep:  #142214;
  --parchment:          #F0ECE4;
  --warm-white:         #FAF8F4;
  --cream:              #F7F4EE;

  --deep-olive:         #3D4F1F;
  --logo-green:         #4A6D2E;
  --cta-green:          #2D8C3C;
  --cta-green-hover:    #257A32;
  --cta-green-active:   #1F6B2A;
  --badge-green-start:  #2D8C3C;
  --badge-green-end:    #45B855;

  --burnt-orange:       #C95E1A;
  --burnt-orange-hover: #B8520F;
  --burnt-orange-light: #D4691E;
  --footer-orange:      #D4781E;
  --amber-wash:         rgba(201, 94, 26, 0.12);
  --amber-wash-strong:  rgba(201, 94, 26, 0.22);

  --text-dark:          #1A1A18;
  --text-muted:         #6B6860;
  --text-light:         #F5F2EC;
  --text-light-muted:   #C8C4BC;

  --border-light:       #DDD8CE;
  --border-dark:        #2A4020;
  --shadow-card:        0 2px 12px rgba(26, 26, 24, 0.08);
  --shadow-card-hover:  0 4px 20px rgba(26, 26, 24, 0.14);
  --shadow-dark:        0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-sticky:      0 2px 8px rgba(0, 0, 0, 0.3);

  --transition-fast:    150ms ease;
  --transition-base:    250ms ease;
  --transition-slow:    400ms ease;

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
blockquote { margin: 0; padding: 0; }


/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--cta-green);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 0;
}


/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}


/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); }
h4, h5, h6 { font-family: var(--font-body); }

h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ── Sections ── */
.section {
  padding: 4rem 0;
}
.section--light {
  background: var(--parchment);
  color: var(--text-dark);
}
.section--dark {
  background: var(--forest-green);
  color: var(--text-light);
}
.section__title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--forest-green);
}
.section__title--light {
  color: var(--warm-white);
}


/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--cta-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.btn-primary:hover {
  background: var(--cta-green-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--cta-green-active);
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--burnt-orange);
  outline-offset: 3px;
}
.btn-primary--large {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}
.btn-primary .icon {
  flex-shrink: 0;
}


/* ── SDVOSB Pill (frosted) ── */
.sdvosb-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* ── Project Minimum Badge ── */
.min-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--badge-green-start), var(--badge-green-end));
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-top: 1rem;
}


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.625rem 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header--top {
  background: rgba(27, 46, 27, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-header--scrolled {
  background: var(--forest-green);
  box-shadow: var(--shadow-sticky);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.header__nav {
  display: none;
}
.header__nav .nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav .nav-list li a {
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.header__nav .nav-list li a:hover {
  border-bottom-color: var(--burnt-orange);
}
.header__nav .nav-list li a:focus-visible {
  outline: 2px solid var(--burnt-orange);
  outline-offset: 4px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__cta {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.header__cta span {
  display: none;
}

/* Hamburger */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.header__menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 56px;
  background: var(--forest-green);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav--open {
  display: flex;
}
.mobile-nav__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.mobile-nav__list li a {
  display: block;
  color: var(--warm-white);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
}
.mobile-nav__list li a:hover {
  color: var(--burnt-orange);
}
.mobile-nav__cta {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.mobile-nav__email {
  color: var(--text-light-muted);
  text-align: center;
  font-size: 1rem;
}
.mobile-nav__email:hover {
  color: var(--burnt-orange);
}


/* ================================================================
   SECTION 1 — HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.25rem 4rem;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(27, 46, 27, 0.6) 0%,
    rgba(27, 46, 27, 0.35) 25%,
    var(--amber-wash) 45%,
    var(--amber-wash-strong) 65%,
    rgba(27, 46, 27, 0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: heroFadeIn 0.8s ease-out both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__headline {
  color: var(--warm-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero__sub {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}
.hero__area {
  color: var(--text-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.25);
}
.hero .sdvosb-pill {
  margin-bottom: 1.75rem;
}
.hero__cta-wrap {
  margin-top: 0.5rem;
}


/* ================================================================
   SECTION 2 — EQUIPMENT
   ================================================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.equipment-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.equipment-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.equipment-card__body {
  padding: 1.75rem;
}
.equipment-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.equipment-card__icon {
  color: var(--burnt-orange);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.equipment-card__title {
  color: var(--forest-green);
  font-size: 1.375rem;
  margin-bottom: 0.125rem;
}
.equipment-card__model {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 0;
}
.equipment-card__subtitle {
  color: var(--deep-olive);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--burnt-orange);
}

/* Feature list (shared) */
.feature-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  background: var(--burnt-orange);
  border-radius: 50%;
  opacity: 0.85;
}

/* Tags */
.equipment-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-block;
  background: rgba(26, 46, 26, 0.08);
  border: 1px solid rgba(26, 46, 26, 0.2);
  color: var(--forest-green);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Fleet */
.fleet {
  margin-top: 2.5rem;
  text-align: center;
}
.fleet__title {
  color: var(--forest-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fleet__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.fleet__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}
.fleet__icon {
  color: var(--burnt-orange);
  flex-shrink: 0;
}


/* ================================================================
   SECTION 3 — SERVICES & PRICING
   ================================================================ */

/* Mobilization card */
.mobilization {
  background: var(--forest-green-deep);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.mobilization__title {
  color: var(--burnt-orange);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.mobilization__minimum {
  margin-top: 1rem;
  text-align: center;
}

/* Fee list */
.fee-list {
  margin: 0;
  padding: 0;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dark);
}
.fee-row:last-child {
  border-bottom: none;
}
.fee-row dt {
  color: var(--text-light);
  font-size: 0.9375rem;
}
.fee-row dd {
  color: var(--burnt-orange);
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}
.fee-free {
  color: var(--cta-green) !important;
}

/* Service panels */
.service-panel {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--parchment);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-panel__content {
  padding: 2rem;
}
.service-panel__title {
  color: var(--forest-green);
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}
.service-panel__subtitle {
  color: var(--burnt-orange);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.service-panel__lead {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--burnt-orange);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.service-panel__content .feature-list {
  margin-bottom: 0;
}
.service-panel__content .feature-list li {
  color: var(--text-dark);
}

/* Extras (Panel D) */
.service-panel__extras {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.extra-block {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.extra-block strong {
  color: var(--forest-green);
  font-size: 0.9375rem;
}
.extra-block span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Pricing column */
.service-panel__pricing {
  background: var(--forest-green);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-panel__pricing-title {
  color: var(--burnt-orange-light);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.price-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}
.price-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
}
.price-block--fallback {
  opacity: 0.8;
}
.price-label {
  display: block;
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burnt-orange);
  line-height: 1.1;
}
.price-amount--large {
  font-size: 2.25rem;
}
.price-unit {
  display: block;
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  margin-top: 0.125rem;
}

.price-block__note {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-block__note span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cta-green);
  font-size: 0.875rem;
  font-weight: 600;
}
.price-block__note span::before {
  content: '\2713';
}
.price-block--featured {
  border-bottom: none;
  margin-bottom: 0.5rem;
}


/* ================================================================
   SECTION 4 — WHY CONTRACTORS PARTNER WITH US
   ================================================================ */
.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.value-tile {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.value-tile:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.value-tile__icon {
  color: var(--burnt-orange);
  margin-bottom: 1rem;
}
.value-tile__title {
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}
.value-tile__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}


/* ================================================================
   SECTION 5 — SERVICE AREA
   ================================================================ */
.service-area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service-area__map svg,
.service-area__map-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}
.service-area__fees {
  background: var(--forest-green-deep);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 2rem;
}
.service-area__fees-title {
  color: var(--burnt-orange);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fee-list--compact .fee-row {
  padding: 0.5rem 0;
}
.fee-list--compact .fee-row dt {
  font-size: 0.875rem;
}
.fee-list--compact .fee-row dd {
  font-size: 0.9375rem;
}
.service-area__counties {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}
.service-area__counties h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.service-area__counties ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-area__counties li {
  color: var(--text-light-muted);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-area__counties li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--cta-green);
  border-radius: 50%;
}
.service-area__note {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.service-area__fees .btn-primary {
  width: 100%;
  margin-bottom: 0.75rem;
}
.service-area__email {
  display: block;
  text-align: center;
  color: var(--text-light-muted);
  font-size: 1rem;
  transition: color var(--transition-fast);
}
.service-area__email:hover {
  color: var(--burnt-orange);
}


/* ================================================================
   SECTION 6 — FOOTER CTA
   ================================================================ */
.footer-cta {
  border-top: 4px solid var(--footer-orange);
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer-cta__logo-wrap {
  display: inline-block;
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.footer-cta__logo {
  width: 180px;
  height: auto;
}
.footer-cta__heading {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.footer-cta__sub {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}
.footer-cta__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.footer-cta__phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burnt-orange);
  transition: color var(--transition-fast);
}
.footer-cta__phone:hover {
  color: var(--burnt-orange-hover);
}
.footer-cta__email {
  color: var(--text-light);
  font-size: 1.125rem;
  transition: color var(--transition-fast);
}
.footer-cta__email:hover {
  color: var(--burnt-orange);
}
.footer-cta__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.footer-cta__sam-badge {
  width: 120px;
  height: auto;
  border-radius: 4px;
}
.footer-cta__copyright {
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  margin-top: 1rem;
}


/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ================================================================
   RESPONSIVE — TABLET (768px+)
   ================================================================ */
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
  .section { padding: 5rem 0; }

  /* Header */
  .header__nav { display: block; }
  .header__menu-toggle { display: none; }
  .header__cta span { display: inline; }
  .header__cta { font-size: 0.9375rem; padding: 0.5rem 1.25rem; }

  /* Hero */
  .hero { padding: 8rem 2rem 6rem; }
  .hero__sub { font-size: 1.1875rem; }

  /* Equipment */
  .equipment-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  h3 { font-size: 1.5rem; }

  /* Services */
  .service-panel { grid-template-columns: 1fr 1fr; }
  .mobilization {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
  }
  .mobilization__minimum {
    grid-column: 1 / -1;
  }

  /* Value Props */
  .value-props-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service Area */
  .service-area-layout { grid-template-columns: 3fr 2fr; }

  /* Footer */
  .footer-cta__phone { font-size: 2rem; }
  .footer-cta__badges { flex-direction: row; }
}


/* ================================================================
   RESPONSIVE — DESKTOP (1024px+)
   ================================================================ */
@media (min-width: 1024px) {
  .value-props-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .service-panel__content { padding: 2.5rem; }
  .service-panel__pricing { padding: 2.5rem; }
  .price-amount { font-size: 2rem; }
}


/* ================================================================
   RESPONSIVE — WIDE (1280px+)
   ================================================================ */
@media (min-width: 1280px) {
  .container { padding-inline: 2.5rem; }
  .section { padding: 6rem 0; }
  .hero { padding: 0 2.5rem; }

  .equipment-card__body { padding: 2rem; }
  .fleet__list { gap: 3rem; }
}


/* ================================================================
   RESPONSIVE — ULTRAWIDE (1920px+)
   ================================================================ */
@media (min-width: 1920px) {
  .hero__content { max-width: 800px; }
}
