/* ============================================================
   Port 2 City Pressure Cleaning - "Sleek Blue-Collar Modern"
   Palette: wet-bitumen navy + hi-vis amber + high-pressure cyan + concrete
   Type:    Archivo (display) · Hanken Grotesk (body) · Spline Sans Mono (specs)
   ============================================================ */
:root {
  --ink: #0c1a24;
  --ink-2: #122b39;
  --ink-3: #1b3a4a;
  --jet: #2da6de;
  --jet-deep: #1c81b1;
  --hivis: #2da6de;
  --hivis-deep: #1c81b1;
  --concrete: #eef1f2;
  --concrete-2: #e2e7e9;
  --steel: #5c7180;
  --line: rgba(12, 26, 36, 0.12);
  --white: #ffffff;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 50px -22px rgba(12, 26, 36, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(12, 26, 36, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jet-deep);
  margin: 0 0 14px;
  font-weight: 700;
}
.eyebrow--light { color: var(--jet); }

.section { padding: clamp(64px, 8vw, 110px) 0; }
.section--light { background: var(--white); }
.section--concrete { background: var(--concrete); }
.section--dark { background: var(--ink); color: #d7e2e8; }

.section__head { max-width: 720px; margin: 0 0 48px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section__title--light { color: var(--white); }
.section__lede { font-size: 1.1rem; color: var(--steel); margin: 0; }
.section--dark .section__lede--light { color: #9fb4be; }
.hl { color: var(--jet); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--hivis { background: var(--hivis); color: var(--white); box-shadow: 0 10px 24px -10px rgba(45, 166, 222, 0.5); }
.btn--hivis:hover { background: var(--hivis-deep); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

/* ============ SECTION 1: HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 26, 36, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo__img { display: block; height: 52px; width: auto; }
.logo__img--footer { height: 72px; }
.header__nav { display: flex; align-items: center; gap: 2px; }
.header__nav-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; color: rgba(255, 255, 255, 0.72); padding: 7px 13px;
  border-radius: var(--radius-sm); transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.header__nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.09); }
.header__nav-link--disabled { opacity: 0.38; pointer-events: none; }
.header__nav-link--active { color: var(--jet); }
.header__cta { font-family: var(--font-body); font-weight: 700; }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { display: flex; flex-direction: column; text-align: right; color: var(--white); line-height: 1.2; }
.header__phone-label { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--jet); font-weight: 600; margin-bottom: 2px; }
.header__phone-number { font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-decoration: none; color: var(--white); }
.header__phone-number:hover { color: var(--jet); }

/* ============ SECTION 2: HERO ============ */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero__media {
  position: absolute; inset: 0;
  background: #04121b url("/assets/hero.webp") center/cover no-repeat;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 18, 26, 0.96) 0%, rgba(8, 18, 26, 0.82) 38%, rgba(8, 18, 26, 0.45) 70%, rgba(8, 18, 26, 0.55) 100%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.hero__copy { max-width: 600px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.hero__sub { font-size: 1.18rem; color: #c5d4dc; margin: 0 0 24px; max-width: 540px; }
.hero__ticks { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__ticks li { position: relative; padding-left: 26px; font-weight: 600; font-size: 0.98rem; }
.hero__ticks li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--jet);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Lead card / form */
.lead-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border-top: 5px solid var(--hivis);
}
.lead-card__head { margin-bottom: 20px; text-align: center; }
.lead-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; line-height: 1.1; margin: 0; }
.lead-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field__label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); font-weight: 600; }
.field input, .field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--concrete-2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%235C7180' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--jet); box-shadow: 0 0 0 3px rgba(45, 166, 222, 0.18); }
.lead-form__fineprint { font-size: 0.78rem; color: var(--steel); margin: 2px 0 0; text-align: center; }
.lead-form__status { font-size: 0.92rem; font-weight: 600; margin: 0; text-align: center; min-height: 0; color: var(--jet-deep); }
.lead-form__status.is-error { color: #c0392b; }

/* ============ SECTION 3: TRUST RIBBON (floating glass card) ============ */
.trust-wrap {
  position: relative;
  z-index: 10;
  margin-top: -36px;
  margin-bottom: -36px;
  pointer-events: none;
}
.trust-wrap .container { pointer-events: auto; }
.trust--float {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: rgba(18, 43, 57, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(45, 166, 222, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 2px 0 0 var(--jet) inset;
  padding: 32px 36px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  padding: 0 14px;
}
.trust__item:first-child { padding-left: 0; }
.trust__item:last-child { padding-right: 0; }
.trust__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  flex: none;
}
.trust__icon { width: 44px; height: 44px; fill: var(--jet); flex: none; }
.trust__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.trust__label { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--white); white-space: nowrap; }
.trust__detail { font-size: 0.76rem; color: rgba(159, 180, 190, 0.9); white-space: nowrap; }

/* ============ SECTION 4: VISUAL PROOF ============ */
.ba { max-width: 920px; margin: 0 auto; }
.ba__frame {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* clip-path keeps the before image full-frame; --pos (%) controls the reveal */
.ba__before { position: absolute; inset: 0; --pos: 50%; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 14px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 11px; border-radius: 100px; color: var(--white);
  background: rgba(12, 26, 36, 0.72); backdrop-filter: blur(3px); z-index: 3;
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; background: rgba(45, 166, 222, 0.85); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--white); transform: translateX(-50%); z-index: 4; cursor: ew-resize;
}
.ba__handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--jet);
}
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible .ba__handle-grip { box-shadow: 0 0 0 4px rgba(45, 166, 222, 0.6); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 5; }

.proof__tiles { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px; margin-top: 28px; }
.proof__tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); }
.proof__tile img { display: block; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.proof__tile figcaption { font-size: 0.9rem; color: var(--steel); padding: 14px 16px; font-weight: 500; }

/* ============ SECTION 5: SERVICES ============ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(45, 166, 222, 0.5); }
.svc-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__body { padding: 22px; }
.svc-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--white); margin: 0 0 10px; }
.svc-card__body p { font-size: 0.96rem; color: #9fb4be; margin: 0; }
.services__note { text-align: center; margin: 40px 0 0; font-size: 1.05rem; color: #c5d4dc; }
.services__note a { color: var(--hivis); font-weight: 700; text-decoration: none; }
.services__note a:hover { text-decoration: underline; }

/* ============ SECTION 6: WHY CHOOSE US ============ */
.why__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.spec-badge {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--jet);
  min-width: 110px; text-align: center;
}
.spec-badge__num { font-family: var(--font-display); font-weight: 900; font-size: 2rem; line-height: 1; color: var(--jet); }
.spec-badge__label { font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.35; font-weight: 700; color: var(--steel); }
.why__list { list-style: none; margin: 28px 0 32px; padding: 0; display: grid; gap: 22px; }
.why__list li { display: flex; gap: 16px; }
.why__list-icon {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  background: var(--concrete); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; border: 1px solid var(--line);
}
.why__list h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 2px 0 6px; }
.why__list p { margin: 0; color: var(--steel); font-size: 0.97rem; }

