/* Trident Plumbing Service - Corsicana, Texas
   Preview build by NH Media Web. Self-hosted type, no external requests. */

/* ------------------------------------------------------------------ fonts */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/barlow-condensed-600-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/barlow-condensed-700-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(fonts/public-sans-latin-var.woff2) format('woff2');
}

/* ----------------------------------------------------------------- tokens */
:root {
  --navy: #0D1B2A;
  --navy-2: #091624;
  --navy-3: #050E18;
  --cream: #F5F3EF;
  --cream-2: #EBE7E0;
  --ink: #101F2E;
  --ink-soft: #3E4E5C;
  --orange: #F4821F;
  --orange-ink: #9A4E06;
  --steel: #93AEC4;
  --steel-dim: #7C97AD;
  --line-d: rgba(147, 174, 196, .22);
  --line-l: rgba(16, 31, 46, .16);
  --mute-l: #56646F;   /* muted small text on cream, AA at 12.5px */

  --disp: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --shell: 1220px;
  --pad: clamp(20px, 5vw, 56px);
}

/* ------------------------------------------------------------------- base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--disp);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .002em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 90;
  background: var(--orange); color: #0B1723; font-family: var(--disp);
  font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 10px 18px; border-radius: 4px; text-decoration: none;
  transition: top .16s ease;
}
.skip:focus { top: 12px; }
.skip:focus-visible {
  outline: 3px solid var(--cream); outline-offset: 3px;
  box-shadow: 0 0 0 3px #0B1723;
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.dark :focus-visible { outline-color: var(--orange); }

/* ------------------------------------------------------- shared type bits */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: .19em;
  color: var(--orange-ink); margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; background: var(--orange); flex: none;
}
.dark .eyebrow, .hero .eyebrow { color: var(--orange); }

.h-xl { font-size: clamp(42px, 7.4vw, 74px); }
.h-lg { font-size: clamp(34px, 4.6vw, 53px); }
.h-md { font-size: clamp(26px, 3vw, 34px); }
.h-sm { font-size: 23px; }

.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.62; color: var(--ink-soft); }
.dark .lede { color: var(--steel); }

.sec { padding: clamp(66px, 8vw, 108px) 0; position: relative; }

.dark {
  background: var(--navy); color: var(--cream);
  background-image: radial-gradient(rgba(147, 174, 196, .085) 1px, transparent 1px);
  background-size: 22px 22px;
}
.dark-2 { background-color: var(--navy-2); }
.dark-3 { background-color: var(--navy-3); }
.tint { background: var(--cream-2); }

.sec-head { max-width: 760px; margin-bottom: clamp(34px, 4vw, 54px); }

