/* ============================================================
   Tremors Plumbing And Sewer Inc.
   Design tokens derived from utility-locate field marking:
   APWA green = sanitary sewer, yellow = caution/locate,
   concrete = sidewalk, ink = wet asphalt.
   ============================================================ */

:root {
  --concrete:   #E9E9E4;
  --concrete-2: #DEDED7;
  --paper:      #FFFFFF;
  --ink:        #14181B;
  --ink-2:      #1E2429;
  --sewer:      #0F7A3D;   /* APWA sanitary sewer green */
  --sewer-dk:   #0A5B2D;
  --sewer-lt:   #E4F1E9;
  --locate:     #F2B705;   /* utility locate yellow */
  --pipe:       #5F6B66;   /* muted secondary text */
  --line:       #C9CAC3;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 3px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--concrete);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 64px; /* room for mobile action bar */
}

img { max-width: 100%; display: block; }

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

:focus-visible {
  outline: 3px solid var(--locate);
  outline-offset: 2px;
}

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

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 200;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.85rem); }
h3 { font-size: clamp(1.18rem, 2.4vw, 1.5rem); letter-spacing: -0.012em; }
h4 { font-size: 1.02rem; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
.lede { font-size: clamp(1.06rem, 2.1vw, 1.28rem); color: var(--pipe); max-width: 62ch; }

/* Signature: the locate mark. Field notation for a marked sewer line. */
.mark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sewer);
  margin: 0 0 1.1rem;
}
.mark::before {
  content: "";
  width: 46px; height: 5px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 9px, transparent 9px 15px);
}
.mark--light { color: var(--locate); }

.locate-rule {
  height: 7px;
  border: 0;
  margin: 0;
  background-image: repeating-linear-gradient(90deg, var(--sewer) 0 26px, transparent 26px 44px);
  background-size: 70px 100%;
}
.locate-rule--light {
  background-image: repeating-linear-gradient(90deg, var(--locate) 0 26px, transparent 26px 44px);
}
@media (prefers-reduced-motion: no-preference) {
  .locate-rule { animation: march 3.4s linear infinite; }
}
@keyframes march { to { background-position: 70px 0; } }

/* ---------- Header ---------- */

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
}
.masthead::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--sewer) 0 30px, var(--sewer-dk) 30px 46px);
  background-size: 46px 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .masthead::after { animation: march-46 2.6s linear infinite; }
}
@keyframes march-46 { to { background-position: 46px 0; } }
.masthead__bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 68px;
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: #fff; margin-right: auto; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem;
  letter-spacing: -0.01em; line-height: 1.1;
}
.brand__tag {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--locate);
}
.nav { display: none; gap: 1.5rem; }
.nav a {
  color: #E7E9E8; text-decoration: none; font-size: .93rem; font-weight: 600;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--locate); }

.masthead__call {
  display: none;
  font-family: var(--font-mono); font-weight: 600; font-size: .92rem;
  background: var(--sewer); color: #fff; text-decoration: none;
  padding: .6rem 1rem; border-radius: var(--radius);
  white-space: nowrap;
}
.masthead__call:hover { background: var(--sewer-dk); color: #fff; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .masthead__call { display: inline-block; }
}

/* Mobile action bar */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink); border-top: 3px solid var(--sewer);
}
.actionbar a {
  padding: .85rem .5rem; text-align: center; text-decoration: none;
  color: #fff; font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.actionbar a + a { border-left: 1px solid #333B40; }
.actionbar a:hover { background: var(--sewer); color: #fff; }
@media (min-width: 900px) {
  .actionbar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-mono); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em;
  padding: 1.05rem 1.7rem;
  border-radius: var(--radius);
  border: 3px solid transparent;
  text-decoration: none; cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .16s cubic-bezier(.2,.7,.25,1),
              box-shadow .16s ease, background .18s ease, color .18s ease;
}
.btn__label { position: relative; z-index: 2; }

/* Light sweeps across the face on hover — one pass, not a loop. */
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.42) 50%, transparent 80%);
  transform: translateX(-130%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn:hover::before, .btn:focus-visible::before { animation: sweep .7s ease-out; }
}
@keyframes sweep { to { transform: translateX(130%); } }

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

