/* ==========================================================================
   Baseline Platforms — shared stylesheet
   Spider lift hire, Leicestershire & the East Midlands
   Design tokens + components. Used by every page.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Brand reds */
  --red:        #d42020;   /* primary */
  --red-hover:  #e8302c;   /* primary hover */
  --red-dark:   #a81818;   /* eyebrow / deep accent */
  --red-light:  #e8534f;   /* accent on dark bg */
  --red-bright: #ff4b46;   /* brightest highlight */

  /* Neutrals */
  --ink:        #14161a;   /* body text */
  --ink-soft:   #4b5058;   /* secondary text */
  --ink-mute:   #6b7077;   /* tertiary text */
  --black:      #0a0a0a;   /* dark sections */
  --black-deep: #060606;   /* footer / utility bar */
  --panel:      #101216;   /* stat strip */
  --cloud:      #f4f3f1;   /* light section bg */
  --cloud-2:    #fbfbfa;   /* card bg on light */
  --line:       rgba(10,10,10,0.08);

  /* Type */
  --display: 'Barlow Condensed', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 32px);
  --section-y: clamp(70px, 8vw, 100px);
  --radius: 10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
::selection { background: var(--red); color: #fff; }

/* ---- Layout helpers ---- */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section-y) 0; }
.section--light { background: var(--cloud); }
.section--white { background: #fff; }
.section--dark {
  background-color: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* subtle grid texture for dark sections */
.section--grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
}
.section--glow-bl { background-image:
    radial-gradient(circle at 12% 110%, rgba(212,32,32,0.16), transparent 42%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px; }
.section--glow-tr { background-image:
    radial-gradient(circle at 90% 0%, rgba(212,32,32,0.14), transparent 46%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px; }

/* ---- Eyebrow / section label ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.eyebrow--light { color: var(--red-light); }

/* ---- Headings ---- */
.h-display {
  font-family: var(--display);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.96; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}
.h-section { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lede { color: var(--ink-soft); font-size: 1.06rem; }
.section--dark .lede { color: rgba(255,255,255,0.74); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  border-radius: 4px; padding: 14px 26px; border: none; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px -10px rgba(212,32,32,0.9); }
.btn--primary:hover { background: var(--red-hover); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.14); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--white { background: #fff; color: var(--red-dark); box-shadow: 0 16px 34px -16px rgba(0,0,0,0.5); }
.btn--white:hover { transform: translateY(-2px); }

/* ==========================================================================
   Utility bar
   ========================================================================== */
.utilitybar {
  background: var(--black-deep);
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utilitybar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px;
}
.utilitybar__status { display: inline-flex; align-items: center; gap: 8px; }
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: #3ec46d; box-shadow: 0 0 0 3px rgba(62,196,109,0.18); }
.utilitybar__badges { display: inline-flex; align-items: center; gap: 18px; }
.utilitybar__badges span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.8); }
.utilitybar__badges .tick { color: var(--red-light); }
@media (max-width: 720px) { .utilitybar__badges { display: none; } }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px -22px rgba(0,0,0,0.9);
}
.nav__accent { height: 3px; background: linear-gradient(90deg, var(--red), var(--red-hover) 55%, var(--red-dark)); }
.nav__bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: clamp(38px, 5.4vw, 60px); width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 0.96rem; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.7);
  border-bottom: 2px solid transparent; padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: #fff; border-bottom-color: var(--red); }
.nav__phone { display: flex; align-items: center; gap: 8px; color: #fff; }
.nav__phone:hover { opacity: 0.82; }
.nav__phone .ph-ico { color: var(--red-light); font-size: 1.02rem; }
.nav__phone .ph-num { font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: 0.02em; }

.nav__mobile { display: none; align-items: center; gap: 8px; }
.nav__mobile-call {
  display: flex; align-items: center; gap: 6px; color: #fff; padding: 9px 4px;
  font-family: var(--display); font-weight: 700; font-size: 1rem; white-space: nowrap;
}
.nav__mobile-call .ph-ico { color: var(--red-light); }
.nav__toggle {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 4px;
  width: 46px; height: 46px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; cursor: pointer; flex-shrink: 0;
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu { display: none; background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); padding: 8px var(--pad) 22px; flex-direction: column; }
.nav.is-open .nav__menu { display: flex; }
.nav__menu a { padding: 14px 0; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav__menu a.is-active { color: #fff; }
.nav__menu .nav__menu-cta { margin-top: 16px; background: var(--red); color: #fff; padding: 15px; border-radius: 4px; font-weight: 600; text-align: center; border-bottom: none; }

@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__mobile { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; background: var(--black); color: #fff; overflow: hidden;
  min-height: clamp(540px, 80vh, 840px); display: flex; align-items: center;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim-x { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,8,8,0.86) 0%, rgba(8,8,8,0.66) 42%, rgba(8,8,8,0.32) 72%, rgba(8,8,8,0.5) 100%); }
.hero__scrim-y { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,8,0.5), transparent 26%, transparent 62%, rgba(8,8,8,0.7)); }
.hero__inner { position: relative; z-index: 2; max-width: var(--wrap); width: 100%; margin: 0 auto; padding: clamp(48px,6vw,72px) var(--pad); }
.hero__content { max-width: 620px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  margin-bottom: 22px; padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255,255,255,0.28); border-radius: 100px; background: rgba(212,32,32,0.22);
}
.hero__badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red-hover); box-shadow: 0 0 0 4px rgba(232,48,44,0.3); flex-shrink: 0; }
.hero__title {
  display: block; font-family: var(--display); font-weight: 800; text-transform: uppercase;
  line-height: 0.9; letter-spacing: -0.015em; font-size: clamp(2.75rem, 8.6vw, 6.6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5); margin-bottom: 0;
}
.hero__title .accent { color: var(--red-bright); }
.hero h1 { margin-bottom: 26px; }
.hero__lede { font-size: 1.16rem; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 500px; margin-bottom: 32px; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero__assurances { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.hero__assurances span { display: inline-flex; align-items: center; gap: 9px; }
.hero__assurances .tick { color: var(--red-bright); font-size: 1.05rem; }
.hero__assurances .divider { width: 1px; height: 16px; background: rgba(255,255,255,0.24); }
.hero__cue { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 1.1rem; animation: bp-scrollcue 1.8s ease-in-out infinite; z-index: 2; }
@keyframes bp-scrollcue { 0%,100% { transform: translate(-50%,0); opacity: .5; } 50% { transform: translate(-50%,6px); opacity: 1; } }

/* ==========================================================================
   Stat strip
   ========================================================================== */
.statstrip { background-color: var(--panel);
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px; border-top: 1px solid rgba(255,255,255,0.06); }
.statstrip .container { padding-top: 34px; padding-bottom: 34px; }
.statgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px 28px; align-items: end; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,4vw,3.1rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat__num .unit { color: var(--red-light); font-size: 1.5rem; }
.stat__label { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-top: 7px; letter-spacing: 0.03em; }
.stat--machine { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.stat--machine .name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: #fff; letter-spacing: 0.02em; }
.stat--machine .kind { font-size: 0.82rem; color: var(--red-light); margin-top: 5px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ==========================================================================
   Two-column generic
   ========================================================================== */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,360px), 1fr)); gap: clamp(40px,6vw,72px); align-items: center; }