/* the trident rule: three tines over a bar, the page's recurring ornament */
.tines { display: block; position: relative; width: 62px; height: 25px; margin: 0 0 22px; }
.tines i { position: absolute; bottom: 3px; width: 3px; background: var(--orange); }
.tines i:nth-child(1) { left: 0; height: 13px; }
.tines i:nth-child(2) { left: 29.5px; height: 22px; }
.tines i:nth-child(3) { right: 0; height: 13px; }
.tines b { position: absolute; left: 0; bottom: 0; width: 62px; height: 3px; background: var(--orange); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-block; font-family: var(--disp); font-weight: 700;
  font-size: 21px; line-height: 1; text-transform: uppercase; letter-spacing: .05em;
  padding: 17px 28px 15px; border-radius: 3px; text-decoration: none;
  border: 2px solid transparent; transition: background-color .18s ease, color .18s ease,
    border-color .18s ease, transform .18s ease;
}
.btn-solid { background: var(--orange); color: #0B1723; border-color: var(--orange); }
.btn-solid:hover { background: #FF9433; border-color: #FF9433; }
.btn-ghost { border-color: rgba(147, 174, 196, .5); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245, 243, 239, .08); }
.btn-ink { border-color: var(--ink); color: var(--ink); }
.btn-ink:hover { background: var(--ink); color: var(--cream); }
.btn-lg { font-size: 24px; padding: 19px 32px 17px; }

/* ------------------------------------------------------- preview furniture */
.pbar { background: var(--navy-3); color: var(--steel); border-bottom: 3px solid var(--orange); }
.pbar-in {
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center;
  justify-content: space-between; padding-top: 14px; padding-bottom: 14px;
}
.pbar-txt { margin: 0; font-size: 15px; line-height: 1.5; max-width: 62ch; }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.pbar-btn {
  display: inline-block; font-family: var(--disp); font-weight: 700; font-size: 17px;
  line-height: 1; text-transform: uppercase; letter-spacing: .06em;
  background: var(--orange); color: #0B1723; padding: 12px 20px 10px;
  border-radius: 3px; text-decoration: none; border: 2px solid var(--orange);
}
.pbar-btn:hover { background: #FF9433; border-color: #FF9433; }
.pbar-mail { color: var(--steel); font-size: 15px; text-decoration: underline; }

.slot {
  border: 2px dashed rgba(244, 130, 31, .6);
  background: rgba(244, 130, 31, .055);
  border-radius: 5px; padding: 26px 26px 24px;
}
.dark .slot { background: rgba(244, 130, 31, .075); }
.slot-k {
  display: inline-block; font-family: var(--disp); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: .14em; color: var(--orange-ink);
  margin-bottom: 12px;
}
.dark .slot-k { color: var(--orange); }
.slot p { font-size: 16.5px; line-height: 1.66; }
.slot-tok {
  font-family: var(--disp); font-weight: 700; font-size: 26px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 14px;
}
.dark .slot-tok { color: var(--cream); }

/* -------------------------------------------------------------- masthead */
.mast { background: var(--navy-3); color: var(--cream); }
.mast-in {
  display: flex; align-items: center; gap: 20px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-mark { width: 50px; height: 50px; flex: none; }
.brand-name {
  display: block; font-family: var(--disp); font-weight: 700; font-size: 27px;
  line-height: 1; letter-spacing: .01em; text-transform: uppercase;
}
.brand-sub {
  display: block; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--steel-dim); margin-top: 5px;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--disp); font-weight: 600; font-size: 19px; text-transform: uppercase;
  letter-spacing: .08em; text-decoration: none; color: var(--cream); padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--orange); }
.nav .btn { font-size: 18px; padding: 13px 20px 11px; border-bottom: 0; }
.nav a.btn-solid { color: #0B1723; }
.nav .btn:hover { border-bottom-color: var(--orange); }
.burger {
  display: none; margin-left: auto; background: none; border: 2px solid rgba(147,174,196,.45);
  border-radius: 3px; padding: 10px 12px; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; background: var(--navy-3); color: var(--cream); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url(assets/img/stock-tap-running.jpg);
  background-size: cover; background-position: 62% 42%;
  background-color: #0A1520;
  transform: scale(1.06);
  animation: drift 30s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(103deg, rgba(5, 14, 24, .95) 0%, rgba(5, 14, 24, .88) 38%,
    rgba(5, 14, 24, .55) 66%, rgba(5, 14, 24, .34) 100%);
}
@keyframes drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.13) translate3d(-1.6%, -1.2%, 0); }
}
.hero-in {
  position: relative; z-index: 2;
  padding-top: clamp(72px, 10vw, 132px); padding-bottom: clamp(38px, 5vw, 62px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 44px; align-items: end; }
.hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(0, 0, 0, .45); }
.hero .lede { margin-top: 24px; max-width: 40ch; color: #D6DFE8; }
.hero-acts { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  background: rgba(6, 16, 26, .74);
  border: 1px solid rgba(147, 174, 196, .3);
  border-left: 4px solid var(--orange);
  border-radius: 4px; padding: 24px 26px;
}
.hero-card p.hero-num {
  font-family: var(--disp); font-weight: 700; font-size: 62px; line-height: .86;
  color: #fff; margin: 0 0 8px;
}
.hero-card p { font-size: 15.5px; line-height: 1.5; color: var(--steel); margin: 0; }
.hero-card .src { display: block; margin-top: 9px; font-size: 13px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--steel-dim); }

/* the credit strip: a solid band, so small caption type never sits on lit photo pixels */
.hero-capbar {
  position: relative; z-index: 2; background: rgba(4, 11, 19, .88);
  border-top: 1px solid rgba(147, 174, 196, .16);
}
.hero-cap {
  padding-top: 13px; padding-bottom: 14px;
  font-size: 12.5px; line-height: 1.55; color: #B9C7D3;
}