/* ============ SECTION 7: REVIEWS ============ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  margin: 0; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.review__stars { color: #c8a000; font-size: 1.15rem; letter-spacing: 2px; }
.review__service { margin: 0; font-size: 0.78rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; color: var(--jet); font-weight: 700; }
.review blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; }
.review figcaption { font-size: 0.92rem; color: var(--steel); margin-top: auto; }
.review figcaption strong { color: var(--ink); }

/* ============ SECTION 8: FINAL CTA ============ */
.final-cta { position: relative; color: var(--white); overflow: hidden; padding: clamp(64px, 8vw, 110px) 0; }
.final-cta__media { position: absolute; inset: 0; background: #04121b url("/assets/svc-driveway.webp") center/cover no-repeat; }
.final-cta__scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8, 18, 26, 0.95) 0%, rgba(8, 18, 26, 0.8) 50%, rgba(8, 18, 26, 0.6) 100%); }
.final-cta__grid { position: relative; display: grid; grid-template-columns: 1fr 0.8fr; gap: 48px; align-items: center; }
.final-cta__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; }
.final-cta__sub { font-size: 1.12rem; color: #c5d4dc; margin: 0 0 28px; max-width: 480px; }
.final-cta__contacts { display: flex; gap: 16px; flex-wrap: wrap; }
.final-cta__contact {
  text-decoration: none; color: var(--white);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm); padding: 12px 20px; display: flex; flex-direction: column;
}
.final-cta__contact strong { font-family: var(--font-display); font-size: 1.25rem; }
.final-cta__contact span { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--jet); }
.lead-card--onDark { border-top-color: var(--jet); }