.split--top { align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-row { display: flex; align-items: flex-start; gap: 14px; }
.feature-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 8px; background: rgba(212,32,32,0.14); border: 1px solid rgba(212,32,32,0.3); display: flex; align-items: center; justify-content: center; color: var(--red-light); }
.feature-row h3 { font-weight: 600; font-size: 1.02rem; margin-bottom: 2px; }
.feature-row p { font-size: 0.96rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ==========================================================================
   Reach diagram
   ========================================================================== */
.reach-card {
  position: relative; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px -36px rgba(0,0,0,0.8); background-color: #0c0e12;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px, 30px 30px; padding: 24px clamp(20px,3vw,30px) 22px; overflow: hidden;
}
.reach-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.reach-card__head .k { font-family: var(--display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.reach-card__head .v { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--red-bright); font-variant-numeric: tabular-nums; }
.reach-stage { position: relative; height: clamp(360px,48vh,420px); margin-top: 24px; display: flex; align-items: flex-end; gap: clamp(18px,4vw,40px); padding-left: 46px; }
.reach-axis { position: absolute; left: 0; top: 0; bottom: 0; width: 46px; }
.reach-axis .spine { position: absolute; left: 30px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.18); }
.reach-axis .tick { position: absolute; left: 24px; width: 6px; height: 1px; background: rgba(255,255,255,0.25); }
.reach-axis .tick--top { background: rgba(255,255,255,0.35); }
.reach-axis .lab { position: absolute; left: 2px; transform: translateY(50%); font-size: 0.7rem; color: rgba(255,255,255,0.4); font-variant-numeric: tabular-nums; }
.reach-axis .lab--top { left: -2px; color: #ff7a76; font-weight: 700; }
.reach-axis .lab--zero { left: 6px; bottom: -2px; transform: none; }
.reach-ground { position: absolute; left: 46px; right: 0; bottom: 0; height: 1px; background: rgba(255,255,255,0.22); }
.building { position: relative; align-self: flex-end; width: clamp(96px,26%,140px); height: 88.2%; border: 1px solid rgba(255,255,255,0.2); border-bottom: none; border-radius: 3px 3px 0 0; background: rgba(120,134,160,0.12); display: flex; flex-direction: column; }
.building .floor { flex: 1; border-bottom: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; gap: 8px; }
.building .floor:last-of-type { border-bottom: none; }
.building .win { width: 10px; height: 12px; border-radius: 1px; background: rgba(255,255,255,0.14); }
.building .win--lit { background: rgba(255,221,150,0.5); }
.building .tag { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); font-size: 0.64rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; }
.lift { position: relative; align-self: stretch; width: clamp(54px,16%,76px); }
.lift__fill { position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 6px; height: 0; background: linear-gradient(180deg, var(--red-bright), #b51c1c); border-radius: 4px; box-shadow: 0 0 18px rgba(255,75,70,0.5); transition: height 1.7s cubic-bezier(.22,.65,.25,1); }
.lift__basket { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 34px; height: 18px; border: 2px solid var(--red-bright); border-top: none; border-radius: 0 0 4px 4px; background: rgba(255,75,70,0.2); box-shadow: 0 0 14px rgba(255,75,70,0.5); }
.lift__base { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 7px; background: var(--red-bright); border-radius: 2px; }
.lift__label { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-weight: 800; font-size: 0.92rem; color: #fff; white-space: nowrap; }
.reach-note { margin-top: 22px; font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.reach-note strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   Audience cards (Who we serve)
   ========================================================================== */
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr)); gap: 20px; margin-top: 44px; }
.audience {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #0e0e0e;
  box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 22px 44px -26px rgba(10,10,10,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.audience:hover { transform: translateY(-6px); box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 34px 60px -28px rgba(10,10,10,0.55); }
.audience::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); z-index: 2; }
.audience__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.audience__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.audience__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0) 38%, rgba(8,8,8,0.55) 72%, rgba(8,8,8,0.9) 100%); }
.audience__title { position: absolute; left: 20px; right: 20px; bottom: 16px; z-index: 1; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.34rem; text-transform: uppercase; letter-spacing: 0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.audience__body { margin: 0; padding: 20px 22px 24px; font-size: 1rem; color: #cfd1d4; line-height: 1.6; background: #111213; }

/* ==========================================================================
   Services
   ========================================================================== */
.feature-service { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px), 1fr)); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(10,10,10,0.1); margin-bottom: 18px; box-shadow: 0 26px 50px -30px rgba(10,10,10,0.4); }
.feature-service__text { background-color: var(--black); background-image: radial-gradient(circle at 80% 0%, rgba(212,32,32,0.25), transparent 55%); color: #fff; padding: clamp(30px,4vw,44px); display: flex; flex-direction: column; justify-content: center; }
.pill { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; background: rgba(212,32,32,0.16); border: 1px solid rgba(212,32,32,0.4); color: var(--red-light); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.feature-service__text h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem,3vw,2.3rem); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1; margin-bottom: 14px; }
.feature-service__text p { font-size: 1.04rem; color: rgba(255,255,255,0.74); line-height: 1.62; max-width: 440px; }
.feature-service__media { position: relative; min-height: 340px; background: #111; }
.feature-service__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.servicegrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,270px), 1fr)); gap: 18px; }
.service { background: var(--cloud-2); border: 1px solid var(--line); border-radius: 8px; padding: 26px; transition: transform .25s ease, border-color .25s ease; }
.service:hover { transform: translateY(-4px); border-color: rgba(212,32,32,0.35); }
.service__ico { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 9px; background: #fff; border: 1px solid rgba(212,32,32,0.16); color: var(--red); margin-bottom: 16px; box-shadow: 0 6px 14px -8px rgba(212,32,32,0.4); }
.service h3 { font-family: var(--display); font-weight: 700; font-size: 1.22rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.service p { font-size: 1rem; color: var(--ink-soft); line-height: 1.58; }
.service-note { margin-top: 22px; font-size: 0.98rem; color: var(--ink-mute); display: flex; align-items: center; gap: 10px; }
.service-note .plus { color: var(--red); font-weight: 700; }

/* ==========================================================================
   Steps (how it works)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 30px; }
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.step__num { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: #fff; box-shadow: 0 0 0 6px rgba(212,32,32,0.12); }
.step__line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(212,32,32,0.5), rgba(10,10,10,0.08)); }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.step p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   Why operator-supplied
   ========================================================================== */
.benefit-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.benefit-row:last-child { border-bottom: none; }
.benefit-tick { flex-shrink: 0; width: 34px; height: 34px; background: #fbeaea; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red-dark); }
.benefit-row h3 { font-weight: 600; font-size: 1.06rem; margin-bottom: 4px; }
.benefit-row p { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }
.quote-card { background-color: var(--black); background-image: radial-gradient(circle at 100% 0%, rgba(212,32,32,0.22), transparent 55%); color: #fff; border-radius: var(--radius); padding: clamp(32px,4vw,46px); position: sticky; top: 96px; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.quote-card .mark { display: block; font-family: var(--display); font-size: 3.4rem; line-height: 0.6; color: var(--red); height: 30px; }
.quote-card .pull { font-family: var(--display); font-size: clamp(1.5rem,2.4vw,1.95rem); font-weight: 700; line-height: 1.16; margin-bottom: 24px; color: #fff; }
.quote-card .pull .accent { color: var(--red-light); }
.quote-card p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 14px; }
.quote-card .stats { display: flex; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 10px; }
.quote-card .stats .n { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: #fff; }
.quote-card .stats .l { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Machine spec
   ========================================================================== */
.machine-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(10,10,10,0.1); box-shadow: 0 26px 50px -34px rgba(10,10,10,0.5); margin-bottom: 18px; }
.machine-photo img { width: 100%; height: auto; display: block; }
.spec { background: #fff; border: 1px solid rgba(10,10,10,0.1); border-radius: var(--radius); overflow: hidden; box-shadow: 0 26px 50px -34px rgba(10,10,10,0.5); }
.spec__head { background-color: var(--black); background-image: radial-gradient(circle at 100% 0%, rgba(212,32,32,0.3), transparent 60%); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.spec__head .t { font-family: var(--display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; }
.spec__head .k { font-size: 0.84rem; color: var(--red-light); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.spec__head .ico { color: var(--red); }
.spec__row { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid rgba(10,10,10,0.07); font-size: 1rem; }
.spec__row .label { color: #5b6068; }
.spec__row .value { font-weight: 600; font-variant-numeric: tabular-nums; }
.spec__foot { padding: 14px 24px; background: #fdf2f2; border-top: 1px solid #f5c6c6; font-size: 0.95rem; color: #8f1414; }

/* ==========================================================================
   Coverage
   ========================================================================== */
.coverage { background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px,3.5vw,40px); }
.coverage__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr)); gap: 32px; align-items: center; }
.coverage h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em; font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom: 12px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; }
.area { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 12px 16px; font-size: 1rem; font-weight: 500; display: flex; align-items: center; gap: 9px; }
.area .pin { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ==========================================================================
   Gallery (recent work)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: 0 22px 44px -28px rgba(0,0,0,0.7); margin: 0; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,0.85)); padding: 44px 18px 16px; font-family: var(--display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.shot--tall { grid-column: span 4; aspect-ratio: 3/4; }
.shot--wide { grid-column: span 8; aspect-ratio: 16/10; }
.shot--half { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .shot--tall, .shot--wide, .shot--half { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(255,255,255,0.02); transition: border-color .2s ease, background .2s ease; }
.contact-method:hover { border-color: rgba(212,32,32,0.5); background: rgba(212,32,32,0.06); }
.contact-method .ico { width: 46px; height: 46px; border-radius: 8px; background: rgba(212,32,32,0.18); border: 1px solid rgba(212,32,32,0.45); display: flex; align-items: center; justify-content: center; color: var(--red-light); font-weight: 700; flex-shrink: 0; }
.contact-method .k { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-method .v { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em; }
.contact-method .v--email { font-family: var(--body); font-weight: 600; font-size: 1.02rem; }

.form-card { background: #fff; border-radius: var(--radius); border-top: 3px solid var(--red); padding: clamp(26px,3vw,36px); color: var(--ink); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form__note { font-size: 0.92rem; color: #5b6068; margin-bottom: 2px; }
.form__req { color: var(--red-dark); font-weight: 700; }
.form__rowtwo { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { border: 1px solid #c8ccd2; border-radius: 5px; padding: 12px 13px; font-size: 1rem; color: var(--ink); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field textarea { resize: vertical; font-family: inherit; }
.field select { background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(212,32,32,0.16); outline: none; }
.form button[type=submit] { background: var(--red); color: #fff; border: none; border-radius: 5px; padding: 16px; font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em; cursor: pointer; margin-top: 4px; box-shadow: 0 14px 30px -12px rgba(212,32,32,0.7); transition: background .2s ease; }
.form button[type=submit]:hover { background: var(--red-hover); }
.form__fine { font-size: 0.85rem; color: #6b7280; text-align: center; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check { width: 58px; height: 58px; border-radius: 50%; background: #1f8a4c; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 16px; }
.form-success h3 { font-family: var(--display); font-weight: 800; font-size: 1.7rem; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.is-hidden { display: none !important; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.ctaband { background: linear-gradient(120deg, var(--red-dark), var(--red) 60%, var(--red-dark)); padding: clamp(50px,6vw,72px) 0; }
.ctaband .container { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.ctaband h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em; color: #fff; font-size: clamp(1.8rem,3vw,2.7rem); max-width: 560px; }
.ctaband__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; align-items: stretch; }
.ctaband__call { text-align: center; color: #fff; font-size: 0.95rem; }
.ctaband__call:hover { opacity: 0.85; }
.ctaband__call strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin-top: 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--black-deep); padding: 48px 0 36px; }
.footer__grid { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,240px),1fr)); gap: 32px; align-items: start; }
.footer__logo { height: 54px; width: auto; margin-bottom: 16px; }
.footer__about { font-size: 0.98rem; color: rgba(255,255,255,0.55); line-height: 1.55; max-width: 290px; }
.footer__col h4 { font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 1rem; color: rgba(255,255,255,0.68); transition: color .2s ease; }
.footer__links a:hover { color: #fff; }
.footer__base { max-width: var(--wrap); margin: 30px auto 0; padding: 18px var(--pad) 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__base p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: rgba(10,10,10,0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.1); padding: 10px 14px; display: none; gap: 10px; box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.7); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: 6px; font-weight: 600; font-size: 1rem; }
.sticky-cta__call { flex: 1; border: 1.5px solid rgba(255,255,255,0.25); color: #fff; }
.sticky-cta__call .ph-ico { color: var(--red-light); }
.sticky-cta__quote { flex: 2; background: var(--red); color: #fff; }
.sticky-spacer { display: none; height: 72px; }
@media (max-width: 899px) {
  .sticky-cta { display: flex; }
  .sticky-spacer { display: block; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__cue { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.pagehero { background-color: var(--black); color: #fff; position: relative; overflow: hidden; padding: clamp(54px,7vw,84px) 0 clamp(40px,5vw,60px);
  background-image: radial-gradient(circle at 88% 0%, rgba(212,32,32,0.2), transparent 50%), linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px; }
.pagehero__crumbs { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.pagehero__crumbs a:hover { color: #fff; }
.pagehero h1 { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: 0.94; letter-spacing: -0.015em; font-size: clamp(2.4rem,6vw,4rem); margin-bottom: 16px; }
.pagehero p { font-size: 1.12rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.6; }
