/* ============================
   EZ Maintenance Styles (Cobalt/Charcoal)
   ============================ */
   :root{
    --bg: #0c0f14;                       /* charcoal with blue hint */
    --surface: rgba(20,24,31,.6);        /* glassy overlay */
    --text: #e9edf3;                     /* off-white */
    --muted: #b3bdc9;                    /* cool gray */
    --brand: #4ea3ff;                    /* cobalt/azure (primary) */
    --brand-ink: #0a1b2e;                /* dark navy for text on brand */
    --accent: #f59e0b;                   /* warm amber accent for script */
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 16px;
    --container-pad: clamp(12px, 2.5vw, 24px);
  }
  
  *{box-sizing:border-box}
  html,body{height:100%}
  html, body { overflow-x: hidden; }
  html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--header-offset, 80px) + 8px); }
/* =========================
   Global Buttons (Gold + Black Outline on Hover)
   ========================= */

/* Theme tokens (tweak as needed) */
:root{
  --btn-gold: #ffd166;
  --btn-ink:  #2f2310;
}

/* Base: covers <button>, <a class="btn">, <input type="submit">, etc. */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.btn,
.btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  padding: .65rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;

  background: var(--btn-gold);
  color: var(--btn-ink);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;

  transition: border-color .15s ease, transform .08s ease;
  min-height: 40px; /* comfy target */
}

/* Hover: only add a black outline; keep gold fill */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
a.btn:hover,
.btn:hover {
  border-color: #000;           /* black outline */
}

/* Focus: accessible, clear ring */
button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
a.btn:focus-visible,
.btn:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Active: tiny press feedback */
button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
a.btn:active,
.btn:active {
  transform: translateY(1px);
}

/* Disabled */
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.btn[aria-disabled="true"],
a.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Size helpers (optional) */
.btn-sm,
a.btn.btn-sm {
  padding: .5rem .8rem;
  min-height: 36px;
  font-weight: 600;
}

.btn-lg,
a.btn.btn-lg {
  padding: .8rem 1.2rem;
  min-height: 46px;
  font-weight: 800;
}

/* Block (full width) */
.btn-block,
a.btn.btn-block {
  width: 100%;
}

/* Ghost variant (transparent by default; hover gets same black outline) */
.btn-ghost,
a.btn.btn-ghost {
  background: transparent;
  color: var(--btn-ink);
  border-color: transparent;
}
.btn-ghost:hover,
a.btn.btn-ghost:hover {
  border-color: #000;  /* black outline on hover */
}

/* Visible Secondary (light button with strong contrast) */
.btn-secondary,
a.btn.btn-secondary {
  background: #ffffff;
  color: #0b1219;
  border: 2px solid #000;     /* clearly visible at rest */
}
.btn-secondary:hover,
a.btn.btn-secondary:hover {
  /* keep it clean—no fill change, outline already visible via border */
  filter: brightness(1.02);
}


  body{
    margin:0;
    font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
    color:var(--text);
    background:#0b0f15; /* deeper charcoal */
    line-height:1.5;
  }
  
  img{max-width:100%;display:block;height:auto}
  a{color:inherit;text-decoration:none}
  .container{width:min(1200px,94%);margin-inline:auto;padding-inline:var(--container-pad)}
  .skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
  .skip-link:focus{left:1rem;top:1rem;width:auto;height:auto;background:#000;color:#fff;padding:.5rem .75rem;border-radius:.5rem;z-index:9999}
  
  /* ========= Header (light, compact, 150px logo without negative margins) ========= */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:40;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  color:#0b1219;
  backdrop-filter:saturate(120%) blur(8px);
  transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
  padding-top: env(safe-area-inset-top);
  overflow:visible; /* allow visual overhang of the logo */
}
.site-header.scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 6px 24px rgba(0,0,0,.08);
}

/* Compact row */
.nav-row{
  --navH: 82px;                 /* compact bar height */
  display:flex; align-items:center; gap:.6rem;
  padding:.2rem 0;
  min-height:var(--navH);
}

