/* --------------------------------------------------------------- fonts --
   Self-hosted variable WOFF2, latin subset. Replaces two render-blocking
   round-trips to fonts.googleapis.com + fonts.gstatic.com with two files
   served from our own origin. One file covers each family's whole weight
   range, so this is 2 requests where the CDN needed 6.                     */
@font-face {
  font-family: Archivo;
  src: url("../fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/plex-sans-var-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   Wildcat Pressure Washing & Services — Oklahoma City
   Palette is pulled from the logo: cyan linework (#06B3FF) and the near-black
   navy of the badge. The logo's electric indigo (#3633CA) is loud on its own,
   so it only ever appears inside a gradient next to the cyan, never as a field.
   ========================================================================== */

:root {
  /* --- dark surfaces (header, hero, CTA bands, footer) --- */
  --ink:        #070b12;
  --ink-2:      #0c1320;
  --ink-3:      #131d2e;
  --hairline:   rgba(255, 255, 255, .10);
  --hairline-2: rgba(255, 255, 255, .06);

  /* --- brand --- */
  --cyan:       #06b3ff;
  --cyan-hover: #35c4ff;
  --cyan-ink:   #06618a;  /* cyan dark enough to be readable on white */
  --indigo:     #3633ca;  /* gradient partner only */

  /* --- light surfaces --- */
  --paper:      #ffffff;
  --paper-2:    #f4f6f9;
  --paper-3:    #e8ecf2;

  /* --- text --- */
  --heading:    #0e1726;
  --body:       #47576e;
  --body-dark:  #9db0c9;  /* body copy on dark surfaces */

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(14, 23, 38, .05), 0 12px 28px -12px rgba(14, 23, 38, .16);
  --shadow-lg:  0 2px 4px rgba(14, 23, 38, .06), 0 28px 56px -20px rgba(14, 23, 38, .26);

  --wrap:       1160px;
  --gutter:     clamp(1.15rem, 4vw, 2.5rem);
  --section:    clamp(4rem, 9vw, 7rem);

  --ease:       cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  scroll-padding-top: 6rem; /* clears the sticky header on anchor jumps */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -.021em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--cyan-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--heading); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 200; background: var(--cyan); color: var(--ink);
  padding: .7rem 1.3rem; font-weight: 700; border-radius: 0 0 10px 10px;
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--paper { background: var(--paper-2); }
.section--dark  { background: var(--ink); color: var(--body-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.09rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: Archivo, sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--cyan-ink); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}
.section--dark .eyebrow { color: var(--cyan); }

.lede { font-size: clamp(1.06rem, 1.6vw, 1.2rem); }

/* ------------------------------------------------------------ buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: Archivo, sans-serif; font-weight: 700; font-size: 1rem;
  padding: .95rem 1.6rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary {
  background: var(--cyan); color: var(--ink);
  box-shadow: 0 6px 18px -10px rgba(6, 179, 255, .5);
}
.btn--primary:hover { background: var(--cyan-hover); color: var(--ink); box-shadow: 0 10px 22px -10px rgba(6, 179, 255, .65); }

.btn--ghost { border-color: var(--paper-3); color: var(--heading); background: var(--paper); }
.btn--ghost:hover { border-color: var(--heading); color: var(--heading); }

.btn--outline { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, .07); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ------------------------------------------------------------- header -- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 11, 18, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-2);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck { background: rgba(7, 11, 18, .96); box-shadow: 0 12px 30px -20px #000; }

.header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  /* wrap is REQUIRED: the mobile nav uses flex-basis:100% to drop onto its own
     row. Without it the nav stays on the header line, squashes the brand and
     renders as a tall column beside the toggle. */
  flex-wrap: wrap;
  min-height: 74px; padding-block: .6rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: auto; }
.brand__name {
  font-family: Archivo, sans-serif; font-weight: 800; font-size: 1.03rem;
  color: #fff; line-height: 1.1; letter-spacing: -.02em;
}
.brand__tag {
  display: block; font-family: "IBM Plex Sans", sans-serif;
  font-size: .68rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-top: .18rem;
  white-space: nowrap; /* must never wrap — it doubles the header height */
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  position: relative; padding: .55rem .8rem; border-radius: 7px;
  font-size: .95rem; font-weight: 500; color: #cfdcec; text-decoration: none;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .18rem;
  height: 2px; background: var(--cyan); border-radius: 2px;
}
/* the in-menu CTA exists for the collapsed mobile nav only */
.nav > .btn { display: none; }
.nav > .btn[aria-current="page"]::after { display: none; }

.header__cta { display: flex; align-items: center; gap: .7rem; }
.header__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: Archivo, sans-serif; font-weight: 700; color: #fff; text-decoration: none;
  font-size: .98rem; padding: .5rem .2rem;
  white-space: nowrap; /* never let the number break across lines */
}
.header__phone svg { width: 17px; height: 17px; color: var(--cyan); }
.header__phone:hover { color: var(--cyan); }
.header__cta .btn { padding: .72rem 1.15rem; font-size: .94rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--hairline);
  border-radius: 9px; padding: .55rem .65rem; color: #fff; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: block; order: 3; }
  .header__cta .btn { display: none; }
  .nav {
    order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav.is-open { max-height: 24rem; padding-block: .5rem 1rem; }
  .nav a { padding: .85rem .3rem; border-bottom: 1px solid var(--hairline-2); border-radius: 0; }
  .nav a[aria-current="page"]::after { left: .3rem; right: auto; width: 22px; bottom: .45rem; }
  .nav .btn { margin-top: .9rem; display: inline-flex; }
}
@media (max-width: 560px) {
  .header__phone span { display: none; }
  .brand__name { font-size: .95rem; }
}
@media (max-width: 430px) {
  .brand img { width: 36px; }
  .brand__name { font-size: .88rem; }
  .brand__tag { font-size: .6rem; letter-spacing: .1em; }
}

/* --------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--body-dark);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 8vw, 6.5rem);
}
/* the one place the logo's indigo is allowed out, blurred behind the cyan */
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto auto;
  width: min(760px, 90vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(6, 179, 255, .22), rgba(54, 51, 202, .16) 45%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: auto auto -45% -20%;
  width: min(560px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(54, 51, 202, .20), transparent 66%);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }

/* --- photo hero -------------------------------------------------------- */
/* Base .hero (no photo) is still used by thanks.html, so the photo
   treatment is a modifier rather than a change to the base. */
.hero--photo::before, .hero--photo::after { display: none; }
.hero--photo { padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(4.5rem, 10vw, 7.5rem); }

.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 68% 62%;
}
/* Scrim holds >=.90 opacity across the copy column so text contrast never
   depends on what happens to sit behind it, then falls away fast on the right
   so the photograph is actually legible. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(6, 179, 255, .14), transparent 70%),
    /* horizontal: opaque under the copy, clears off to reveal the worker */
    linear-gradient(95deg, rgba(7, 11, 18, .95) 0%, rgba(7, 11, 18, .92) 44%,
                    rgba(7, 11, 18, .74) 58%, rgba(7, 11, 18, .34) 80%,
                    rgba(7, 11, 18, .20) 100%),
    /* vertical: settles the photo under the header and into the trust strip */
    linear-gradient(180deg, rgba(7, 11, 18, .20) 0%, rgba(7, 11, 18, .06) 42%,
                    rgba(7, 11, 18, .26) 100%);
}
.hero--photo .hero__copy { max-width: 40rem; }
/* Held inside the opaque part of the scrim so contrast never depends on the
   photo, and lifted off --body-dark for extra headroom. */
