/* ============================================================================
   process.css  —  All Island Restoration redesign
   "How It Works / Our 4-Step Process" — heading block + connected step circles
   Load order: depends on foundation + dark-theme; sits on body.redesign.

   Token note: if foundation.css defines these, swap them in:
     #3d9be0                          -> accent / --air-blue  (numbers + accent)
     #8b95a3                          -> muted body / --air-text-muted
     #0d1117                          -> page bg / --air-bg   (circle fill)
     rgba(255,255,255,0.12)           -> connector line
   ============================================================================ */

body.redesign .air-process {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

/* ---- Heading block (centered) --------------------------------------------- */
body.redesign .air-process__eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3d9be0;
  text-align: center;
  margin: 0 0 0.6rem;
}

body.redesign .air-process__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
body.redesign .air-process__title-accent {
  color: #3d9be0;
}

/* ---- Steps row ------------------------------------------------------------- */
body.redesign .air-process__steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: flex-start;
}

body.redesign .air-process__step {
  flex: 1;
  position: relative;
  text-align: center;
}

/* connector line from this circle's center to the next */
body.redesign .air-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;                 /* vertical center of the 70px circle */
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

body.redesign .air-process__circle {
  position: relative;
  z-index: 1;                /* sits above the connector line */
  width: 70px;
  height: 70px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  border: 2px solid rgba(61, 155, 224, 0.35);
  background: #0d1117;       /* opaque fill hides the line behind the circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: #3d9be0;            /* blue numbers, matching "Difference" */
}

body.redesign .air-process__step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.7rem;
}

body.redesign .air-process__step-text {
  max-width: 240px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8b95a3;
}

/* ---- Responsive: stack vertically, drop the horizontal connectors --------- */
@media (max-width: 768px) {
  body.redesign .air-process__steps {
    flex-direction: column;
    gap: 2.8rem;
  }
  body.redesign .air-process__step:not(:last-child)::after {
    display: none;
  }
  body.redesign .air-process__step-text {
    max-width: 320px;
  }
}
