/* ============================================================
   SKIP HIRE — PAGE-SPECIFIC STYLES
   Only rules unique to a single page. Grouped by page below.
============================================================ */

/* ============================================================
   CONTACT — Form + Info Layout
   Background: White
============================================================ */
.contact-section {
  background: var(--white);
  padding: var(--sv) 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 2.5rem;
  position: relative;
}

/* Reuses .confirm-icon + t-h3/t-body utilities rather than
   cloning .confirm-title/.confirm-sub — this is an inline swap
   within the form panel, not a full-viewport takeover, so it
   doesn't need the selector's dedicated success typography. */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success.active { display: block; }
.form-success__title {
  font-family: var(--f-head);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.form-success__sub {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 1.75rem;
}
.form-success__reset {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.contact-info-card {
  background: var(--charcoal-2);
  padding: 2.5rem;
}
.contact-info-card__title {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-info-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.contact-info-card .map-placeholder {
  margin-top: 1.75rem;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
}
.contact-info-card .map-placeholder__inner,
.contact-info-card .map-placeholder__inner span { color: rgba(255,255,255,0.4); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .contact-form-panel, .contact-info-card { padding: 1.75rem; }
}

/* ============================================================
   AREAS COVERED — Region Grouping
   New wrapper for presenting the existing .areas-grid / .area-item
   list split into labeled region clusters, instead of one flat
   grid. Page-scoped until a second page needs grouped areas.
============================================================ */
.area-regions {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.area-region {
  display: block;
}
.area-region__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--charcoal);
}
.area-region__title {
  font-family: var(--f-head);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.area-region__count {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   WASTE TYPES — Prohibited Items Panel
   Background: Charcoal
   New component: no existing pattern fit a "restricted items"
   checklist, so this is page-scoped until a second page needs it.
============================================================ */
.prohibited-section {
  background: var(--charcoal);
  padding: var(--sv) 0;
}
.prohibited-section .section-intro__sub { color: rgba(255,255,255,0.5); }

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 2.5rem;
}
.prohibited-item {
  background: var(--charcoal-2);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.prohibited-item__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(244,67,54,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.prohibited-item__icon svg {
  width: 16px; height: 16px;
  stroke: #F44336;
  fill: none;
  stroke-width: 2;
}
.prohibited-item__name {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}
.prohibited-item__note {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}
.prohibited-callout {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(244,67,54,0.08);
  border-left: 3px solid #F44336;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.prohibited-callout svg {
  width: 20px; height: 20px;
  stroke: #F44336;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.prohibited-callout p {
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.prohibited-callout a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .prohibited-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prohibited-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   .compare-section / .compare-note have moved to components.css
   — promoted when Areas Covered became a second consumer of the
   plain white section wrapper first built for Skip Sizes.
============================================================ */

/* ============================================================
   HOME — Skip Size Preview
============================================================ */

/* ============================================================
   .sizes-section / .sizes-grid / .size-card have moved to
   components.css — promoted when Skip Sizes became a second
   consumer of the Home size-card grid.
============================================================ */

/* ============================================================
   HOME — Editorial Testimonial
============================================================ */

/* ============================================================
   SECTION 6 — EDITORIAL TESTIMONIAL
   Background: White
============================================================ */
.testi-section {
  background: var(--white);
  padding: var(--sv) 0;
  overflow: hidden;
}

.testi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 460px;
}
.testi-left {
  background: var(--charcoal);
  background-image: url('../images/pexels-wal_-172619-2156618639-37226291.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.testi-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.82);
  pointer-events: none;
}

.testi-mark {
  font-family: var(--f-head);
  font-size: 6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 0.7;
  margin-bottom: 2rem;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.testi-body {
  font-family: var(--f-head);
  font-size: clamp(1.25rem, 2.25vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--white);
  flex: 1;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.testi-author__avatar {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--charcoal);
  flex-shrink: 0;
}
.testi-author__name {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.testi-author__role {
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.testi-right {
  background: var(--off-white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testi-star {
  width: 18px; height: 18px;
}
.testi-star polygon { fill: var(--charcoal); }
.testi-rating-score {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-left: 0.5rem;
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.testi-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid-gray);
  cursor: pointer;
  transition: padding-left var(--t-fast) var(--ease);
}
.testi-item:first-child { border-top: 1px solid var(--mid-gray); }
.testi-item:hover { padding-left: 0.5rem; }
.testi-item.active { padding-left: 0; }
.testi-item__quote {
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-item.active .testi-item__quote { color: var(--charcoal); font-weight: 500; }
.testi-item__author {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.375rem;
}
.testi-item.active .testi-item__author { color: var(--charcoal); }

.testi-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testi-ctrl-btn {
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mid-gray);
  transition: background var(--t-fast) var(--ease);
}
.testi-ctrl-btn:hover { background: var(--charcoal); }
.testi-ctrl-btn:hover svg { stroke: var(--white); }
.testi-ctrl-btn svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 2;
  stroke-linecap: square;
}
.testi-progress {
  flex: 1;
  height: 2px;
  background: var(--mid-gray);
  position: relative;
}
.testi-progress__bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--charcoal);
  transition: width var(--t-slow) var(--ease);
}
.testi-count {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   HOME — responsive
============================================================ */
@media (max-width: 860px) {
  .testi-layout { grid-template-columns: 1fr; }
  .testi-right { padding: 2.5rem; }
  .testi-left { padding: 2.5rem; min-height: 360px; }
}
@media (max-width: 600px) {
  .testi-left { padding: 2rem; }
  .testi-right { padding: 2rem; }
}

/* ============================================================
   ABOUT — page-specific components (FAQ, values, timeline, etc.)
============================================================ */

/* ---- Generic content section wrappers ---- */
.overview-section { background: var(--white); padding: var(--sv) 0; }
.overview-section .section-intro__title { margin-bottom: 1.25rem; }
.overview-section__body {
  color: var(--text-secondary);
  line-height: 1.7;
}
.story-section     { background: var(--yellow); padding: var(--sv) 0; }
.mission-section    { background: var(--white); padding: var(--sv) 0; }
.services-section  { background: var(--yellow); padding: var(--sv) 0; }
.responsibility-section { background: var(--white); padding: var(--sv) 0; }
.industries-section { background: var(--white); padding: var(--sv) 0; }
.why-section {
  background: var(--charcoal);
  background-image: url('../images/pexels-wal_-172619-2156618639-37226291.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: luminosity;
  padding: var(--sv) 0;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.9);
  pointer-events: none;
}
.why-section .wrap { position: relative; z-index: 1; }
.faq-section { background: var(--off-white); padding: var(--sv) 0; }

.services-section .section-intro__label,
.story-section .section-intro__label { color: rgba(26,26,26,0.45); }

/* ---- Company Overview / At a Glance panel ---- */
.overview-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.glance-panel {
  background: var(--charcoal);
  padding: 2rem;
}
.glance-panel__title {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.glance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.glance-item:first-of-type { border-top: none; }
.glance-item__label {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.glance-item__value {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}
.glance-item__value--note {
  font-family: var(--f-body);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
}

/* ---- Our Story timeline ---- */
.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.story-timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: rgba(26,26,26,0.18);
}
.story-step { padding: 0 1.5rem 0 0; position: relative; }
.story-step:last-child { padding-right: 0; }
.story-step__marker {
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.story-step__title {
  font-family: var(--f-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.story-step__body {
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26,26,26,0.68);
}
.story-step__placeholder {
  display: inline-block;
  margin-top: 0.625rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(26,26,26,0.4);
}

/* ---- Mission & Vision ---- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mid-gray);
}
.mission-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--yellow);
}
.mission-card__label {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 0.875rem;
}
.mission-card__title {
  font-family: var(--f-head);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.mission-card__body {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---- Service / feature cards (Services + Waste Responsibility) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid-gray);
}
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: background var(--t-base) var(--ease);
}
.feature-card:hover { background: var(--off-white); }
.feature-card__icon {
  width: 40px; height: 40px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
}
.feature-card__title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card__desc {
  font-family: var(--f-body);
  font-size: 0.8438rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---- How We Work — 5-step horizontal process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  background: var(--charcoal-4);
}
.process-step { padding: 0 1.25rem 0 0; position: relative; text-align: left; }
.process-step:last-child { padding-right: 0; }
.process-step__icon {
  width: 40px; height: 40px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step__icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 1.5;
}
.process-step__title {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}
.process-step__body {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.58);
}

/* ---- Service Areas placeholder map ----
   Moved to components.css — promoted when Areas Covered became a
   second consumer of the map placeholder used on the About teaser. */

/* ---- Why Choose grid (dark) ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item__icon {
  width: 36px; height: 36px;
  background: rgba(245,200,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item__icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
}
.why-item__title {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.why-item__body {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

/* ---- FAQ accordion ---- */
.faq-list { border-top: 1px solid var(--mid-gray); }
.faq-item { border-bottom: 1px solid var(--mid-gray); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 0.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
}
.faq-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: transform var(--t-fast) var(--ease);
}
.faq-item__icon::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-item__icon::after  { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease);
}
.faq-item__panel-inner {
  padding: 0 0.25rem 1.375rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ---- About page responsive ---- */
@media (max-width: 1024px) {
  .overview-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .story-timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .story-timeline::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .feature-grid, .feature-grid--4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .story-timeline { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .mission-card { padding: 1.75rem; }
}

/* ============================================================
   SKIP SELECTOR — page background override
============================================================ */
body.page-selector { background: var(--off-white); }

/* ============================================================
   SKIP SELECTOR — progress stepper
============================================================ */

/* ============================================================
   PROGRESS STEPPER
============================================================ */
.stepper {
  background: var(--charcoal-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stepper__inner {
  display: flex;
  align-items: stretch;
}
.stepper__step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem var(--pad);
  position: relative;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stepper__step:last-child { border-right: none; }
.stepper__step.available:hover { background: rgba(255,255,255,0.03); }
.stepper__step.active { background: rgba(245,200,0,0.06); }
.stepper__step.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
}
.stepper__num {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.stepper__step.pending .stepper__num {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.25);
}
.stepper__step.active .stepper__num {
  background: var(--yellow);
  color: var(--charcoal);
}
.stepper__step.complete .stepper__num {
  background: rgba(245,200,0,0.15);
  color: var(--yellow);
}
.stepper__step.complete .stepper__num::after { content: '✓'; }
.stepper__step.complete .stepper__num-inner { display: none; }
.stepper__info {}
.stepper__label {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}
.stepper__step.pending .stepper__label  { color: rgba(255,255,255,0.2); }
.stepper__step.active  .stepper__label  { color: var(--yellow); }
.stepper__step.complete .stepper__label { color: rgba(255,255,255,0.45); }
.stepper__value {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
  margin-top: 0.125rem;
  transition: color var(--t-base);
}
.stepper__step.pending .stepper__value  { color: rgba(255,255,255,0.15); }
.stepper__step.active  .stepper__value  { color: rgba(255,255,255,0.5); }
.stepper__step.complete .stepper__value { color: rgba(255,255,255,0.6); }

/* ============================================================
   SELECTOR LAYOUT
============================================================ */
.selector-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2px;
  background: var(--mid-gray);
  min-height: calc(100vh - var(--nav-h) - 64px - 61px);
  align-items: start;
}

/* ============================================================
   MAIN PANEL (left)
============================================================ */
.selector-main {
  background: var(--white);
}

/* Step panels */
.step-panel {
  display: none;
  padding: 2.5rem var(--pad);
}
.step-panel.active { display: block; }

.step-panel__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
}
.step-panel__step-label {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 0.5rem;
}
.step-panel__title {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-panel__sub {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-panel__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mid-gray);
}
.step-panel__back {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0;
  transition: color var(--t-fast);
  cursor: pointer;
}
.step-panel__back:hover { color: var(--charcoal); }
.step-panel__back svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--t-fast); }
.step-panel__back:hover svg { transform: translateX(-3px); }
.step-panel__spacer { flex: 1; }

/* ============================================================
   STEP 1 — WASTE TYPE CARDS
============================================================ */
.waste-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid-gray);
}
.waste-select-card {
  background: var(--white);
  padding: 1.5rem 1.25rem 1.75rem;
  cursor: pointer;
  position: relative;
  transition: background var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0;
  outline: none;
}
.waste-select-card:hover { background: var(--off-white); }
.waste-select-card.selected { background: var(--charcoal); }
.waste-select-card:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }

.waste-select-card__stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transition: height var(--t-fast) var(--ease);
}
.waste-select-card.selected .waste-select-card__stripe { height: 4px; }

.waste-select-card__check {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 22px; height: 22px;
  background: rgba(245,200,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.waste-select-card__check svg { width: 12px; height: 12px; fill: none; stroke: var(--yellow); stroke-width: 2.5; stroke-linecap: square; }
.waste-select-card.selected .waste-select-card__check { opacity: 1; }

.waste-select-card__icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.waste-select-card__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--t-base) var(--ease);
}
.waste-select-card:not(.selected) .waste-select-card__icon svg { stroke: var(--charcoal); }
.waste-select-card.selected .waste-select-card__icon svg { stroke: var(--yellow); }

.waste-select-card__cat {
  font-family: var(--f-head);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
  transition: color var(--t-base) var(--ease);
}
.waste-select-card:not(.selected) .waste-select-card__cat { color: var(--text-muted); }
.waste-select-card.selected .waste-select-card__cat { color: rgba(245,200,0,0.6); }

.waste-select-card__name {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  transition: color var(--t-base) var(--ease);
}
.waste-select-card:not(.selected) .waste-select-card__name { color: var(--charcoal); }
.waste-select-card.selected .waste-select-card__name { color: var(--white); }

.waste-select-card__desc {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  flex: 1;
  transition: color var(--t-base) var(--ease);
}
.waste-select-card:not(.selected) .waste-select-card__desc { color: var(--text-secondary); }
.waste-select-card.selected .waste-select-card__desc { color: rgba(255,255,255,0.45); }

.waste-select-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--f-head);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  margin-top: 1rem;
  align-self: flex-start;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.waste-select-card:not(.selected) .waste-select-card__tag {
  background: var(--off-white);
  color: var(--text-muted);
}
.waste-select-card.selected .waste-select-card__tag {
  background: rgba(245,200,0,0.12);
  color: var(--yellow);
}

/* ============================================================
   STEP 2 — SIZE RECOMMENDATION
============================================================ */
.size-recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--mid-gray);
}
.size-rec-card {
  background: var(--white);
  padding: 1.75rem 1.5rem 2rem;
  cursor: pointer;
  position: relative;
  transition: background var(--t-base) var(--ease);
  outline: none;
}
.size-rec-card:hover { background: var(--off-white); }
.size-rec-card.selected { background: var(--charcoal); }
.size-rec-card:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }

.size-rec-card__check {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 22px; height: 22px;
  background: rgba(245,200,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.size-rec-card__check svg { width: 12px; height: 12px; fill: none; stroke: var(--yellow); stroke-width: 2.5; stroke-linecap: square; }
.size-rec-card.selected .size-rec-card__check { opacity: 1; }

.size-rec-card__badge {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__badge { background: var(--yellow); color: var(--charcoal); }
.size-rec-card.selected .size-rec-card__badge { background: rgba(245,200,0,0.15); color: var(--yellow); }

.size-rec-card__size {
  font-family: var(--f-head);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__size { color: var(--charcoal); }
.size-rec-card.selected .size-rec-card__size { color: var(--yellow); }

.size-rec-card__unit {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__unit { color: var(--text-muted); }
.size-rec-card.selected .size-rec-card__unit { color: rgba(255,255,255,0.3); }

.size-rec-card__name {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__name { color: var(--charcoal); }
.size-rec-card.selected .size-rec-card__name { color: var(--white); }

.size-rec-card__use {
  font-family: var(--f-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__use { color: var(--text-secondary); }
.size-rec-card.selected .size-rec-card__use { color: rgba(255,255,255,0.45); }

.size-rec-card__comparisons {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 1rem;
  border-top: 1px solid;
  transition: border-color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__comparisons { border-color: var(--mid-gray); }
.size-rec-card.selected .size-rec-card__comparisons { border-color: rgba(255,255,255,0.08); }

.size-rec-card__comp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__comp { color: var(--text-secondary); }
.size-rec-card.selected .size-rec-card__comp { color: rgba(255,255,255,0.45); }
.size-rec-card__comp svg { width: 16px; height: 16px; fill: none; stroke-width: 1.5; flex-shrink: 0; transition: stroke var(--t-base) var(--ease); }
.size-rec-card:not(.selected) .size-rec-card__comp svg { stroke: var(--text-muted); }
.size-rec-card.selected .size-rec-card__comp svg { stroke: var(--yellow); }

.size-rec-card__price {
  margin-top: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.size-rec-card__price-from {
  font-family: var(--f-head);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__price-from { color: var(--text-muted); }
.size-rec-card.selected .size-rec-card__price-from { color: rgba(255,255,255,0.3); }
.size-rec-card__price-val {
  font-family: var(--f-head);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color var(--t-base) var(--ease);
}
.size-rec-card:not(.selected) .size-rec-card__price-val { color: var(--charcoal); }
.size-rec-card.selected .size-rec-card__price-val { color: var(--yellow); }

/* ============================================================
   STEP 3 — SCALE VISUALISER
   Shared wrapper (.scale-vis, __texture, __stage, __item, __figure,
   __caption) now lives in components.css — promoted when Skip Sizes
   became a second consumer of the same dark-panel visualisation
   pattern. Dim-bar / size-label / facts below stay page-scoped:
   they're specific to the selector's dynamic, single-skip readout.
============================================================ */
.scale-vis__dim-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.scale-vis__dim {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.scale-vis__dim-label {
  font-family: var(--f-head);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.scale-vis__dim-val {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}
.scale-vis__dim-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.scale-vis__size-label {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.03em;
  margin-left: auto;
}

/* Scale fact pills */
.scale-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid-gray);
  margin-bottom: 2rem;
}
.scale-fact {
  background: var(--white);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.scale-fact__icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.scale-fact__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--charcoal); stroke-width: 1.5; }
.scale-fact__val {
  font-family: var(--f-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.scale-fact__label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================================
   .form-grid / .form-group / .form-label / .form-input /
   .form-select / .form-textarea / .form-hint have moved to
   components.css — promoted when Contact became a second
   consumer. .form-section-label stays here: still selector-only
   (multi-section booking form; Contact's form is single-section).
============================================================ */
.form-section-label {
  font-family: var(--f-head);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.5rem 0 0.875rem;
  border-top: 1px solid var(--mid-gray);
  margin-top: 0.25rem;
  display: block;
}
.form-section-label:first-child { border-top: none; padding-top: 0; }

/* Delivery type toggle */
.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mid-gray);
}
.delivery-opt {
  background: var(--white);
  padding: 0.875rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background var(--t-fast) var(--ease);
}
.delivery-opt:hover { background: var(--off-white); }
.delivery-opt.selected { background: var(--charcoal); }
.delivery-opt__dot {
  width: 14px; height: 14px;
  border: 2px solid var(--mid-gray);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.delivery-opt.selected .delivery-opt__dot {
  border-color: var(--yellow);
  background: var(--yellow);
}
.delivery-opt__label {
  font-family: var(--f-head);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: color var(--t-fast);
}
.delivery-opt:not(.selected) .delivery-opt__label { color: var(--charcoal); }
.delivery-opt.selected .delivery-opt__label { color: var(--white); }
.delivery-opt__sub {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  transition: color var(--t-fast);
}
.delivery-opt:not(.selected) .delivery-opt__sub { color: var(--text-muted); }
.delivery-opt.selected .delivery-opt__sub { color: rgba(255,255,255,0.4); }

/* ============================================================
   SUMMARY PANEL (right)
============================================================ */
.selector-summary {
  background: var(--charcoal);
  position: sticky;
  top: calc(var(--nav-h) + 61px);
  align-self: start;
}
.summary__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary__title {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.summary__status {
  font-family: var(--f-head);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
}
.summary__status.incomplete { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.25); }
.summary__status.in-progress { background: rgba(245,200,0,0.1); color: var(--yellow); }
.summary__status.complete { background: rgba(245,200,0,0.15); color: var(--yellow); }

/* Skip visualiser in summary */
.summary__vis {
  padding: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
  background: var(--charcoal-2);
}
.summary__vis-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.summary__vis-placeholder svg { width: 48px; height: 48px; fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 1.5; }
.summary__vis-placeholder span {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.summary__vis-skip { display: none; }
.summary__vis-skip.show { display: block; }

/* Summary rows */
.summary__rows {
  padding: 0 1.75rem;
}
.summary__row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.summary__row:last-child { border-bottom: none; }
.summary__row-label {
  font-family: var(--f-head);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.summary__row-value {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.01em;
  transition: color var(--t-base) var(--ease);
}
.summary__row-value.set { color: var(--white); }
.summary__row-sub {
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--t-base) var(--ease);
}
.summary__row-sub.set { color: rgba(255,255,255,0.45); }

/* Price section */
.summary__price {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.summary__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.summary__price-label {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.summary__price-val {
  font-family: var(--f-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-base) var(--ease);
}
.summary__price-val.set { color: var(--white); }
.summary__price-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.summary__price-total-label {
  font-family: var(--f-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.summary__price-total-val {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.15);
  transition: color var(--t-base) var(--ease);
}
.summary__price-total-val.set { color: var(--yellow); }

/* Summary CTA */
.summary__cta {
  padding: 1.25rem 1.75rem 1.75rem;
}
.summary__note {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 0.875rem;
  line-height: 1.55;
}

/* ============================================================
   CONFIRMATION SCREEN
============================================================ */
.confirm-screen {
  display: none;
  background: var(--charcoal);
  min-height: calc(100vh - var(--nav-h) - 64px - 61px);
}
.confirm-screen.active { display: block; }
.confirm-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem var(--pad);
  text-align: center;
}
/* .confirm-icon and .confirm-summary* have moved to components.css
   — promoted when Contact became a second consumer (success state
   icon + key/value row list in the info card). */
.confirm-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.confirm-sub {
  font-family: var(--f-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   SKIP SELECTOR — responsive
============================================================ */

@media (max-width: 1000px) {
  .selector-layout { grid-template-columns: 1fr; }
  .selector-summary {
    position: static;
    border-top: 2px solid var(--mid-gray);
  }
  .summary__vis { min-height: 120px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__tel   { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .waste-select-grid { grid-template-columns: repeat(2, 1fr); }
  .stepper__step .stepper__info { display: none; }
}
@media (max-width: 600px) {
  .waste-select-grid { grid-template-columns: 1fr; }
  .size-recommend-grid { grid-template-columns: 1fr; }
  .scale-facts { grid-template-columns: 1fr 1fr; }
  .stepper__step { padding: 0.875rem 0.875rem; }
  .delivery-toggle { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