/* ------------------------------------------------------------- trio band */
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.trio > div {
  background: var(--navy); padding: clamp(30px, 3.4vw, 46px) clamp(22px, 2.6vw, 38px);
  border-top: 3px solid var(--orange);
}
.trio h3 {
  font-size: 30px; color: var(--cream); margin-bottom: 10px; text-transform: uppercase;
  letter-spacing: .012em;
}
.trio p { color: var(--steel); font-size: 16.5px; line-height: 1.62; margin: 0; }
.trio-n {
  font-family: var(--disp); font-weight: 700; font-size: 14px; letter-spacing: .2em;
  color: var(--orange); display: block; margin-bottom: 14px;
}

/* --------------------------------------------------------------- services */
.svc-grid {
  display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 30px); align-items: stretch;
}
.svc-col { display: grid; gap: clamp(20px, 2.4vw, 30px); align-content: start; }
.svc {
  background: #fff; border: 1px solid var(--line-l); border-radius: 5px;
  padding: 30px 30px 28px; box-shadow: 0 1px 0 rgba(16, 31, 46, .04);
}
.svc h3 { font-size: 30px; margin-bottom: 12px; text-transform: uppercase; }
.svc p { font-size: 17px; line-height: 1.68; color: var(--ink-soft); }
.svc-feat { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.svc-feat img { width: 100%; height: clamp(200px, 24vw, 300px); object-fit: cover; background: #DDE5EA; }
.svc-body { padding: 28px 30px 26px; }
.svc-body h3 { font-size: clamp(32px, 3.2vw, 40px); }
.cap {
  font-size: 12.5px; line-height: 1.55; color: var(--mute-l); padding: 10px 30px 0; margin: 0;
}
.cap-note { color: var(--mute-l); }
.hero-cap .cap-note { color: inherit; }
/* the slot card sits inside the services grid and must read as a slot, not a card */
.svc.slot {
  background: rgba(244, 130, 31, .055); border: 2px dashed rgba(244, 130, 31, .6);
  box-shadow: none; padding: 26px 26px 24px;
}
.svc.slot h3 { margin-bottom: 0; }

/* --------------------------------------------------------------- process */
.proc-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 4vw, 64px); align-items: center;
}
.proc-photo { border-radius: 5px; overflow: hidden; border: 1px solid rgba(147,174,196,.25); }
.proc-photo img { width: 100%; height: 100%; object-fit: cover; background: #2A3742; }
.steps { display: grid; gap: 30px; }
.step {
  display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 20px; align-items: start;
  border-top: 1px dashed rgba(147, 174, 196, .28); padding-top: 26px;
}
.step:first-child { border-top: 0; padding-top: 0; }
.step-n {
  font-family: var(--disp); font-weight: 700; font-size: 58px; line-height: .8;
  color: var(--orange); margin: 0;
}
.step h3 { font-size: 27px; color: var(--cream); margin-bottom: 8px; text-transform: uppercase; }
.step p { color: var(--steel); font-size: 16.5px; margin: 0; }

/* --------------------------------------------------------------- reviews */
.pull {
  border-left: 5px solid var(--orange); padding: 6px 0 6px 28px; margin: 0 0 clamp(34px, 4vw, 50px);
  max-width: 430px;
}
.pull-q {
  font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06; margin: 0 0 14px; text-wrap: balance;
}
.pull .src { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute-l); }
.pull-wide { max-width: 680px; }
.rev-grid .pull { margin-bottom: 0; max-width: none; align-self: start; }

