:root {
  --black:      #080808;
  --black-2:    #0A0A0A;
  --black-3:    #111111;
  --black-4:    #141414;
  --white:      #F4F1EC;
  --white-55:   rgba(244,241,236,0.55);
  --white-40:   rgba(244,241,236,0.40);
  --white-20:   rgba(244,241,236,0.20);
  --white-10:   rgba(244,241,236,0.10);
  --orange:     #FF5500;
  --orange-20:  rgba(255,85,0,0.20);
  --orange-10:  rgba(255,85,0,0.10);
  --gold:       #C0A060;
  --gray-1:     #888888;
  --gray-2:     #555555;
  --gray-3:     #333333;
  --rule:       #1E1E1E;
}

/* ── SHARED LAYOUT ── */
.pad { padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 64px); }
.pad-sm { padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px); }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  min-width: 20px;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding:50px 0 50px 78px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-3);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 7, 0.97) 0%, rgba(14, 11, 7, 0.65) 45%, rgba(14, 11, 7, 0.5) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: '[ HERO IMAGE: CAT 308E2 CR + NPK GH6 breaking limestone ]';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray-3);
  text-align: center;
  max-width: 440px;
  line-height: 1.8;
  z-index: 0;
  padding: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  /*padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 64px);*/
  max-width: min(840px, 100%);
}

.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.line-white { color: var(--white); display: block; }
.line-orange { color: var(--orange); display: block; }

.hero-sub {
  font-weight: 300;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 16px clamp(20px, 4vw, 32px);
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.9; }
.hero-cta::after { content: '→'; font-size: 16px; }

/* Hero data strip — moves below headline on mobile */
.hero-data {
  position: absolute;
  bottom: clamp(40px, 8vw, 80px);
  right: clamp(20px, 5vw, 64px);
  z-index: 2;
  text-align: right;
}
.hero-data-item { margin-bottom: 16px; }
.hero-data-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 4px;
}
.hero-data-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
}
.hero-data-value span { color: var(--orange); }

/* ── WHAT SECTION ── */
.what-section {
  border-top: 1px solid var(--rule);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.what-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
}
.what-headline .line-orange { color: var(--orange); display: block; }
.what-body {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
  color: var(--white-55);
}

/* ── SUB-SERVICES ── */
.services-section { padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 10vw, 120px); }

.sub-service {
  display: grid;
  grid-template-columns: clamp(280px, 38%, 452px) 1fr;
  border-top: 1px solid var(--rule);
}
.sub-service-content { padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px) clamp(28px, 4vw, 48px) 0; }

.sub-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.tag-core { background: var(--orange); color: var(--black); }
.tag-addon { background: var(--orange-20); color: var(--orange); border: 1px solid rgba(255,85,0,0.3); }

.sub-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sub-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.75;
  color: var(--white-55);
  margin-bottom: 24px;
}
.sub-specs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.8;
}

.sub-image {
  background: var(--black-3);
  min-height: clamp(200px, 30vw, 320px);
  position: relative;
}
.sub-image::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gray-3);
  text-align: center;
  max-width: 280px;
  line-height: 1.8;
  padding: 20px;
}

/* ── PRICING ── */
.pricing-section {
  border-top: 1px solid var(--rule);
  background: var(--black-2);
}
.pricing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.pricing-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
}
.pricing-headline .line-gold { color: var(--gold); display: block; }
.pricing-lead {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
  color: var(--white-55);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}
.price-card {
  background: var(--black-3);
  padding: clamp(20px, 3vw, 36px) clamp(18px, 3vw, 32px);
  position: relative;
  border: 1px solid var(--rule);
  transition: border-color 0.3s;
}
.price-card:hover { border-color: rgba(192,160,96,0.2); }

.price-card-tag {
  position: absolute;
  top:0; right:0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--black);
  background: var(--gold);
}
.price-card-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.price-card-desc {
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 38px;
}
.price-range { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-range .from {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-range .amount {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.price-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.price-details { border-top: 1px solid var(--rule); padding-top: 16px; }
.price-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  gap: 12px;
}
.price-detail-row .label { color: var(--gray-1); }
.price-detail-row .value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--white);
  text-align: right;
}