/* Brand: reserve width, keep height to nav height, absolutely place logo */
.brand{
  position:relative;
  display:flex; align-items:center;
  gap:.6rem;
  height:var(--navH);          /* keeps header compact */
  min-width:190px;             /* space so nav doesn’t collide with logo */
}

/* Logo: full 150px centered vertically; does not grow header */
.brand-logo{
  position:absolute; left:0; top:50%;
  transform:translateY(-50%);
  height:150px; width:auto; display:block;
}

/* Desktop nav tighter to fit beside the big logo */
.nav-desktop{ margin-left:auto; }
.nav-list{
  display:flex; gap:.85rem; list-style:none; padding:0; margin:0;
}
.nav-list a{
  font-size:1rem; line-height:1;
  color:#0e1620; opacity:.9;
  transition:opacity .15s ease, color .15s ease;
}
.nav-list a:hover{ opacity:1; color:#000; }

/* Desktop CTA (compact) */
.nav-cta{ margin-left:.5rem; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.44rem .75rem; border-radius:999px; border:1px solid transparent;
  font-weight:600; min-height:36px;
  transition:transform .12s ease, background .2s ease, border-color .2s ease, filter .2s ease;
}
.btn-cta{ background:#ffd166; color:#2f2310; }

/* Subtle divider under white header */
.site-header::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,0,0,.06), transparent);
}

/* ========================
   Mobile pill toggle (clean)
   ======================== */
#navToggle.hamburger{
  display:none !important;                 /* shown below ≤1024px */
  background:transparent !important;
  border:2px solid var(--cta, #ffd166);    /* yellow outline */
  border-radius:999px;
  min-height:42px; min-width:60px;
  padding:8px 14px;
  box-shadow:none !important;
  position:relative; z-index:65;
  line-height:0; cursor:pointer;
  -webkit-appearance:none; appearance:none;

  display:inline-flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
}
#navToggle.hamburger .bar{
  width:22px; height:2px;
  background:#0b1219;                      /* dark bars vs light header */
  border-radius:2px; opacity:1 !important; transform:none !important;
}
#navToggle.hamburger:hover{ background:rgba(255,209,102,.08) !important; }
#navToggle.hamburger:active{ transform:translateY(1px); }
#navToggle.hamburger:focus-visible{
  outline:3px solid rgba(255,209,102,.6); outline-offset:2px;
}
#navToggle[aria-expanded="true"] .bar{ transform:none !important; opacity:1 !important; }

/* ========================
   Drawer / Scrim
   ======================== */
.scrim{
  position:fixed; inset:0; background:rgba(0,0,0,.75); backdrop-filter:blur(2px);
  z-index:80; opacity:0; visibility:hidden; transition:opacity .2s ease;
}
.scrim.active{ opacity:1; visibility:visible; }

.drawer{
  position:fixed; top:0; right:0; left:0; width:100vw; height:auto; max-height:100vh; overflow-y:auto;
  background:#0a0f17 !important; color:var(--text, #e8eef6); z-index:90;
  transform:translateX(100%); transition:transform .25s ease;
  display:flex; flex-direction:column; padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open{ transform:translateX(0); }

/* Drawer header: sticky, readable, no logo */
.drawer-header{
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: max(1rem, env(safe-area-inset-top)) 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0a0f17; /* matches drawer bg for seamless stickiness */
  color: #fff;
}

/* Title styling */
.drawer-title{
  font-size: 1rem; font-weight: 700; letter-spacing: .01em;
  line-height: 1; user-select: none;
}

/* Close button: big target, clean focus, hover */
.icon-btn{
  background: transparent; border: 0; color: #fff; cursor: pointer;
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px; /* 44px min touch target */
  transition: background .15s ease, transform .12s ease;
}
.icon-btn:hover{ background: rgba(255,255,255,.08); }
.icon-btn:active{ transform: translateY(1px); }
.icon-btn:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255,209,102,.6); /* yellow focus ring to match brand CTA */
}

/* Slightly bolder “X” for legibility on dark bg */
.icon-btn--close span{ font-size: 1.15rem; line-height: 1; }