.rev-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px); margin-bottom: clamp(28px, 3.2vw, 40px);
}
.rev {
  background: #fff; border: 1px solid var(--line-l); border-radius: 5px;
  padding: 28px 28px 24px; margin: 0;
}
.stars { color: #B65605; font-size: 16px; letter-spacing: .16em; margin: 0 0 14px; }
.rev blockquote { margin: 0 0 16px; font-size: 17.5px; line-height: 1.66; }
.rev figcaption { font-family: var(--disp); font-weight: 700; font-size: 21px;
  text-transform: uppercase; letter-spacing: .04em; }
.quote-src {
  display: block; font-family: var(--body); font-weight: 400; font-size: 12.5px;
  letter-spacing: .11em; text-transform: uppercase; color: var(--mute-l); margin-top: 4px;
}

.rev-foot {
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 3vw, 44px); align-items: start;
  border-top: 1px solid var(--line-l); padding-top: clamp(28px, 3.2vw, 40px);
}
.score { display: flex; gap: 22px; align-items: flex-start; }
.score p.score-num {
  font-family: var(--disp); font-weight: 700; font-size: 82px; line-height: .82;
  margin: 0; color: var(--ink);
}
.score p { font-size: 16.5px; color: var(--ink-soft); margin: 0; }
.themes-h {
  font-family: var(--disp); font-weight: 700; font-size: 21px; text-transform: uppercase;
  letter-spacing: .07em; margin: 0 0 14px;
}
.theme-l { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.theme-l li {
  border: 1px solid var(--line-l); background: #fff; border-radius: 999px;
  padding: 8px 15px 7px; font-size: 15px; line-height: 1;
}
.theme-n {
  display: inline-block; margin-left: 8px; font-family: var(--disp); font-weight: 700;
  font-size: 16px; color: var(--orange-ink);
}
.src-line { font-size: 13px; color: var(--mute-l); margin: 0; }

/* ---------------------------------------------------------- hours/contact */
.con-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 52px); align-items: start;
}
.facts { list-style: none; margin: 0 0 26px; padding: 0; }
.facts li {
  display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 16px;
  padding: 15px 0; border-bottom: 1px solid var(--line-l); align-items: baseline;
}
.facts-k {
  font-family: var(--disp); font-weight: 700; font-size: 16px; text-transform: uppercase;
  letter-spacing: .13em; color: var(--ink-soft);
}
.facts-v { font-size: 17.5px; }
.facts-v a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.con-slots { display: grid; gap: 18px; }

/* ------------------------------------------------------------------ form */
.form-grid {
  display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 3.6vw, 56px); align-items: start;
}
.form-photo { border-radius: 5px; overflow: hidden; border: 1px solid rgba(147,174,196,.25); }
.form-photo img { width: 100%; height: 430px; object-fit: cover; object-position: 42% 34%; background: #2A3742; }
.frm { display: grid; gap: 18px; }
.frm-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.f label {
  display: block; font-family: var(--disp); font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: .12em; color: var(--steel); margin-bottom: 7px;
}
.f input, .f select, .f textarea {
  width: 100%; font-family: var(--body); font-size: 16.5px; color: #B9C7D3;
  background: rgba(9, 22, 36, .8); border: 1px dashed rgba(147, 174, 196, .45);
  border-radius: 3px; padding: 13px 14px; line-height: 1.5;
}
.f textarea { min-height: 132px; resize: vertical; }
.f input:disabled, .f select:disabled, .f textarea:disabled { opacity: 1; color: #7E8F9C; }
.frm-note {
  font-size: 15.5px; color: var(--steel); margin: 0;
}
.frm-off {
  border: 2px dashed rgba(147, 174, 196, .5); border-radius: 4px; padding: 16px 18px;
  color: #93A5B3; font-size: 15.5px; line-height: 1.6;
}
.btn-off {
  display: inline-block; font-family: var(--disp); font-weight: 700; font-size: 21px;
  text-transform: uppercase; letter-spacing: .05em; padding: 17px 28px 15px;
  border: 2px dashed rgba(147, 174, 196, .5); border-radius: 3px;
  background: none; color: #8397A6; cursor: not-allowed;
}

/* ------------------------------------------------------------------- cta */
.cta-in { text-align: center; }
.cta-in .tines { margin-left: auto; margin-right: auto; }
.cta-phone {
  display: inline-block; font-family: var(--disp); font-weight: 700;
  font-size: clamp(40px, 6vw, 62px); line-height: 1; color: #fff; text-decoration: none;
  margin-top: 22px; border-bottom: 4px solid var(--orange); padding-bottom: 6px;
}
.cta-phone:hover { color: var(--orange); }

/* -------------------------------------------------------- about-this-preview */
.preview { background: var(--cream-2); border-top: 3px solid var(--orange); }
.about-preview { max-width: 74ch; padding: clamp(40px, 5vw, 62px) 0; }
.ap-h {
  font-family: var(--disp); font-weight: 700; font-size: 30px; text-transform: uppercase;
  letter-spacing: .05em; margin: 0 0 18px;
}
.about-preview p { font-size: 16.5px; line-height: 1.68; color: var(--ink-soft); }
.about-preview .pbar-btn { color: #0B1723; margin-top: 8px; }

/* ---------------------------------------------------------------- footer */
.foot { background: var(--navy-3); color: var(--steel); }
.foot-in {
  display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.4vw, 52px); padding: clamp(48px, 5.4vw, 72px) var(--pad) 40px;
}
.foot h4 {
  font-family: var(--disp); font-weight: 700; font-size: 19px; text-transform: uppercase;
  letter-spacing: .13em; color: var(--cream); margin: 0 0 16px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 10px; font-size: 16px; }
.foot a { color: var(--steel); text-decoration: none; border-bottom: 1px solid rgba(147,174,196,.35); }
.foot a:hover { color: var(--cream); border-bottom-color: var(--cream); }
.foot-brand { display: grid; gap: 14px; }
.foot-name {
  font-family: var(--disp); font-weight: 700; font-size: 26px; text-transform: uppercase;
  color: var(--cream); margin: 0;
}
.foot-brand p { font-size: 16px; margin: 0; }
.foot-bar {
  border-top: 1px solid rgba(147, 174, 196, .18); padding: 20px var(--pad);
  font-size: 14.5px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot-bar p { margin: 0; }

/* --------------------------------------------------------------------- fab */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); color: #0B1723;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(5, 14, 24, .42);
  text-decoration: none;
}
.fab svg { width: 27px; height: 27px; }
.fab::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(244, 130, 31, .55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.9); opacity: .8; }
  70% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