.includes-strip {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.includes-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  width: 100%;
}
.includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-1);
}
.includes-item::before {
  content: '✓';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
}
.pricing-disclaimer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gray-2);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.pricing-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 16px clamp(20px, 4vw, 32px);
  text-decoration: none;
  transition: opacity 0.2s;
}
.pricing-cta-btn:hover { opacity: 0.9; }
.pricing-cta-btn::after { content: '→'; font-size: 16px; }
.pricing-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-cta-link:hover { color: var(--orange); }

/* ── PHASES ── */
.phases-header {
  background: var(--black);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px) clamp(40px, 5vw, 60px);
}
.phases-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(13px, 2vw, 18px);
  line-height: 1.5;
  color: var(--white-55);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.phases-eyebrow::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.phases-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.3;
  text-transform: uppercase;
}

.phase-card {
  display: grid;
  grid-template-columns: clamp(260px, 38%, 452px) 1fr;
  min-height: clamp(320px, 40vw, 543px);
  width: 100%;
}
.phase-text {
  background: var(--black);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 65px);
  position: relative;
  display: flex;
  flex-direction: column;
}
.phase-progress {
  position: absolute;
  left: 1.5px; top: 32px; bottom: 0;
  width: 40px;
}
.phase-progress-track {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--white-10);
}
.phase-progress-active {
  position: absolute;
  left: 0;
  width: 1px;
  height: 91px;
  background: var(--orange);
}
.phase-progress-num {
  position: absolute;
  left: 20px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--orange);
}
.phase-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 16px;
}
.phase-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1.5vw, 15px);
  line-height: 1.4;
  color: var(--white-55);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.phase-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.phase-headline .w { color: var(--white); }
.phase-headline .o { color: var(--orange); }
.phase-body {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 24px;
  color: var(--white-55);
  flex-grow: 1;
}
.phase-data {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1.5vw, 15px);
  line-height: 1.5;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 20px;
}
.phase-image {
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}
.phase-image::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--gray-3);
  text-align: center;
  max-width: 300px;
  line-height: 1.8;
  padding: 20px;
}

/* ── EQUIPMENT ── */
.equipment-section {
  border-top: 1px solid var(--rule);
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(28px, 4vw, 48px);
}
.equip-card {
  background: var(--black-3);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 32px);
}
.equip-image {
  width: 100%; height: 180px;
  background: var(--black-4);
  margin-bottom: 20px;
  position: relative;
}
.equip-image::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--gray-3);
  text-align: center;
  max-width: 200px;
  line-height: 1.8;
}
.equip-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.equip-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.equip-specs {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-55);
}

/* ── ICP ── */
.icp-section { border-top: 1px solid var(--rule); }
.icp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: clamp(28px, 4vw, 48px);
}
.icp-cards {
  background: var(--black-3);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}
.icp-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.icp-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 22px);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}
.icp-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.75;
  color: var(--white-55);
  margin-bottom: 24px;
  flex-grow: 1;
}
.icp-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.icp-link:hover { gap: 14px; }
.icp-link::after { content: '→'; }

/* ── DEBRIS ── */
.debris-section { border-top: 1px solid var(--rule); }
.debris-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
}
.debris-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}
.debris-headline span { color: var(--orange); }
.debris-body {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.75;
  color: var(--white-55);
  margin-bottom: 24px;
}
.debris-data { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.debris-cell { background: var(--black-3); padding: 18px 20px; }
.debris-cell-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.debris-cell-value { font-size: 13px; line-height: 1.6; color: var(--white-55); }
.debris-image {
  background: var(--black-3);
  min-height: clamp(200px, 30vw, 400px);
  position: relative;
}
.debris-image::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--gray-3);
  text-align: center;
  max-width: 280px;
  line-height: 1.8;
}