/* Emergency call: a slow locate-beacon pulse so it reads as the urgent one. */
.btn--pulse { box-shadow: 0 0 0 0 rgba(242,183,5,.55); }
@media (prefers-reduced-motion: no-preference) {
  .btn--pulse { animation: beacon 2.6s ease-out infinite; }
}
@keyframes beacon {
  0%   { box-shadow: 0 0 0 0 rgba(242,183,5,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(242,183,5,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,183,5,0); }
}
.btn--pulse:hover { animation-play-state: paused; box-shadow: 0 8px 0 0 var(--sewer-dk); }
.btn--call { background: var(--sewer); color: #fff; }
.btn--call:hover { background: var(--sewer-dk); color: #fff; }
.btn--alert { background: var(--locate); color: var(--ink); }
.btn--alert:hover { background: #FFC933; color: var(--ink); }
.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: #fff; color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }

.btnrow { display: flex; flex-wrap: wrap; gap: .7rem; }
@media (max-width: 560px) {
  .btnrow .btn { flex: 1 1 100%; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}

/* Ambient locate-grid: marked lines under pavement. Very low contrast on purpose. */
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(15,122,61,.30) 0 34px, transparent 34px 60px),
    repeating-linear-gradient(90deg, rgba(242,183,5,.14) 0 18px, transparent 18px 54px);
  background-size: 60px 8px, 54px 8px;
  background-position: 0 7%, 0 93%;
  background-repeat: repeat-x;
  opacity: .38;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__bg { animation: bgmarch 9s linear infinite; }
}
@keyframes bgmarch {
  to { background-position: 60px 7%, -54px 93%; }
}

.hero .wrap { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 940px) {
  .hero--split .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 3.5rem;
  }
}

.hero h1 { color: #fff; max-width: 20ch; margin-bottom: .35em; }
.hero__sub {
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  color: #C6CFCB; max-width: 46ch; margin: 0 0 1.7rem;
}
.hero__sub strong { color: #fff; font-weight: 700; }

/* The rule: a camera head running the lateral out to the cleanout. */
.hero__rule { display: block; width: 100%; max-width: 560px; margin: 0 0 1.5rem; }
.hero__rule .rule-ghost {
  stroke: #2E3A40; stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 20 14;
}
.hero__rule .rule-draw {
  stroke: var(--sewer); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 524; stroke-dashoffset: 0;
}
.hero__rule .rule-cleanout { fill: none; stroke: var(--locate); stroke-width: 5; }
.hero__rule .rule-head { fill: var(--locate); }

@media (prefers-reduced-motion: no-preference) {
  .hero__rule .rule-draw { animation: rule-draw 1.5s cubic-bezier(.2,.7,.25,1) both; }
  .hero__rule .rule-head { animation: rule-head 1.5s cubic-bezier(.2,.7,.25,1) both; }
  .hero__rule .rule-cleanout { animation: rule-pop .5s ease-out 1.45s both; }
}
@keyframes rule-draw { from { stroke-dashoffset: 524; } to { stroke-dashoffset: 0; } }
@keyframes rule-head { from { transform: translateX(0); } to { transform: translateX(520px); } }
@keyframes rule-pop {
  0%   { transform: scale(.2); opacity: 0; transform-origin: 546px 8px; }
  60%  { transform: scale(1.35); opacity: 1; transform-origin: 546px 8px; }
  100% { transform: scale(1); opacity: 1; transform-origin: 546px 8px; }
}

.hero__phone {
  font-family: var(--font-mono); font-size: 1.05rem; color: var(--locate);
  text-decoration: none; font-weight: 600; letter-spacing: .02em;
  display: inline-block; margin-top: 1.3rem;
}
.hero__phone:hover { color: #fff; }

/* Media column */
.hero__media { display: grid; justify-items: start; gap: 1rem; }
@media (min-width: 940px) { .hero__media { justify-items: end; } }

.hero__shot {
  margin: 0;
  position: relative;
  border: 5px solid var(--sewer);
  background: var(--ink-2);
  max-width: 340px;
  box-shadow: 8px 8px 0 rgba(242,183,5,.9);
}
@media (min-width: 940px) {
  .hero__shot { box-shadow: 14px 14px 0 rgba(242,183,5,.9); }
}
.hero__shot img { width: 100%; display: block; }
.hero__shot figcaption {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: #0F1417;
  background: var(--locate);
  padding: .5rem .7rem;
}

.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; max-width: 360px; }
.badge {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid #3A464C; color: #DDE3E1;
  padding: .4rem .7rem; border-radius: 100px;
}
.badge--gold { border-color: var(--locate); color: var(--locate); }
.badge--gold strong { font-size: .9rem; }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.trust__item {
  padding: 1.1rem var(--gutter) 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.trust__item:nth-child(odd) { padding-left: 0; }
.trust__k {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--pipe); display: block; margin-bottom: .2rem;
}
.trust__v { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; line-height: 1.25; }
.trust__v a { color: var(--sewer-dk); }
@media (min-width: 780px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item { border-bottom: 0; padding-block: 1.35rem; }
  .trust__item + .trust__item { border-left: 1px solid var(--line); padding-left: 1.6rem; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(2.75rem, 7vw, 5rem); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .lede { color: #BFC7C3; }
.section--tight { padding-block: clamp(2rem, 4.5vw, 3rem); }
.section__head { max-width: 68ch; margin-bottom: 2.1rem; }

/* ---------- Symptom grid (how customers actually arrive) ---------- */

.symptoms {
  display: grid; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 620px) { .symptoms { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .symptoms { grid-template-columns: repeat(3, 1fr); } }

.symptom {
  background: var(--paper);
  padding: 1.5rem 1.4rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .4rem;
  transition: background .15s ease;
}
.symptom:hover { background: var(--sewer-lt); color: inherit; }
.symptom__q { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; line-height: 1.2; }
.symptom__a { font-size: .93rem; color: var(--pipe); margin: 0; }
.symptom__go {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sewer); margin-top: .35rem; font-weight: 600;
  transition: transform .18s cubic-bezier(.2,.7,.25,1);
}
.symptom:hover .symptom__go { transform: translateX(7px); }
.symptom {
  border-left: 5px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.symptom:hover { border-left-color: var(--sewer); }

/* ---------- Cards / service list ---------- */

.cards { display: grid; gap: 1.15rem; }
@media (min-width: 700px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--sewer);
  padding: 1.6rem 1.5rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 0 -4px rgba(15,122,61,.22); }
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card__list { margin: 0; padding-left: 1.1rem; font-size: .95rem; color: var(--pipe); }
.card__list li { margin-bottom: .35rem; }

/* ---------- Owner block ---------- */

.owner { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .owner { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; } }

.photo-slot {
  background: var(--concrete-2);
  border: 2px dashed var(--pipe);
  min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pipe); line-height: 1.7;
}
.photo-slot--wide { min-height: 220px; }

/* ---------- Compliance band ---------- */

.band {
  background: var(--sewer);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.band h2 { color: #fff; }
.band p { color: #DCEFE4; }
.band a.btn--alert { margin-top: .5rem; }

/* ---------- Reviews ---------- */

.review {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex; flex-direction: column;
}
.review__stars { color: var(--locate); letter-spacing: .1em; font-size: .95rem; margin-bottom: .6rem; }
.review__text { font-size: 1rem; margin-bottom: 1rem; }
.review__who {
  margin-top: auto;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pipe);
}

/* ---------- Table ---------- */

.tablewrap { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
.table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 620px; }
.table th, .table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table thead th {
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.table tbody tr:nth-child(even) { background: #F7F7F4; }
.table td:first-child { font-weight: 700; white-space: nowrap; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); background: var(--paper); }
.faq summary {
  cursor: pointer; padding: 1.1rem 1.2rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--sewer); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--pipe); }

/* ---------- Steps (real sequence, so numbers earn their place) ---------- */

.steps { display: grid; gap: 1.15rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--paper); border: 1px solid var(--line); padding: 1.5rem; position: relative; }
.step__n {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  color: var(--sewer); text-transform: uppercase; display: block; margin-bottom: .5rem; font-weight: 600;
}

/* ---------- Forms ---------- */

.form { display: grid; gap: 1rem; max-width: 560px; }
.field { display: grid; gap: .35rem; }
.field label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pipe); font-weight: 600;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--pipe); border-radius: var(--radius);
  background: var(--paper); color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.formnote { font-size: .86rem; color: var(--pipe); }

/* ---------- Service area ---------- */

.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.chips li {
  font-family: var(--font-mono); font-size: .8rem;
  border: 1px solid var(--line); background: var(--paper);
  padding: .45rem .8rem; border-radius: 100px;
}
.section--ink .chips li { background: var(--ink-2); border-color: #394247; color: #DDE3E1; }

/* ---------- Split ---------- */

.split { display: grid; gap: 2rem; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width: 860px) { .split--wide-left { grid-template-columns: 1.25fr .75fr; } }

.prose { max-width: 68ch; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: .45rem; }

.callout {
  background: var(--sewer-lt);
  border-left: 4px solid var(--sewer);
  padding: 1.2rem 1.4rem;
  margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout__k {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sewer-dk); font-weight: 700;
  display: block; margin-bottom: .4rem;
}

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: #B7C0BC; padding-block: 3rem 2rem; }
.footer h4 {
  color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600; margin-bottom: .9rem;
}
.footer a { color: #DDE3E1; text-decoration: none; }
.footer a:hover { color: var(--locate); }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .5rem; }
.footer__legal {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #2C3438;
  font-size: .82rem; color: #8A9793;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

.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;
}

/* ---------- Real photography ---------- */

.shot { margin: 0; }
.shot img {
  width: 100%;
  max-width: 340px;          /* source is low-res; don't scale past what it can carry */
  border: 1px solid var(--line);
  background: var(--concrete-2);
}
.shot figcaption {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--pipe);
  margin-top: .7rem; max-width: 340px;
}
.section--ink .shot figcaption { color: #9AA6A2; }

/* ---------- Explanatory diagrams ---------- */

.dia { margin: 0; }
.dia img {
  width: 100%; height: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
}
.dia--wide { margin: 1.75rem 0 0; }
.dia figcaption {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--pipe); margin-top: .7rem;
}

/* ---------- Call band ---------- */

.callband {
  background: var(--ink);
  color: #fff;
  border-top: 7px solid var(--sewer);
  padding-block: clamp(2rem, 5vw, 3.25rem);
}
.callband__inner { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 860px) {
  .callband__inner { grid-template-columns: 1.3fr .7fr; gap: 3rem; }
  .callband__act { justify-self: end; text-align: right; }
}
.callband__h {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: #fff; margin-bottom: .4rem;
}
.callband__p { color: #BFC7C3; margin: 0; font-size: .98rem; }
.callband__btn { font-size: 1.15rem; padding: 1.15rem 2rem; }
.callband__alt {
  display: inline-block; margin-top: .8rem;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--locate); text-decoration: none;
}
.callband__alt:hover { color: #fff; }

/* ---------- Mobile action bar: call is the point ---------- */

.actionbar { grid-template-columns: 2.2fr 1fr; }
.actionbar__call {
  background: var(--locate);
  color: var(--ink) !important;
  font-size: .82rem;
}
.actionbar__call:hover { background: #FFC933; color: var(--ink) !important; }
