@font-face{
  font-family:"Orbitron";
  src:url("../fonts/orbitron.woff2") format("woff2");
  font-weight:400 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Saira";
  src:url("../fonts/saira.woff2") format("woff2");
  font-weight:300 700; font-style:normal; font-display:swap;
}

:root{
  /* ground + surfaces: deep, unmistakably blue */
  --ground:      #031428;
  --surface:     #06203E;
  --raised:      #0A2B4F;
  --line:        #14406B;
  --line-hi:     #1F5C92;

  /* accent: the Flow State logo blue */
  --blue:        #0093D1;
  --blue-hi:     #55C8F5;
  --blue-deep:   #005E9E;
  --glow:        rgba(0,147,209,.45);

  /* type */
  --text:        #EAF4FC;
  --muted:       #A3C1DA;
  --dim:         #7098BC;

  --display: "Orbitron", "Eurostile", "Bank Gothic", sans-serif;
  --sans: "Saira", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --mono: "Saira", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;

  --svc-overlap: clamp(70px, 11vh, 150px);
  --gut: clamp(20px, 5vw, 64px);
  --col: 1240px;
  --sec: clamp(76px, 9vw, 140px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--ground);
  color:var(--text);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.66;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

:focus-visible{
  outline:2px solid var(--blue-hi);
  outline-offset:3px;
  border-radius:2px;
}

.wrap{ width:100%; max-width:var(--col); margin-inline:auto; padding-inline:var(--gut); }

/* ---------- shared type ---------- */

.mono{
  font-family:var(--mono);
  font-size:11.5px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
}

h1,h2,h3{ margin:0; font-family:var(--display); font-weight:700;
  text-wrap:balance; letter-spacing:-.02em; line-height:1.12; }

.h2{ font-family:var(--display); font-size:clamp(21px,3vw,37px); line-height:1.16; }
.h3{ font-family:var(--display); font-size:clamp(15.5px,1.6vw,20px); letter-spacing:-.012em; line-height:1.25; }

.lede{ font-size:clamp(17px,1.35vw,19.5px); line-height:1.62; color:var(--muted); max-width:62ch; }

/* ---------- patch-point section header ----------
   Every section opens on a patch point: a lit node, a label,
   and the signal line running out to the edge of the column. */

.phead{ display:flex; align-items:center; gap:14px; margin-bottom:clamp(28px,3.4vw,46px); }
.phead .node{
  position:relative; flex:none; width:9px; height:9px; border-radius:50%;
  background:#123A22;
  box-shadow:0 0 4px rgba(55,200,113,.2);
  animation:node-pulse 6s ease-in-out infinite;
}
.phead .node::after{
  content:""; position:absolute; inset:-4px;
  border-radius:50%; border:1px solid var(--blue);
  animation:node-halo 6s ease-in-out infinite;
}
/* one slow breath: off, up to green, over to yellow, back down to off */
@keyframes node-pulse{
  0%,100% { background:#123A22; box-shadow:0 0 4px rgba(55,200,113,.20); }
  38%     { background:#3FDC7C; box-shadow:0 0 16px rgba(55,200,113,.85); }
  62%     { background:#E9B429; box-shadow:0 0 14px rgba(233,180,41,.75); }
}
@keyframes node-halo{
  0%,100% { transform:scale(.9);  opacity:.3;  border-color:var(--blue-deep); }
  38%     { transform:scale(1.2); opacity:.9;  border-color:var(--blue-hi); }
  62%     { transform:scale(1.12);opacity:.75; border-color:var(--blue); }
}
.phead .mono{ color:var(--blue-hi); }
/* the section label is an h2 for semantics; strip the heading defaults so it
   looks exactly as it did when it was a span */
.phead h2.mono{ font-size:inherit; font-weight:inherit; line-height:inherit;
  letter-spacing:inherit; margin:0; font-family:inherit; }

/* skip link: invisible until focused, for keyboard and screen-reader users */
.skip{ position:absolute; left:-9999px; top:0; z-index:100;
  background:var(--blue); color:#02101F; padding:10px 16px; font-weight:600; }
.skip:focus{ left:8px; top:8px; }

/* available to screen readers, removed from the visual layout */
.vh{ position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0; }


.phead .run{ flex:1; height:1px; background:linear-gradient(90deg,var(--line-hi),transparent); }

/* ---------- nav ---------- */

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(3,20,40,.72);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:border-color .3s, background .3s;
}
.nav.stuck{ border-bottom-color:var(--line); background:rgba(3,20,40,.94); }
.nav .wrap{ display:flex; align-items:center; gap:28px; height:70px; }

.brand{ display:flex; align-items:center; margin-right:auto; }
.brand img{ height:36px; width:auto; display:block; }
.brandmark{ display:block; }
.foot .brand img{ height:33px; }

.menu{ display:flex; align-items:center; gap:clamp(14px,1.5vw,22px); }
.menu a{
  font-size:14px; color:var(--muted); white-space:nowrap; flex:none;
  position:relative; padding:6px 0;
  transition:color .2s;
}
.menu a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background:var(--blue); transition:right .28s cubic-bezier(.2,.7,.3,1);
}
.menu a:hover{ color:var(--text); }
.menu a:hover::after{ right:0; }

.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--mono); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; font-weight:500;
  padding:11px 20px; border-radius:2px;
  border:1px solid var(--line-hi); color:var(--text);
  background:transparent;
  transition:border-color .22s, background .22s, color .22s, box-shadow .22s;
  white-space:nowrap;
}
.btn:hover{ border-color:var(--blue); background:rgba(0,147,209,.12); box-shadow:0 0 22px -6px var(--glow); }
.btn-ink{ background:#04070E; border-color:#02101F; color:#DCEAFF; }
.btn-ink:hover{ background:#06203E; border-color:#06203E; color:#fff; }

.burger{ display:none; width:40px; height:40px; align-items:center; justify-content:center; background:none; border:0; cursor:pointer; padding:0; }
.burger span{ display:block; width:19px; height:1.5px; background:var(--text); position:relative; }
.burger span::before,.burger span::after{ content:""; position:absolute; left:0; width:19px; height:1.5px; background:var(--text); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }

/* ---------- hero ---------- */

.hero{ position:relative; min-height:clamp(330px,48vh,500px); display:flex; align-items:center; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position:center 42%; }
.hero-bg::before{ content:""; position:absolute; inset:0; z-index:1;
  background:#0A4C8C; mix-blend-mode:color; opacity:.7; }
.hero-bg::after{
  content:""; position:absolute; inset:0; z-index:2;
  background:
    linear-gradient(180deg, rgba(3,20,40,.84) 0%, rgba(3,20,40,.28) 34%, rgba(3,20,40,.72) 88%, rgba(3,20,40,.78) 100%),
    linear-gradient(100deg, rgba(3,20,40,.93) 4%, rgba(3,20,40,.48) 46%, rgba(4,34,68,.2) 100%);
}
.hero .wrap{ position:relative; z-index:2; text-align:center;
  padding-top:0; padding-bottom:var(--svc-overlap); }

.hero-mark{ margin-bottom:0; }
.hero-logo{ width:clamp(240px,34vw,440px); height:auto; margin-inline:auto; display:block; }


.hero h1{
  font-size:clamp(27px,4.5vw,56px);
  letter-spacing:-.02em;
  line-height:1.14;
  max-width:17ch;
  margin-bottom:26px;
}
.hero h1 em{ font-style:normal; color:var(--blue-hi); }

.hero .lede{ max-width:56ch; margin-bottom:36px; }


/* one-time signal sweep across the hero rule */
.sweep{ position:absolute; left:0; right:0; bottom:0; height:1px; overflow:hidden; }
.sweep i{
  position:absolute; top:0; left:-30%; width:30%; height:1px;
  background:linear-gradient(90deg,transparent,var(--blue-hi),transparent);
  animation:sweep 2.6s cubic-bezier(.4,0,.2,1) .5s 1 both;
}
@keyframes sweep{ to{ left:110%; } }

/* ---------- sections ---------- */

.section{ padding-block:var(--sec); }

/* ---------- services ---------- */

.svc-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(14px,1.5vw,22px); }

.svc{
  position:relative; display:block;
  border:1px solid var(--line);
  overflow:hidden; background:var(--surface);
  transition:border-color .3s, transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
}
.svc:hover{ border-color:var(--blue); transform:translateY(-3px); box-shadow:0 22px 54px -28px rgba(0,0,0,.95), 0 0 34px -18px var(--glow); }

.svc-img{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--raised); }
.svc-img img{ width:100%; height:100%; object-fit:cover; filter:saturate(.8) brightness(.72); transition:transform .8s cubic-bezier(.2,.7,.3,1), filter .5s; }
.svc:hover .svc-img img{ transform:scale(1.045); filter:saturate(1) brightness(.9); }
.svc-img::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(3,20,40,.05) 30%, rgba(3,20,40,.62) 68%, rgba(3,20,40,.94) 100%);
}