/* ── VIDEO ── */
.video-section { border-top: 1px solid var(--rule); }
.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black-3);
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
}
.video-embed::after {
  content: '[ VIDEO: CAT 308 + hydraulic hammer demolishing slab — aerial + ground footage ]';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray-3);
  text-align: center;
  max-width: 420px;
  line-height: 1.8;
  padding: 20px;
}
.video-embed::before {
  content: '▶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 22px;
  z-index: 1;
  padding-left: 4px;
}
.video-embed img {
  width: 100%;
}
/* ── CROSSLINKS ── */
.crosslinks-section { border-top: 1px solid var(--rule); }
.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(24px, 4vw, 40px);
}
.crosslink {
  background: var(--black-3);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.crosslink:hover { background: var(--black-4); }
.crosslink-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.crosslink-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.crosslink-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-55);
  flex-grow: 1;
  margin-bottom: 16px;
}
.crosslink-arrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CTA ── */
.cta-section {
  border-top: 1px solid var(--rule);
  text-align: center;
}
.cta-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-headline span { color: var(--orange); }
.cta-sub {
  font-weight: 300;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.7;
  color: var(--white-55);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 18px clamp(24px, 5vw, 40px);
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.9; }
.cta-btn::after { content: '→'; font-size: 16px; }
.cta-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 20px;
}

/* ════════════════════════════
   BREAKPOINTS
════════════════════════════ */

/* Tablet: collapse some nav links */
@media (max-width: 960px) {
  .nav-links .hide-tablet { display: none; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .crosslinks-grid { grid-template-columns: 1fr 1fr; }
  .sub-image img {
    height: 100%;
    object-fit: cover;
  }
  .equip-image img {
    height: 100%;
    object-fit: cover;
  }
  .debris-image img {
        height: 100%;
    object-fit: cover;
  }
  .hero {
    min-height: max-content;
    padding: 40px 40px 50px; 
  }
}

/* Tablet portrait: stack 2-col grids */
@media (max-width: 768px) {
    .hero {
    min-height: max-content;
    padding: 30px 24px 40px; 
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .what-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-intro { grid-template-columns: 1fr; gap: 20px; }
  .debris-grid { grid-template-columns: 1fr; gap: 32px; }
  .icp-grid { grid-template-columns: 1fr; }

  /* Sub-services: stack image below text */
  .sub-service { grid-template-columns: 1fr; }
  .sub-service-content { padding: 28px 0 24px; }
  .sub-image { min-height: 220px; }

  /* Phase cards: stack */
  .phase-card { grid-template-columns: 1fr; }
  .phase-text { padding: 28px 24px; }
  .phase-image { min-height: 220px; }
  .phase-progress { display: none; }


  /* Pricing: stack */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Hero data: hide on small viewports (clutters the layout) */
  .hero-data { display: none; }

  .hero-data-mobile {
    display: flex !important;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .equip-grid { grid-template-columns: 1fr; }
  .crosslinks-grid { grid-template-columns: 1fr; }
  .debris-data { grid-template-columns: 1fr; }
  .footer-links { gap: 10px; }

  .price-detail-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .price-detail-row .value { text-align: left; }

  .pricing-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ── MOBILE HERO DATA (hidden by default, shown on mobile) ── */
.hero-data-mobile {
  display: none;
}
.hero-data-mobile-item {
  display: flex;
  flex-direction: column;
}
.hero-data-mobile-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 2px;
}
.hero-data-mobile-value {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
}
.hero-data-mobile-value span { color: var(--orange); }


/* ── PAGE TOC STRIP ── */
.toc-strip {
  position: sticky; top: 73px; z-index: 998;
  background: var(--carbon);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.toc-strip::-webkit-scrollbar { display: none; }
.toc-inner {
  display: flex; align-items: stretch;
  min-width: max-content;
  padding: 0 32px;
}
.toc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray2);
  padding: 16px 20px 16px 0;
  margin-right: 16px;
  border-right: 1px solid var(--rule);
  display: flex; align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.toc-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray1);
  padding: 16px 18px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.toc-link:hover {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.toc-link .arrow {
  font-size: 8px;
  opacity: 0.5;
  transform: rotate(90deg);
  display: inline-block;
}