/* Fixed elements cross light, dark and accent grounds, so the ring is two-colour:
   a dark inner ring plus a light outer ring. One of the two always reads. */
.fab:focus-visible {
  outline: 3px solid var(--cream); outline-offset: 4px;
  box-shadow: 0 0 0 4px #061019, 0 8px 26px rgba(5, 14, 24, .42);
}

/* ---------------------------------------------------------------- reveals */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .62s ease, transform .62s ease; }
html.js .reveal.in-view { opacity: 1; transform: none; }
html.js .stagger > *:nth-child(2) { transition-delay: .08s; }
html.js .stagger > *:nth-child(3) { transition-delay: .16s; }
html.js .stagger > *:nth-child(4) { transition-delay: .24s; }

/* --------------------------------------------------------------- 404 page */
body.nf-page { background: var(--navy-3); }
.nf { padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 8vw, 110px); }
.nf-code {
  font-family: var(--disp); font-weight: 700; font-size: clamp(76px, 13vw, 148px);
  line-height: .82; color: var(--orange); margin: 0 0 16px;
}
.nf-acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; }
  .hero-card { max-width: 380px; }
  .svc-grid, .proc-grid, .con-grid, .form-grid, .rev-foot { grid-template-columns: minmax(0, 1fr); }
  .proc-photo { max-height: 340px; }
  .foot-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-3); border-top: 1px solid rgba(147, 174, 196, .2);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--pad) 20px;
    z-index: 40;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(147, 174, 196, .14); }
  .nav .btn { margin-top: 14px; text-align: center; }
  .mast-in { position: relative; }
  .trio { grid-template-columns: minmax(0, 1fr); }
  .rev-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .frm-row { grid-template-columns: minmax(0, 1fr); }
  .facts li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .step { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; }
  .step-n { font-size: 44px; }
  .score-num { font-size: 66px; }
  .foot-in { grid-template-columns: minmax(0, 1fr); }
  .pbar-in { flex-direction: column; align-items: flex-start; }
  .pull { padding-left: 20px; }
}

@media (max-width: 400px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 23px; }
  .hero-num { font-size: 52px; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .hero::before { animation: none; transform: scale(1.02); }
  html.js .reveal { opacity: 1; transform: none; }
  .fab::after { display: none; }
}