/* Keep footer logo nicely separated */
.drawer-footer{
  padding: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.drawer-footer .drawer-brand{
  display: grid; place-items: center; padding-top: .75rem; opacity: .9;
}
.drawer-footer .drawer-brand .brand-logo--drawer{ height: 40px; }

/* Motion sensitivity */
@media (prefers-reduced-motion: reduce){
  .icon-btn{ transition: none !important; }
}


/* Links stack and scroll if needed */
.drawer-body{
  display:flex; flex-direction:column; padding:1rem; gap:.25rem;
  background:transparent !important; flex:1 1 auto; /* pushes footer to bottom */
}
.drawer-link{ padding:.9rem 1rem; border-radius:.8rem; opacity:.95; color:#e8eef6; min-height:44px; }
.drawer-link:hover{ background:rgba(255,255,255,.08); opacity:1; }

/* Footer stays at bottom; contains CTA + small logo */
.drawer-footer{
  padding:1rem; border-top:1px solid rgba(255,255,255,.08);
}
.drawer-footer .drawer-brand{
  display:grid; place-items:center; padding-top:.75rem; opacity:.9;
}
.brand-logo--drawer{ height:40px; width:auto; display:block; }

/* ========================
   Responsive
   ======================== */
@media (max-width:1024px){
  #navToggle.hamburger{ display:inline-flex !important; }
  .nav-desktop{ display:none !important; }
  .nav-cta{ display:none !important; }
  .nav-row > #navToggle{ margin-left:auto; } /* push toggle to right on mobile */
}

@media (max-width:560px){
  .nav-row{ --navH: 54px; }
  .brand{ min-width:160px; }
  /* keep 150px; if it crowds, set 130–140px here instead */
  .brand-logo{ height:150px; }
}

/* Screen-reader helper */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
/* Slightly smaller logo on small phones */
@media (max-width: 560px){
  .brand-logo{
    height: 106px;      /* was 150px */
    max-height: 140px;  /* gentle cap */
  }
  .brand{ min-width: 150px; } /* keep nav from colliding */
}


/* ============================
   Services Hero — upgraded layout & mobile
   ============================ */

/* Section spacing to clear fixed header and breathe */
.services-hero{
  padding-top: clamp(6.25rem, 9vh, 8rem);
  padding-bottom: clamp(1.25rem, 3vh, 2rem);
}

/* Top row: big headline left, short blurb + CTA right */
.services-hero-head{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: start;
  margin-bottom: clamp(1rem, 2.4vw, 1.75rem);
}

/* Eyebrow like the reference: dot + arrow label */
.services-hero .eyebrow{
  display:inline-flex; align-items:center; gap:.6rem;
  font-weight: 800; font-size:.95rem; color: var(--brand);
  letter-spacing:.02em;
}
.services-hero .eyebrow::before{
  content:""; width:.6rem; height:.6rem; border-radius:999px;
  background: var(--brand);
}
.services-hero .eyebrow::after{
  content:"→"; opacity:.9; transform: translateY(1px);
}

/* Headline with accent underline and tighter rhythm */
.services-hero-copy h1{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin: .35rem 0 0;
  font-size: clamp(2.2rem, 1.1rem + 3.4vw, 3.6rem);
  color: var(--text);
  position: relative;
  padding-bottom: .55rem;
}
.services-hero-copy h1::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width: clamp(90px, 22%, 160px); height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(245,158,11,.95));
  opacity: .95;
}
.services-hero-copy .nowrap{ white-space: nowrap; }

/* Right column text width & CTA row */
.services-hero-aside{
  max-width: 46ch;
  justify-self: end;
}
.services-hero-aside p{
  margin: 0 0 1rem;
  color: var(--muted);
}

/* CTA row */
.services-hero-cta{
  display:flex; gap:.65rem; flex-wrap:wrap;
}

/* Primary button with small badge arrow */
.services-hero-cta .btn-primary{
  position: relative;
  padding-right: 2.6rem;                 /* room for badge */
}
.services-hero-cta .btn-primary::after{
  content: "↗";
  position: absolute; right:.45rem; top:50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.9);
  color: var(--brand-ink);
  font-weight: 800; font-size:.9rem;
  border: 1px solid rgba(0,0,0,.06);
}