/* ============ SECTION 9: FOOTER ============ */
.footer { background: var(--ink); color: #9fb4be; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.logo--footer { margin-bottom: 20px; }
.logo-svg--footer { height: 90px; }
.footer__tag { font-size: 0.95rem; margin: 0 0 18px; max-width: 320px; }
.footer__nap { font-size: 0.92rem; line-height: 1.7; margin: 0; }
.footer__nap strong { color: var(--white); }
.footer__heading { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.95rem; }
.footer__list a { color: #c5d4dc; text-decoration: none; }
.footer__list a:hover { color: var(--jet); }
.footer__areas { font-size: 0.92rem; line-height: 1.8; margin: 0; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; font-family: var(--font-body); }

/* ============ MOBILE MENU ============ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--white);
  line-height: 0;
}
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-hamburger { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 26, 36, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 49;
  padding: 8px 0 20px;
}
.mobile-nav__link {
  display: block;
  padding: 15px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s ease;
}
.mobile-nav__link:hover { color: var(--jet); }
.mobile-nav__cta { display: block; margin: 20px 24px 0; text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .header__nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__copy { max-width: none; }
  .why__grid { grid-template-columns: 1fr; gap: 56px; }
  .final-cta__grid { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__cta { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }
  .mobile-nav { display: block; visibility: hidden; opacity: 0; transform: translateY(-6px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s; }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition: opacity 0.2s ease, transform 0.2s ease; }
  .proof__tiles { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .spec-badge { right: 12px; bottom: -14px; }
  /* Narrow the video reel edge fades on small screens */
  .reel-track-wrap::before,
  .reel-track-wrap::after { width: 48px; }
}

/* ============ TEXT LOGO ============ */
.logo--text {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  gap: 1px;
  line-height: 1;
}
.logo__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.logo__accent { color: var(--jet); }
.logo__sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.52);
}
.logo--footer .logo__wordmark { font-size: 1.55rem; }
.logo--footer .logo__sub { color: rgba(255, 255, 255, 0.42); }

/* ============ PROOF SECTION PADDING (trust ribbon overlap) ============ */
.proof { padding-top: calc(clamp(64px, 8vw, 110px) + 52px) !important; padding-bottom: clamp(28px, 3vw, 44px) !important; }

/* ============ SCROLL-REVEAL ANIMATIONS ============ */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-reveal.is-visible { opacity: 1; transform: none; }
.js-reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}
.js-reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.js-reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.07s; }
.js-reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.14s; }
.js-reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.21s; }
.js-reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.28s; }
.js-reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ============ STATS SECTION ============ */
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 44px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--jet);
  letter-spacing: -0.03em;
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a9aaa;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--jet);
  text-transform: uppercase;
}
.step__icon {
  width: 52px;
  height: 52px;
  background: var(--concrete);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.step__icon svg { width: 26px; height: 26px; fill: var(--ink); }
.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}
.step__desc { font-size: 0.97rem; color: var(--steel); margin: 0; line-height: 1.65; }

/* ============ SERVICE CARD MICRO-INTERACTION ============ */
.svc-card { border-left: 3px solid transparent; }
.svc-card:hover { border-color: var(--jet); box-shadow: 0 16px 40px -16px rgba(45, 166, 222, 0.22); }
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--jet);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.svc-card__more::after { content: '→'; transition: transform 0.18s ease; }
.svc-card:hover .svc-card__more { opacity: 1; transform: none; }
.svc-card:hover .svc-card__more::after { transform: translateX(3px); }