.hero--photo .hero__lede { color: #c6d5e8; max-width: 34rem; }

@media (max-width: 900px) {
  /* Biased low and right so the narrow crop lands on the worker and the slab
     rather than a slice of empty sky. */
  .hero__bg { object-position: 64% 68%; }
  .hero__scrim {
    background:
      radial-gradient(70% 40% at 70% 4%, rgba(6, 179, 255, .12), transparent 70%),
      linear-gradient(180deg, rgba(7, 11, 18, .88) 0%, rgba(7, 11, 18, .80) 30%,
                      rgba(7, 11, 18, .72) 62%, rgba(7, 11, 18, .82) 100%);
  }
  .hero--photo .hero__lede { max-width: none; }
}

@media (max-width: 900px) {  }

.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero__lede { font-size: clamp(1.08rem, 1.8vw, 1.28rem); max-width: 52ch; margin-bottom: 2rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--hairline);
  border-radius: 999px; padding: .42rem 1rem .42rem .55rem;
  font-size: .85rem; font-weight: 600; color: #dce7f4; margin-bottom: 1.6rem;
}
.hero__badge svg { width: 18px; height: 18px; color: var(--cyan); }

.hero__points {
  list-style: none; margin: 2.25rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
}
.hero__points li { display: flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 500; }
.hero__points svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