/* Big feature image: subtle mask + rounded frame */
.services-hero-figure{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  background: #0b0f15;
  isolation: isolate;
}
.section.cream .services-hero-figure{
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.services-hero-figure img{
  width: 100%;
  height: min(66vh, 560px);
  min-height: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.005);
  transition: transform .5s ease, filter .35s ease;
}
.services-hero-figure::after{
  /* soft top-to-bottom gradient for legibility */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.22) 100%);
  pointer-events:none;
}
.services-hero-figure:hover img{ transform: scale(1.02); }

/* Optional: compact “service tags” row under image if you add it later */
.services-hero-tags{
  display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.75rem;
}
.services-hero-tags .chip{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  padding:.4rem .7rem; border-radius: 999px; font-weight:600; font-size:.85rem;
}
.section.cream .services-hero-tags .chip{
  background:#fff; border-color: rgba(0,0,0,.08); color:#1f2430;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1180px){
  .services-hero-head{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .95fr);
  }
}

@media (max-width: 1024px){
  .services-hero-head{
    grid-template-columns: 1fr;          /* stack headline + aside */
  }
  .services-hero-aside{ justify-self: start; max-width: 52ch; }
  .services-hero-figure img{ height: min(62vh, 540px); }
}

@media (max-width: 720px){
  .services-hero{
    padding-top: clamp(5.25rem, 12vh, 6.25rem);
  }
  .services-hero-copy h1{
    font-size: clamp(1.95rem, 1.05rem + 5.2vw, 2.35rem);
    padding-bottom: .5rem;
  }
  .services-hero-copy h1::after{
    width: clamp(80px, 36%, 120px);
  }
  /* Make image taller & more immersive on phones */
  .services-hero-figure img{
    aspect-ratio: 4 / 3;
    height: auto;             /* let aspect-ratio drive height */
    min-height: 300px;
    object-position: center 45%;  /* nudge focal point up a touch */
  }
  .services-hero-aside p{ font-size: .98rem; }
  .services-hero-cta .btn{ width: 100%; justify-content: center; } /* full-width CTAs for thumbs */
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .services-hero-figure img{ transition: none; transform: none; }
}