/* ============ SERVICES PAGE: HERO (sub-page) ============ */
.hero--sub { min-height: 480px; display: flex; align-items: center; }
.hero--sub .hero__sub-inner {
  position: relative;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  max-width: 720px;
}
.hero__sub-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--white);
}
.hero__sub-lede { font-size: 1.18rem; color: #c5d4dc; margin: 0 0 28px; max-width: 540px; }

/* ============ SERVICES PAGE: STICKY TABS ============ */
.svc-tabs {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }
.svc-tabs__inner {
  display: flex;
  gap: 2px;
  padding: 10px 0;
  white-space: nowrap;
}
.svc-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  flex: none;
}
.svc-tab:hover { color: var(--white); background: rgba(255, 255, 255, 0.09); }
.svc-tab.is-active { color: var(--jet); background: rgba(45, 166, 222, 0.1); }

/* ============ SERVICES PAGE: DETAIL SECTIONS ============ */
.svc-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-detail--reverse .svc-detail__media { order: 2; }
.svc-detail--reverse .svc-detail__copy { order: 1; }
.svc-detail__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.svc-detail__media--flush img {
  aspect-ratio: unset;
  height: 100%;
  flex: 1;
}
.img-placeholder {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--ink-3);
  border: 2px dashed rgba(45, 166, 222, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(45, 166, 222, 0.5);
}
.svc-detail__intro {
  font-size: 1.05rem;
  color: var(--steel);
  margin: 0 0 28px;
  line-height: 1.7;
}
.section--dark .svc-detail__intro { color: #9fb4be; }
.svc-detail__sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 10px;
  color: var(--jet);
}
.svc-detail__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.svc-detail__list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.97rem;
  color: var(--steel);
  line-height: 1.5;
}
.section--dark .svc-detail__list li { color: #9fb4be; }
.svc-detail__list li::before { content: '–'; position: absolute; left: 0; color: var(--jet); font-weight: 700; }
.svc-detail__list--check li::before { content: '✓'; font-size: 0.85rem; }
.svc-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--concrete);
  color: var(--ink);
  border: 1px solid var(--line);
}
.section--dark .tag {
  background: rgba(255, 255, 255, 0.07);
  color: #c5d4dc;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============ SERVICES PAGE: PROCESS STEPS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.process-step__num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--jet);
  margin-bottom: 14px;
}
.process-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin: 0 0 10px; color: var(--ink); }
.process-step p { font-size: 0.93rem; color: var(--steel); margin: 0; line-height: 1.65; }

/* ============ FAQ ACCORDION ============ */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 6px; }
.faq__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}
.faq__item:has(.faq__q[aria-expanded="true"]) { background: rgba(255, 255, 255, 0.06); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  transition: color 0.15s ease;
}
.faq__q:hover { color: var(--jet); }
.faq__q[aria-expanded="true"] { color: var(--jet); }
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__chevron {
  width: 22px; height: 22px;
  fill: currentColor;
  flex: none;
  transition: transform 0.22s ease;
}
.faq__a {
  padding: 0 24px 20px;
  font-size: 0.97rem;
  color: #9fb4be;
  line-height: 1.7;
}
.faq__a p { margin: 0; }
.faq__a[hidden] { display: none; }

/* ============ SERVICE DETAIL - FLUSH IMAGE LAYOUTS ============ */
/* Makes the image column stretch to exactly match the text column height */
.svc-detail__grid--flush {
  align-items: stretch;
}