.svc-name{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:clamp(18px,2.2vw,28px);
}
.svc-name .h3{ transition:color .25s; }
.svc:hover .svc-name .h3{ color:var(--blue-hi); }
.svc-name svg{ flex:none; color:var(--blue); transition:transform .3s cubic-bezier(.2,.7,.3,1); }
.svc:hover .svc-name svg{ transform:translateX(5px); }

/* ---------- selected work ---------- */


.wk-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(12px,1.4vw,20px); }

.wk{
  display:flex; flex-direction:column; height:100%;
  background:var(--ground); border:1px solid var(--line);
  transition:border-color .3s, transform .35s cubic-bezier(.2,.7,.3,1);
}
.wk:hover{ border-color:var(--line-hi); transform:translateY(-2px); }

/* art is contained, never cropped — posters, key art and logos all differ */
/* uniform square tiles the artwork fills: no letterbox bars, no ragged sizes */
.wk-art{
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--line); flex:none;
}
.wk-art img{
  width:100%; aspect-ratio:1/1; object-fit:cover; display:block;
  filter:saturate(.94) brightness(.94); transition:filter .4s;
}
.wk:hover .wk-art img{ filter:saturate(1) brightness(1.04); }

.wk-body{ padding:15px 17px 18px; display:flex; flex-direction:column; gap:6px; }
.wk-body h3{ font-family:var(--sans); font-size:15px; font-weight:600; line-height:1.35; letter-spacing:.005em; }
.wk-body p{ margin:0; font-size:12.5px; line-height:1.5; color:var(--muted); }