/* ============================
   Services Blocks
   ============================ */

   .services-blocks .svc-grid{
    display: grid;
    gap: clamp(1.25rem, 2.6vw, 1.75rem);
  }
  
  .svc-row{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(1rem, 2.4vw, 1.5rem);
    padding: clamp(.75rem, 1.2vw, 1rem);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
  }
  
  /* flip layout on alternating rows */
  .svc-row.flip{ grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
  .svc-row.flip .svc-copy{ order: 2; }
  .svc-row.flip .svc-figure{ order: 1; }
  
  /* copy */
  .svc-copy h3{
    font-size: clamp(1.15rem, .9rem + .9vw, 1.5rem);
    margin: .25rem 0 .35rem;
    letter-spacing: -.01em;
  }
  .svc-blurb{ color: var(--muted); margin: 0 0 .6rem; }
  .svc-list{
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: .35rem;
  }
  .svc-list li{
    position: relative;
    padding-left: 1.35rem;
  }
  .svc-list li::before{
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--brand);
    font-weight: 800;
  }
  
  /* image figure with decorative rounded squares (like your ref) */
  .svc-figure{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    background: #0a0f17;
  }
  .section.cream .svc-row{ border-color: rgba(0,0,0,.08); }
  .section.cream .svc-figure{ border-color: rgba(0,0,0,.08); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
  
  .svc-figure img{
    width: 100%;
    height: min(40vh, 360px);
    min-height: 220px;
    object-fit: cover;
    display: block;
  }
  
  /* decorative squares */
  .decor .decor-sq{
    position: absolute;
    border: 3px solid rgba(78,163,255,.85); /* brand cobalt */
    border-radius: 14px;
    width: clamp(90px, 22%, 150px);
    height: clamp(70px, 18%, 110px);
    pointer-events: none;
  }
  .decor .decor-sq.d1{ right: 6%; top: 8%; }
  .decor .decor-sq.d2{ right: 18%; bottom: 10%; }
  
  /* not listed note */
  .svc-note{
    margin-top: clamp(1rem, 2.4vw, 1.5rem);
    border-radius: 16px;
    padding: clamp(.9rem, 2.2vw, 1.15rem);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
  }
  .section.cream .svc-note{ background: #fff; border-color: rgba(0,0,0,.08); }
  .svc-note p{ margin: 0 0 .75rem; color: var(--text); }
  .section.cream .svc-note p{ color: #1f2430; }
  .svc-note-cta{ display: flex; gap: .6rem; flex-wrap: wrap; }
  
  /* Responsive */
  @media (max-width: 1024px){
    .svc-row,
    .svc-row.flip{
      grid-template-columns: 1fr;
    }
    .svc-row.flip .svc-copy{ order: 1; }
    .svc-row.flip .svc-figure{ order: 2; }
    .svc-figure img{ height: auto; aspect-ratio: 4 / 3; }
  }
  
  @media (max-width: 720px){
    .svc-row{
      padding: .75rem;
      border-radius: 14px;
    }
    .svc-figure{
      margin-top: .25rem;
      border-radius: 14px;
    }
  }
  /* --- Fix Services Hero overflow on iPhone (and small phones) --- */

/* Let grid children shrink instead of overflowing */
.services-hero-copy,
.services-hero-aside { min-width: 0; }

/* Allow wrapping + better line breaks */
.services-hero-copy h1{
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance; /* safe to ignore if not supported */
}

/* Kill any forced nowrap on small screens */
@media (max-width: 480px){
  .services-hero-copy .nowrap{ white-space: normal !important; }
}

/* Tighter, phone-safe headline sizing and underline */
@media (max-width: 430px){
  .services-hero-copy h1{
    font-size: clamp(1.7rem, 5.6vw + .5rem, 2.15rem);
    line-height: 1.12;
  }
  .services-hero-copy h1::after{
    /* keep underline inside the viewport */
    width: min(44%, 110px);
  }
}

/* Extra guard for very narrow devices */
@media (max-width: 360px){
  .services-hero-copy h1{
    font-size: clamp(1.55rem, 5.2vw + .45rem, 1.95rem);
  }
  .services-hero-copy h1::after{ width: min(46%, 96px); }
}

/* CTA buttons: prevent the badge from causing overflow */
.services-hero-cta .btn-primary{
  max-width: 100%;
  white-space: normal;
}
/* === Services hero as a full-bleed banner on mobile === */
@media (max-width: 720px){
  /* tighten spacing so the banner visually separates sections */
  .services-hero{ padding-bottom: 0; }

  .services-hero-figure{
    position: relative;
    /* true full-bleed even inside a padded .container */
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;

    /* feel like its own section */
    border-radius: 0;
    overflow: hidden;
  }

  .services-hero-figure img{
    width: 100%;
    height: clamp(360px, 70vh, 640px);   /* tall, immersive */
    aspect-ratio: auto;                  /* let height rule */
    object-fit: cover;
    object-position: center;
    transform: none;                     /* avoid side crop */
  }

  /* soft top fade */
  .services-hero-figure::before{
    content:"";
    position:absolute; inset:0 auto auto 0; right:0; height:42px;
    background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,0));
    pointer-events:none;
  }

  /* bottom fade + subtle divider hairline */
  .services-hero-figure::after{
    content:"";
    position:absolute; inset:auto 0 0 0; height:46px;
    background: linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,0));
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08); /* hairline */
    pointer-events:none;
  }
}

/* === Optional: make the banner full-bleed on tablets too === */
@media (min-width: 721px) and (max-width: 1024px){
  .services-hero-figure{
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    border-radius: 0;
    overflow: hidden;
  }
  .services-hero-figure img{
    height: clamp(420px, 58vh, 700px);
    aspect-ratio: auto;
    object-fit: cover;
  }
}
/* Services row reveal */
.svc-row.is-prerender{
  opacity:.001;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.svc-row.is-in{
  opacity:1;
  transform:none;
}