/* Base flush media container: flex column, children fill height equally */
.svc-detail__media--flush {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-detail__media--flush > .img-placeholder {
  flex: 1;
  min-height: 0;
  aspect-ratio: unset;
  width: 100%;
}

/* Variant: two images side-by-side within the column (Service 6) */
.svc-detail__media--side-2 {
  flex-direction: row;
}
.svc-detail__media--side-2 > .img-placeholder {
  min-width: 0;
}

/* Variant: 2×2 grid (Service 7) - fills the stretched column */
.svc-detail__media--2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.svc-detail__media--2x2 .img-placeholder {
  aspect-ratio: unset;
  min-height: 0;
}

/* Wide-media grid (Service 7) - gives more room to image col */
.svc-detail__grid--wide-media {
  grid-template-columns: 0.8fr 1.2fr;
}

/* Service 5 stacked layout: copy full-width on top, images row below */
.svc-detail__media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 36px;
}
.svc-detail__media-row .img-placeholder,
.svc-detail__media-row img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Service 7 editorial layout */
.svc-detail__editorial-title { margin-bottom: 16px; }
.svc-detail__editorial-intro { max-width: 820px; }
.svc-detail__editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.svc-detail__media-wide { width: 100%; }
.svc-detail__media-wide .img-placeholder,
.svc-detail__media-wide img {
  aspect-ratio: 21 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .svc-detail__editorial-grid { grid-template-columns: 1fr; gap: 0; }
  .svc-detail__media-wide .img-placeholder,
  .svc-detail__media-wide img { aspect-ratio: 16 / 9; }
}

/* Mobile: restore minimum heights so images don't collapse */
@media (max-width: 900px) {
  .svc-detail__media--flush { min-height: 260px; }
  .svc-detail__media--2x2 { min-height: 320px; }
  .svc-detail__media-row { grid-template-columns: 1fr; margin-top: 20px; }
  .svc-detail__media-row .img-placeholder { aspect-ratio: 4 / 3; }
}

/* ============ TRUST RIBBON RESPONSIVE ============ */
@media (max-width: 900px) {
  .trust-wrap { margin-top: -20px; margin-bottom: -20px; }
  .trust--float { flex-wrap: wrap; padding: 16px 20px; }
  .trust__item { flex-basis: calc(50% - 1px); flex: none; padding: 12px 10px; }
  .trust__divider { display: none; }
}
@media (max-width: 480px) {
  .trust-wrap { margin-top: -12px; margin-bottom: 0; }
  .trust--float { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
  .trust__item { flex-basis: auto; width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .trust__item:last-child { border-bottom: none; }
}

/* ============ STATS RESPONSIVE ============ */
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 32px 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============ STEPS RESPONSIVE ============ */
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ SERVICES PAGE RESPONSIVE ============ */
@media (max-width: 900px) {
  .svc-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail--reverse .svc-detail__media { order: unset; }
  .svc-detail--reverse .svc-detail__copy { order: unset; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============ VIDEO REEL ============ */
.video-reel {
  padding-bottom: clamp(32px, 4vw, 56px);
  overflow: hidden;
}

.reel-head { max-width: 640px; }

.reel-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.reel-track-wrap {
  position: relative;
  cursor: grab;
  margin-top: 36px;
}
.reel-track-wrap:active { cursor: grabbing; }

/* Left/right fade — videos dissolve into white at the edges */
.reel-track-wrap::before,
.reel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.reel-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 10%, transparent 100%);
}
.reel-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 10%, transparent 100%);
}

.reel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* equal padding centres first/last card in the infinite loop */
  padding: 8px calc((100vw - 340px) / 2) 20px;
  scrollbar-width: none;
}
.reel-track::-webkit-scrollbar { display: none; }

.reel-item {
  flex: 0 0 340px;
  flex-shrink: 0;
  scroll-snap-align: center;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Play button — always-visible translucent triangle, no circle, no background */
.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 1;
}
.reel-play svg {
  width: 72px;
  height: 72px;
  /* No filter — filter causes a compositing delay that hides the button until hover */
  transition: transform 0.15s;
}
.reel-play:hover svg { transform: scale(1.1); }

/* When playing: fade out the triangle; keep pointer-events so click pauses */
.reel-item.is-playing .reel-play {
  opacity: 0;
  cursor: default;
}

.reel-swipe-hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
  margin: 20px 0 0;
}

@media (max-width: 540px) {
  .reel-item { flex: 0 0 260px; }
  .reel-track { padding-inline: calc((100vw - 260px) / 2); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
:focus-visible { outline: 2px solid var(--jet); outline-offset: 2px; }