/* ---------- about ---------- */

.about-grid{ display:grid; grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr); gap:clamp(28px,5vw,72px); align-items:center; }
.about-fig{ position:relative; margin:0; }
.about-fig img{ width:100%; height:auto; display:block; border:1px solid var(--line); filter:grayscale(1) contrast(1.06) brightness(.92); }
.about-fig figcaption{ font-family:var(--mono); font-size:10.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--dim); margin-top:14px; }
.about-copy p{ color:var(--muted); margin:0 0 18px; max-width:60ch; }
.about-copy .btn{ margin-top:10px; }

/* ---------- cta ---------- */

.cta{ position:relative; overflow:hidden; background:linear-gradient(115deg,var(--blue-deep) 0%,var(--blue) 58%,#5AA0FF 100%); color:#02101F; }
.cta::after{
  content:""; position:absolute; inset:0; opacity:.5;
  background:radial-gradient(120% 150% at 88% 10%, rgba(255,255,255,.4), transparent 55%);
  pointer-events:none;
}
.cta .wrap{ position:relative; z-index:2; padding-block:clamp(58px,7vw,96px); display:flex; flex-wrap:wrap; gap:32px; align-items:center; justify-content:space-between; }
.cta h2{ color:#02101F; max-width:22ch; letter-spacing:-.012em;
  font-size:clamp(17px,2.1vw,26px); line-height:1.25; }
.cta .mono{ color:rgba(2,16,31,.68); display:block; margin-bottom:16px; }
.cta-side{ display:flex; flex-direction:column; gap:14px; align-items:center; }
.cta-side a.mail{ font-family:var(--mono); font-size:12.5px; letter-spacing:.06em; color:#02101F; border-bottom:1px solid rgba(4,7,14,.35); padding-bottom:2px; }
.cta-side a.mail:hover{ border-bottom-color:#02101F; }

/* ---------- footer ---------- */

.foot{ background:var(--ground); }
.foot .wrap{ padding-block:clamp(40px,4.5vw,60px); }
.foot-top{ display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; padding-bottom:32px; border-bottom:1px solid var(--line); }
.foot-nav{ flex:1 1 auto; display:flex; flex-wrap:wrap;
  justify-content:space-between; gap:10px clamp(10px,1.6vw,24px);
  margin-left:clamp(28px,6vw,90px); }
.foot-nav a{ font-size:14px; color:var(--muted); }
.foot-nav a:hover{ color:var(--blue-hi); }
.foot-bot{ display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; padding-top:24px; }
.foot-bot p, .foot-bot a{ font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--dim); margin:0; }
.foot-bot a:hover{ color:var(--blue-hi); }

/* ---------- reveal ---------- */

/* scoped to .js so a no-JS visitor still sees every section */
.js .rv{ opacity:0; transform:translateY(18px); transition:opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.js .rv.in{ opacity:1; transform:none; }

/* ---------- responsive ---------- */

@media (max-width:1180px){
  .menu{
    position:fixed; inset:70px 0 auto; flex-direction:column; align-items:stretch; gap:0;
    background:rgba(3,20,40,.98); border-bottom:1px solid var(--line);
    padding:8px var(--gut) 22px; display:none;
  }
  .menu.open{ display:flex; }
  .menu a{ padding:14px 0; border-bottom:1px solid var(--line); font-size:16px; }
  .menu a::after{ display:none; }
  .burger{ display:flex; }
  .about-grid{ grid-template-columns:1fr; }
  .wk-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:640px){
  body{ font-size:16px; }
  .svc-grid{ grid-template-columns:1fr; }
  /* keep the call to action visible on phones: trim the button and the
     wordmark just enough that brand + button + burger fit one row */
  .nav-cta{ display:inline-flex; font-size:10px; letter-spacing:.09em;
    padding:9px 12px; }
  .brand img{ height:30px; }
  .nav .wrap{ gap:10px; }
  .hero .wrap{ padding-top:96px; }
  /* once the slogan and the button stack, space-between leaves each row
     flush left; centre the whole block instead */
  .cta .wrap{ justify-content:center; text-align:center; gap:26px; }
  .cta h2{ max-width:none; }
  .cta-side{ width:100%; align-items:center; }
  .foot-bot{ justify-content:center; text-align:center; }
  .foot-nav{ justify-content:center; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .js .rv{ opacity:1; transform:none; }
  .phead .node{ animation:none; background:var(--blue);
    box-shadow:0 0 0 4px rgba(0,147,209,.15), 0 0 14px var(--glow); }
  .phead .node::after{ animation:none; display:none; }
}

/* ============================================================
   Inner pages
   ============================================================ */

/* current page in the nav */
.menu a[aria-current="page"]{ color:var(--text); }
.menu a[aria-current="page"]::after{ right:0; }

/* ---------- page header ---------- */

.phero{
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--line);
  padding-block:clamp(118px,13vw,180px) clamp(52px,6vw,84px);
}
.phero-bg{ position:absolute; inset:0; }
.phero-bg img{ width:100%; height:100%; object-fit:cover; object-position:center 45%; }
.phero-bg::before{ content:""; position:absolute; inset:0; z-index:1; background:#0A4C8C; mix-blend-mode:color; opacity:.72; }
.phero-bg::after{
  content:""; position:absolute; inset:0; z-index:2;
  background:
    linear-gradient(180deg, rgba(3,20,40,.9) 0%, rgba(3,20,40,.72) 45%, var(--ground) 100%),
    linear-gradient(100deg, rgba(3,20,40,.95) 6%, rgba(3,20,40,.6) 58%, rgba(4,34,68,.34) 100%);
}
.phero .wrap{ position:relative; z-index:3; }
.phero-kicker{ color:var(--blue-hi); display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.phero-kicker i{ display:block; width:26px; height:1px; background:var(--blue); font-style:normal; }
.phero h1{ font-size:clamp(25px,3.9vw,46px); letter-spacing:-.018em; max-width:18ch;
  margin-bottom:24px; color:var(--blue-hi); }
.phero .lede{ max-width:66ch; }
.phero-note{ margin:18px 0 0; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--dim); }

/* ---------- content blocks ---------- */

.blk{ padding-block:clamp(58px,6.5vw,96px); }
.blk + .blk{ padding-top:0; }

.prose{ max-width:70ch; margin-bottom:clamp(28px,3.4vw,44px); }
.prose p{ margin:0 0 16px; color:var(--muted); font-size:clamp(16px,1.25vw,17.5px); line-height:1.68; }
.prose p:last-child{ margin-bottom:0; }

/* ---------- gallery ---------- */


/* ---------- item cards (products, repairs) ---------- */

.items{ display:grid; gap:clamp(14px,1.6vw,22px); }
.items-2{ grid-template-columns:repeat(2,1fr); }
.items-3{ grid-template-columns:repeat(3,1fr); }
.items-4{ grid-template-columns:repeat(4,1fr); }

.item{
  display:flex; flex-direction:column; height:100%;
  background:var(--surface); border:1px solid var(--line);
  overflow:hidden; transition:border-color .3s, transform .35s cubic-bezier(.2,.7,.3,1);
}
.item:hover{ border-color:var(--line-hi); transform:translateY(-2px); }

/* fixed media height so one image and two images give the same card proportions */
/* one fixed strip height for every card, whether it holds one photo or two,
   so a single-image card never towers over a paired one */
.item-media{
  display:grid; grid-auto-flow:column; grid-auto-columns:1fr; gap:1px;
  background:var(--line); flex:none;
  aspect-ratio:16/10; overflow:hidden;
}
.item-media img{
  width:100%; height:100%; min-width:0; min-height:0; object-fit:cover; display:block;
  filter:saturate(.9) brightness(.9); transition:filter .45s;
}
.item:hover .item-media img{ filter:saturate(1) brightness(1); }

/* the original site's tile shapes: 4-up rows square, 3-up rows portrait */
.items-4 .item-media{ aspect-ratio:1/1; }
.items-3 .item-media{ aspect-ratio:9/10; }

/* carousel variant: one photo at a time, like the original Google Site.
   The finished product leads; the rest wait behind the arrows. */
.item-media.car{ display:block; position:relative; }
.item-media.car img{ display:none; color:transparent; /* no alt-text flash while loading */ }
.item-media.car img.on{ display:block; }
.car-btn{
  display:none; position:absolute; top:50%; transform:translateY(-50%);
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(234,244,252,.25);
  background:rgba(2,13,28,.62); color:var(--text);
  align-items:center; justify-content:center; cursor:pointer; z-index:2;
  transition:background .2s, border-color .2s;
}
.js .car-btn{ display:flex; }
.car-btn:hover{ background:rgba(0,147,209,.55); border-color:var(--blue-hi); }
.car-prev{ left:10px; }
.car-next{ right:10px; }
.car-prev svg{ transform:scaleX(-1); }   /* glyph points right; flip it for the back button */
.car-dots{
  display:none; position:absolute; left:50%; bottom:9px; transform:translateX(-50%);
  gap:6px; z-index:2;
}
.js .car-dots{ display:flex; }
.car-dots i{
  width:6px; height:6px; border-radius:50%;
  background:rgba(234,244,252,.35); transition:background .2s;
}
.car-dots i.on{ background:var(--blue-hi); }

.item-body{ padding:clamp(16px,1.7vw,22px); display:flex; flex-direction:column; gap:9px; }
.item-body h3{ font-family:var(--sans); font-size:17px; font-weight:600; line-height:1.32; letter-spacing:.005em; }
.item-body p{ margin:0; color:var(--muted); font-size:14.5px; line-height:1.6; }

/* ---------- contact ---------- */

.contact-lede{ margin:0 0 28px; font-size:clamp(18px,1.7vw,22px); line-height:1.5; color:var(--text); max-width:24ch; }
.contact-list{ margin:0; display:grid; gap:6px; }
.contact-list dt{ color:var(--dim); margin-top:16px; }
.contact-list dt:first-child{ margin-top:0; }
.contact-list dd{ margin:0; font-size:17px; }
.contact-list a{ color:var(--blue-hi); border-bottom:1px solid rgba(0,147,209,.4); padding-bottom:2px; transition:border-color .2s; }
.contact-list a:hover{ border-bottom-color:var(--blue-hi); }

@media (max-width:1000px){
  .items-3,.items-4{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .items-2,.items-3,.items-4{ grid-template-columns:1fr; }
  .phero{ padding-block:100px 46px; }
}

/* ---------- text-only about / contact ---------- */

.contact-plain{ max-width:72ch; }
.contact-plain .contact-lede{ max-width:30ch; }

/* ---------- clients ---------- */

.clients-list{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:clamp(9px,1vw,14px);
}
/* bordered per item, so a short last row leaves no filled-in empty cells */
.clients-list li{
  background:var(--surface); border:1px solid var(--line); font-weight:500;
  padding:clamp(22px,2.4vw,30px) clamp(20px,2vw,26px);
  font-size:clamp(17px,1.5vw,20px); letter-spacing:.005em; line-height:1.3;
  display:flex; align-items:center;
  transition:background .3s, border-color .3s, color .3s;
}
.clients-list li:hover{ background:var(--raised); border-color:var(--blue); color:var(--blue-hi); }

@media (max-width:640px){
  .clients-list{ grid-template-columns:1fr; }
}

/* ---------- split rows: text one side, media the other ---------- */

.split{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(26px,4vw,68px); align-items:center;
}
.split-text h2{ margin-bottom:clamp(16px,1.8vw,22px); }
.split-text p{ margin:0 0 16px; color:var(--muted); font-size:clamp(15.5px,1.15vw,16.5px); line-height:1.68; }
.split-text p:last-child{ margin-bottom:0; }

.split-media{ display:grid; gap:clamp(9px,1vw,14px); }
.split-media img, .split-media video{
  width:100%; height:auto; display:block;
  border:1px solid var(--line); background:var(--surface);
  filter:saturate(.9) brightness(.9); transition:filter .45s;
}
.split-media img:hover, .split-media video:hover{ filter:saturate(1) brightness(1); }
/* the clip is a portrait phone video; favour the top of the frame where the motion is */
.split-media video{ object-position:center 32%; }
.split-media.split-grid{ grid-template-columns:1fr 1fr; }
.split-grid img{ aspect-ratio:1/1; object-fit:cover; }
.split-media.split-grid{ align-items:start; }

/* media on the left, text on the right */
.split-flip .split-text{ order:2; }
.split-flip .split-media{ order:1; }

@media (max-width:860px){
  .split{ grid-template-columns:1fr; gap:24px; }
  .split-flip .split-text{ order:1; }
  .split-flip .split-media{ order:2; }
}

/* ---------- trust the process ---------- */


/* a build sequence, scrolled left to right */



/* the home page leads with the services: they ride up over the lower part of
   the hero photo, translucent so the picture still reads underneath */
#services{
  position:relative; z-index:3;
  margin-top:calc(-1 * var(--svc-overlap));
  padding-top:clamp(34px,4vw,58px);
  background:rgba(3,20,40,.80);
  backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
}