@media (max-width: 900px) {
    }

/* trust strip under the hero */
.trust {
  background: var(--ink-2); border-block: 1px solid var(--hairline-2);
  color: var(--body-dark);
}
.trust ul {
  list-style: none; margin: 0; padding-block: 1.4rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem 1.5rem;
}
.trust li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: #cfdcec; }
.trust svg { width: 19px; height: 19px; color: var(--cyan); flex: none; }
@media (max-width: 420px) { .trust ul { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- services -- */
.cards { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.card {
  position: relative; background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--radius); padding: 1.65rem 1.5rem 1.55rem;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
/* hairline that lights up cyan on hover — the only hover flourish */
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
/* Only link-cards get the lift — a hover affordance on a non-clickable card
   promises an interaction that isn't there. */
a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover, a.card:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
a.card:hover::before, a.card:focus-visible::before { transform: scaleX(1); }
a.card:hover h3 { color: var(--cyan-ink); }

.card__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.1rem;
  border-radius: 11px; background: rgba(6, 179, 255, .1); color: var(--cyan-ink);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .97rem; }

.card--dark { background: var(--ink-2); border-color: var(--hairline); }
.card--dark p { color: var(--body-dark); }
.card--dark .card__icon { background: rgba(6, 179, 255, .13); color: var(--cyan); }
.card--dark:hover { border-color: var(--hairline); }

/* add-on pills */
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pills li {
  display: flex; align-items: center; gap: .5rem;
  background: var(--paper); border: 1px solid var(--paper-3); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .93rem; font-weight: 500;
}
.pills svg { width: 15px; height: 15px; color: var(--cyan-ink); }
.section--dark .pills li { background: rgba(255, 255, 255, .05); border-color: var(--hairline); color: #dce7f4; }
.section--dark .pills svg { color: var(--cyan); }

/* --------------------------------------------------------- split rows -- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split--top { align-items: start; }
/* form-led split: wider first column, collapsed on small screens */
.split--lead { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); }
@media (max-width: 900px) { .split--lead { grid-template-columns: 1fr; } }

.panel {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.section--dark .panel { background: var(--ink-2); border-color: var(--hairline); box-shadow: none; }

/* A light panel sitting on a dark section has to opt back out of the dark
   section's text colours, or you get white type on a white card. */
.section--dark .panel--light {
  background: var(--paper); border-color: var(--paper-3);
  box-shadow: var(--shadow-lg); color: var(--body);
}
.section--dark .panel--light h2,
.section--dark .panel--light h3,
.section--dark .panel--light h4,
.section--dark .panel--light legend { color: var(--heading); }
.section--dark .panel--light p { color: var(--body); }
.section--dark .panel--light a { color: var(--cyan-ink); }
.section--dark .panel--light a:hover { color: var(--heading); }

/* ------------------------------------------------------------ process -- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.steps li { position: relative; padding-top: 1.9rem; }
.steps li::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 46px; height: 3px; border-radius: 2px; background: var(--cyan);
}
.steps h3 { margin-bottom: .4em; }
.steps p { font-size: .97rem; }
.section--dark .steps p { color: var(--body-dark); }

/* ------------------------------------------------------- before/after -- */
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--paper-3); background: var(--paper-2);
  aspect-ratio: 4 / 3; touch-action: pan-y;
}
.ba__layer { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; }
.ba__layer--after { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__tag {
  position: absolute; top: .8rem; padding: .32rem .8rem; border-radius: 999px;
  font-family: Archivo, sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(7, 11, 18, .78); color: #fff; backdrop-filter: blur(4px);
}
.ba__tag--before { right: .8rem; }
.ba__tag--after  { left: .8rem; background: var(--cyan); color: var(--ink); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(7, 11, 18, .18);
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px; transform: translate(-50%, -50%);
  border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230e1726' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.ba__range:focus-visible + .ba__handle::after { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* --- photography ------------------------------------------------------- */
/* A framed photo inside a split row or a card. */
.shot {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--paper-3); background: var(--paper-2);
}
.section--dark .shot { border-color: var(--hairline); background: var(--ink-2); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shot figcaption {
  padding: .8rem 1.05rem; font-size: .87rem; color: var(--body);
  border-top: 1px solid var(--paper-3);
}
.section--dark .shot figcaption { color: var(--body-dark); border-top-color: var(--hairline); }

/* Service card with a photo instead of an icon. */
.card--photo { padding: 0; }
.card--photo > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card--photo .card__body { padding: 1.5rem; }
.card--photo .card__body h3 { margin-bottom: .45em; }

.gallery { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.gallery figure {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--paper-3);
}
.section--dark .gallery figure { border-color: var(--hairline); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: .65rem; bottom: .65rem;
  padding: .3rem .75rem; border-radius: 999px;
  font-family: Archivo, sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; color: #fff;
  background: rgba(7, 11, 18, .8); backdrop-filter: blur(4px);
}

.note {
  display: flex; gap: .75rem; align-items: flex-start;
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem; font-size: .95rem; margin-top: 1.5rem;
}
.note svg { width: 19px; height: 19px; color: var(--cyan-ink); flex: none; margin-top: .18rem; }

/* -------------------------------------------------------- service area -- */
.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.areas li {
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: .55rem 1rem; font-size: .93rem; font-weight: 500; color: #dce7f4;
  background: rgba(255, 255, 255, .04);
}

/* ------------------------------------------------------------ faq --- */
.faq { border-top: 1px solid var(--paper-3); }
.faq details { border-bottom: 1px solid var(--paper-3); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.3rem 0; cursor: pointer; list-style: none;
  font-family: Archivo, sans-serif; font-weight: 700; font-size: 1.08rem;
  color: var(--heading); transition: color .16s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cyan-ink); }
.faq summary::after {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: .18rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306618a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div { padding-bottom: 1.4rem; max-width: 72ch; }

/* ----------------------------------------------------------- cta band -- */
.cta-band {
  position: relative; overflow: hidden;
  background-color: var(--ink); /* solid fallback under the gradient */
  background-image: linear-gradient(115deg, var(--ink) 30%, #16205c 78%, var(--indigo) 130%);
  color: #c6d5e8; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: -60% -20% auto auto; width: min(700px, 90vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(6, 179, 255, .26), transparent 65%);
}
.cta-band > .wrap { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 56ch; margin-inline: auto; font-size: 1.09rem; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* --------------------------------------------------------------- form -- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .42rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--heading); }
.field .hint { font-size: .84rem; color: var(--body); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem;
  background: var(--paper); border: 1px solid var(--paper-3); border-radius: var(--radius-sm);
  color: var(--heading); font-size: 1rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7b8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6, 179, 255, .18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.checks { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: .1rem; }
.check { display: flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 500; cursor: pointer; }
.check input { width: 1.15rem; height: 1.15rem; accent-color: var(--cyan-ink); flex: none; }

.form__foot { font-size: .87rem; color: var(--body); }
.form .btn { width: 100%; }
@media (min-width: 560px) { .form .btn { width: auto; justify-self: start; } }

/* honeypot — out of view for humans, still in the DOM for naive bots.
   Clipped rather than pushed off-canvas so it can't create a scrollbar. */
.hp {
  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;
}

/* Sets expectation before the button: this opens their mail app. */
.form__hint {
  display: flex; gap: .6rem; align-items: flex-start;
  margin: 0; padding: .8rem 1rem;
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--body);
}
.form__hint svg { width: 17px; height: 17px; flex: none; margin-top: .2rem; color: var(--cyan-ink); }

.form__status:empty { display: none; }
.form__status { font-size: .95rem; font-weight: 600; line-height: 1.5; }
.form__status[data-state="error"] { color: #a81f1b; }
.form__status[data-state="sending"] { color: var(--cyan-ink); }
.form__status[data-state="sent"] {
  color: var(--heading); font-weight: 500;
  padding: .9rem 1.05rem; border-radius: var(--radius-sm);
  background: rgba(6, 179, 255, .09);
}
.form__status[data-state="sent"] strong { color: var(--cyan-ink); }

/* contact detail list */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.contact-list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-list .ico {
  display: grid; place-items: center; flex: none; width: 42px; height: 42px;
  border-radius: 11px; background: rgba(6, 179, 255, .12); color: var(--cyan);
}
.contact-list .ico svg { width: 21px; height: 21px; }
.contact-list dt, .contact-list strong {
  display: block; font-family: Archivo, sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .2rem;
}
.contact-list div { min-width: 0; }
.contact-list a {
  color: #fff; font-size: 1.06rem; font-weight: 600; text-decoration: none;
  overflow-wrap: anywhere; /* the gmail address is one long token */
}
.contact-list a:hover { color: var(--cyan); text-decoration: underline; }
.contact-list span { color: var(--body-dark); }

/* ------------------------------------------------------------- footer -- */
.footer { background: var(--ink); color: var(--body-dark); border-top: 1px solid var(--hairline-2); }
.footer__grid {
  display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.25rem) 2.25rem;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h4 {
  color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--body-dark); text-decoration: none; font-size: .95rem; }
.footer a:hover { color: var(--cyan); }
.footer__brand img { width: 66px; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }

.footer__bar {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline-2); padding-block: 1.4rem; font-size: .87rem;
}
.social { display: flex; gap: .55rem; }
.social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid var(--hairline); border-radius: 10px; color: #cfdcec;
  transition: border-color .16s var(--ease), color .16s var(--ease), background-color .16s var(--ease);
}
.social a:hover { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.social svg { width: 19px; height: 19px; }

/* --------------------------------------------- mobile sticky call bar -- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(7, 11, 18, .95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
}
.callbar .btn { flex: 1; padding: .85rem 1rem; font-size: .97rem; }
@media (max-width: 720px) {
  .callbar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

/* --------------------------------------------------------- page intro -- */
.pagehead {
  background: var(--ink); color: var(--body-dark);
  padding-block: clamp(3rem, 6vw, 4.75rem);
  position: relative; overflow: hidden;
}
.pagehead::before {
  content: ""; position: absolute; inset: -50% -10% auto auto; width: min(560px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(6, 179, 255, .17), transparent 66%);
}
.pagehead > .wrap { position: relative; }
.pagehead h1 { color: #fff; }
.pagehead p { max-width: 58ch; font-size: 1.09rem; }

.crumbs { font-size: .87rem; margin-bottom: 1.1rem; color: #7f92ab; }
.crumbs a { color: #7f92ab; text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }
.crumbs span { margin-inline: .45rem; }

/* --------------------------------------------------- scroll reveal --- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  a.card:hover { transform: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .header, .callbar, .cta-band, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; }
}
