/* HOTLINE — "the dispatch poster" — customised for SHEEHAN ELECTRICAL.

   Poster brutalism: full-bleed panels, a 3px rule grid, ZERO border-radius,
   poster-flat (no soft shadows). The phone number is the biggest object on
   the page.

   Palette is sampled straight out of the client's logo:
     bolt yellow #FFC800 · logo grey #989898 · black ground #101010 · white
   Gold #C08A14 is the rationed second accent (stars, rules, service
   numerals). Yellow is reserved for call-to-action.

   Type: Archivo Black (display — squared industrial grotesque, closest match
   to the logo lettering) + Archivo variable (body/UI).

   Motion: "the stamp" — stamp entrances, rise reveals, instant panel-inversion
   hovers, a pulsing fixed call bar, and the silent hero film loop. */

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

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
dl, dd, dt { margin: 0; }
blockquote { quotes: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* the header is sticky, so anything scrolled to needs to clear it */
:target, [id], .quote-done { scroll-margin-top: 5.5rem; }
a:focus-visible, .btn:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- display type ---------- */

.hero-name, .hero-phone, .section-h, .about-h, .call-h, .call-phone,
.stat-value, .brand, .foot-brand, .rate-no, .score-value, .stamp, .callbar-text {
  font-family: "Archivo Black", "Archivo", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ---------- eyebrows ---------- */

.eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold);
}
.eyebrow-panel { color: var(--accent); }
.mark { display: inline; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* ---------- layout primitives ---------- */

.section, .section-plain, .stats, .about, .call, .area, .services, .gallery, .voices, .quote {
  border-bottom: 3px solid var(--ink);
}
.section, .services, .about, .area, .gallery, .voices, .section-plain, .quote {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.section, .services, .area, .quote { padding-inline: clamp(1.25rem, 6vw, 5.5rem); }
.gallery, .voices, .section-plain { padding-inline: 0; }
.gallery > .section-head, .voices > .section-head { padding-inline: clamp(1.25rem, 6vw, 5.5rem); }

.section-head { max-width: 62rem; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-h { font-size: clamp(2.2rem, 7vw, 4.4rem); text-transform: uppercase; }
.section-lede {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 40rem;
  color: var(--ink-dim);
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem clamp(1rem, 5vw, 5.5rem);
  background: var(--bg);
  border-bottom: 3px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #000;
  border: 3px solid var(--ink);
}
.brand-name {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(0.98rem, 2.6vw, 1.35rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name span { display: block; font-size: 0.62em; letter-spacing: 0.16em; color: var(--grey); }

.site-nav { display: none; }
.site-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  padding-bottom: 3px;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--accent); }
@media (min-width: 980px) { .site-nav { display: flex; align-items: center; gap: 1.4rem; } }

.head-right { display: flex; align-items: center; gap: 0.8rem; }
.head-tel { display: none; font-weight: 700; font-size: 0.95rem; border-bottom: 3px solid var(--accent); padding-bottom: 1px; }
@media (min-width: 720px) { .head-tel { display: inline-block; } }
.head-cta {
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 3px solid var(--ink);
  white-space: nowrap;
}
.head-cta:hover { background: var(--ink); color: var(--accent); }

/* ---------- hero — client photo behind the text ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 82vh, 50rem);
  padding: clamp(2.6rem, 7vw, 5rem) clamp(1.25rem, 6vw, 5.5rem) clamp(2.6rem, 7vw, 5rem);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  background-color: var(--panel);
  background-image: var(--hero-img-mobile, var(--hero-img));
  background-size: cover;
  background-position: center;
  color: var(--panel-ink);
}
@media (min-width: 760px) { .hero { background-image: var(--hero-img); background-position: 50% 62%; } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(94deg, rgba(8,8,8,.93) 0%, rgba(8,8,8,.78) 42%, rgba(8,8,8,.30) 78%, rgba(8,8,8,.50) 100%),
    linear-gradient(0deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,0) 55%);
}
.hero-inner { position: relative; z-index: 2; max-width: 62rem; }
.hero-over {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-name {
  font-size: clamp(2.5rem, 9vw, 6rem);
  text-transform: uppercase;
  color: var(--panel-ink);
  margin-bottom: 0.2rem;
}
.hero-name .bolt { color: var(--accent); }
.hero-lede {
  margin-top: 1.1rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.45;
  color: var(--panel-ink-dim);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: clamp(1.6rem, 4vw, 2.2rem); }

/* chip */
.chip {
  display: inline-block;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.8rem;
  border: 3px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
}
.chip-panel { border-color: var(--accent); background: rgba(255,200,0,.10); color: var(--accent); }

/* ---------- hero slideshow ----------
   Three of Sheehan's own photos, 4K-upscaled, cross-fading in exactly the frame
   the film loop used: absolutely positioned, object-fit: cover, under the same
   scrim. Every slide fills the section edge to edge at any viewport — same crop
   behaviour as the video, so nothing letterboxes or jumps between slides.

   The cross-fade is one-way: the incoming slide sits on top and fades from 0 to
   1 while the outgoing one stays fully opaque underneath, so the scene never
   dips towards the black background mid-transition. */

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transition: opacity 1100ms ease;
}
.hero-slide.is-on { opacity: 1; }

/* A single still can carry the heavy scrim the old hero used. Three can't: the
   dining-room shot is a near-white ceiling and goes muddy under it. This is the
   lighter, shorter scrim — the copy still clears 7:1 against the darkest slide
   and the brightest one still reads as a photo. */
.hero-slides::before {
  background:
    linear-gradient(94deg, rgba(8,8,8,.90) 0%, rgba(8,8,8,.70) 40%, rgba(8,8,8,.22) 74%, rgba(8,8,8,.42) 100%),
    linear-gradient(0deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,0) 48%);
}
/* On a phone the copy fills most of the frame, so it can't be lit off the side
   the way it is on desktop — the scrim has to come up the whole picture. This is
   the weight the measured worst-case pixel under every glyph needs to clear
   4.5:1 on all three slides (see contrast-sheehan-hero.js). */
@media (max-width: 759px) {
  .hero-slides::before {
    background:
      linear-gradient(0deg, rgba(8,8,8,.93) 0%, rgba(8,8,8,.76) 44%, rgba(8,8,8,.62) 74%, rgba(8,8,8,.50) 100%);
  }
}

/* ---------- book-or-call band ----------
   The one thing the page wants a visitor to do, immediately under the fold. */

.cta-band {
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom: 3px solid var(--ink);
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.25rem, 6vw, 5.5rem);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.cta-eyebrow {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cta-h {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(1.5rem, 4.2vw, 2.4rem);
  margin-top: 0.35rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; width: 100%; }
.cta-btn {
  flex: 1 1 15rem;
  display: block;
  border: 3px solid var(--ink);
  padding: 0.85rem 1.4rem;
  background: var(--ink);
  color: var(--bg);
}
.cta-btn-kicker {
  display: block;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.cta-btn-main {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.35rem, 3.6vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
  white-space: nowrap;
}
.cta-btn--book { background: var(--bg); color: var(--ink); }
.cta-btn--book .cta-btn-kicker { color: var(--ink); opacity: .72; }
.cta-btn:hover { background: var(--bg); color: var(--ink); }
.cta-btn:hover .cta-btn-kicker { color: var(--ink); opacity: .72; }
.cta-btn--book:hover { background: var(--ink); color: var(--bg); }
.cta-btn--book:hover .cta-btn-kicker { color: var(--accent); opacity: 1; }

@media (min-width: 860px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .cta-copy { flex: 0 1 auto; }
  .cta-actions { width: auto; flex: 0 1 auto; }
  .cta-btn { flex: 0 0 auto; }
}

/* ---------- stats ---------- */

.stats {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.25rem, 6vw, 5.5rem);
}
.stat-grid { display: grid; grid-template-columns: 1fr; border: 3px solid var(--accent); }
.stat { padding: clamp(1.3rem, 4vw, 2.1rem); border-bottom: 3px solid var(--accent); }
.stat:last-child { border-bottom: 0; }
.stat-value { font-size: clamp(2.6rem, 8vw, 4.2rem); color: var(--accent); }
.stat-unit { font-size: 0.42em; margin-left: 0.22em; letter-spacing: 0; color: var(--gold); }
.stat-label {
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--panel-ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.rate-grid { display: grid; grid-template-columns: 1fr; border-top: 3px solid var(--ink); border-left: 3px solid var(--ink); }
.rate {
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
}
/* the whole tile is the button */
.rate-open {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: clamp(1.4rem, 3.5vw, 2rem);
}
.rate:hover, .rate:focus-within { background: var(--ink); color: var(--panel-ink); }
.rate:hover .rate-desc, .rate:focus-within .rate-desc { color: var(--panel-ink-dim); }
.rate-open:focus-visible { outline: 3px solid var(--accent); outline-offset: -6px; }
.rate-no { display: block; font-size: clamp(1.9rem, 5vw, 2.6rem); line-height: 0.9; color: var(--gold); margin-bottom: 0.6rem; }
.rate:hover .rate-no, .rate:focus-within .rate-no { color: var(--accent); }
.rate-more {
  display: block;
  margin-top: 0.9rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.rate:hover .rate-more, .rate:focus-within .rate-more { color: var(--accent); }
.rate-name {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.rate-desc { display: block; color: var(--ink-dim); font-size: 0.97rem; }
.services-note { margin-top: clamp(1.3rem, 3vw, 1.8rem); color: var(--ink-dim); font-size: 1rem; max-width: 46rem; }
.services-cta { margin-top: clamp(1.4rem, 3vw, 2rem); display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- service detail, opened from a card ---------- */

.svc-detail[hidden] { display: none; }
/* a class-level display beats the browser's dialog:not([open]){display:none},
   so the closed dialog has to be hidden by hand or it renders as an empty bar */
.svc-modal:not([open]) { display: none; }
.svc-modal {
  /* centred by hand: a dialog with an explicit width does not always land in
     the middle on its own, and it must not open flush against the top-left */
  position: fixed;
  inset: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  width: min(46rem, calc(100vw - 2rem));
  height: fit-content;
  max-height: min(86vh, 52rem);
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  overflow: auto;
}
dialog.svc-modal::backdrop { background: rgba(16, 16, 16, 0.74); }
.svc-close {
  position: sticky;
  top: 0;
  z-index: 2;
  align-self: flex-end;
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
}
.svc-close:hover { background: var(--ink); color: var(--accent); }
.svc-slot > .svc-detail { padding: clamp(1.5rem, 4vw, 2.4rem); }
.svc-h {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-size: clamp(1.5rem, 4.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin-bottom: 1rem;
}
.svc-no { display: block; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.svc-intro { font-size: 1.05rem; margin-bottom: 1.1rem; }
.svc-list { list-style: none; margin: 0 0 1.2rem; padding: 0; border-top: 3px solid var(--ink); }
.svc-list li {
  padding: 0.7rem 0 0.7rem 1.9rem;
  border-bottom: 1px solid rgba(16, 16, 16, 0.16);
  color: var(--ink-dim);
  position: relative;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
}
.svc-outro { color: var(--ink-dim); margin-bottom: 1.2rem; }
.svc-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.3rem; }
.svc-shot { border: 3px solid var(--ink); overflow: hidden; }
.svc-shot:first-child:nth-last-child(1) { grid-column: 1 / -1; }
.svc-shot:first-child:nth-last-child(3) { grid-column: 1 / -1; }
.svc-shot img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
html.svc-locked, html.svc-locked body { overflow: hidden; }

/* no dialog support: the panel just opens under the card */
.rate > .svc-detail { border-top: 3px solid var(--ink); padding: clamp(1.2rem, 3.5vw, 1.8rem); background: var(--bg); color: var(--ink); }
.rate > .svc-detail .svc-h { font-size: 1.15rem; }

@media (max-width: 30rem) {
  .svc-gallery { grid-template-columns: 1fr; }
  .svc-shot { grid-column: 1 / -1 !important; }
}

/* ---------- book online, above the enquiry form ---------- */

.book-online { border: 3px solid var(--ink); background: var(--bg-alt); padding: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: 1.4rem; }
.book-online-h { font-family: "Archivo Black", "Archivo", sans-serif; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.book-online-p { color: var(--ink-dim); font-size: 0.97rem; margin-bottom: 1rem; }
.book-or {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.book-or::before, .book-or::after { content: ""; flex: 1; height: 3px; background: var(--ink); }
.book-or::before { flex: 0 0 1.5rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.6rem;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
}
.btn:hover { background: var(--bg); color: var(--ink); }
.btn-call { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-call:hover { background: var(--ink); border-color: var(--ink); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--panel-ink); border-color: var(--panel-ink); }
.btn-ghost:hover { background: var(--panel-ink); color: var(--panel); }

/* two-line hero buttons — the kicker says what happens, the main line is the action */
.btn-lg { padding: 0.7rem 1.4rem; text-align: left; letter-spacing: 0; }
.btn-lg .btn-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: .8;
}
.btn-lg .btn-main {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: nowrap;
}

/* ---------- work gallery ----------
   The client's photos are mostly phone portraits, so the tiles are square
   (one 16:9 feature tile) rather than the template's 2:1 full-bleed strips —
   a 2:1 band cut the subjects' faces in half. */

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}
.work-fig {
  position: relative;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--panel);
}
.work-fig img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.work-fig--wide img { aspect-ratio: 16 / 9; }
.work-bar {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  background: var(--panel);
  color: var(--panel-ink);
  padding: 0.75rem 1rem;
  border-top: 3px solid var(--ink);
}
.work-no { font-family: "Archivo Black", sans-serif; font-size: 0.9rem; color: var(--accent); flex: 0 0 auto; }
.work-tag { font-weight: 700; font-size: clamp(0.88rem, 1.6vw, 1.05rem); }

/* single bordered figure (About page) */
.figure-solo { border: 3px solid var(--ink); max-width: 40rem; }
.figure-solo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- reviews ---------- */

.score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 3px solid var(--ink);
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  background: var(--bg);
}
.score-value { font-size: clamp(3rem, 9vw, 4.6rem); line-height: 0.9; }
.score-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.score-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.12em; line-height: 1; }
.score-count { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.86rem; color: var(--ink-dim); }

.voices-grid { display: grid; grid-template-columns: 1fr; }
.voice {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(1.5rem, 4vw, 2.2rem) clamp(1.25rem, 6vw, 5.5rem);
  border-bottom: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.voice:last-child { border-bottom: 0; }
.voice-stars { color: var(--accent); letter-spacing: 0.1em; font-size: 1rem; margin-bottom: 0.9rem; }
.voice-quote {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.42;
  color: var(--panel-ink);
  flex: 1 1 auto;
}
.swipe { display: block; height: 0.4rem; width: 3.4rem; background: var(--accent); margin: 1.1rem 0 0.9rem; transform-origin: left center; }
.voice-cite {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--panel-ink-dim);
}
.voices-note {
  padding: 1.2rem clamp(1.25rem, 6vw, 5.5rem) 0;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

/* ---------- quote form ---------- */

.quote { background: var(--bg-alt); }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.quote-form { border: 3px solid var(--ink); background: var(--bg); padding: clamp(1.3rem, 4vw, 2.2rem); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 3px solid var(--ink);
  padding: 0.7rem 0.8rem;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 14px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.86rem; color: var(--ink-dim); margin-top: 0.9rem; }
.form-error {
  display: none;
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  border: 3px solid var(--ink);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 0.94rem;
}
.form-error.show { display: block; }
.quote-form.sending .btn-submit { opacity: 0.6; pointer-events: none; }

/* inline success — replaces the form without leaving the page */
.quote-done {
  display: none;
  border: 3px solid var(--ink);
  background: var(--accent);
  color: var(--accent-ink);
  padding: clamp(1.6rem, 5vw, 2.6rem);
}
.quote-done.show { display: block; }
.quote-done h3 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.quote-done p { font-size: 1.05rem; max-width: 32rem; }
.quote-done p + p { margin-top: 0.7rem; }
.quote-done .btn { margin-top: 1.3rem; }

.quote-aside .aside-list { border-top: 3px solid var(--ink); margin-top: 1.4rem; }
.quote-aside .aside-item { border-bottom: 3px solid var(--ink); padding: 0.9rem 0; display: flex; gap: 0.9rem; align-items: baseline; }
.quote-aside .aside-no { font-family: "Archivo Black", sans-serif; color: var(--gold); font-size: 0.95rem; flex: 0 0 auto; }
.quote-aside .aside-text { font-size: 1rem; color: var(--ink-dim); }
.quote-aside .aside-text strong { color: var(--ink); font-weight: 700; }

/* ---------- service area ---------- */

.area-wall { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chip {
  font-weight: 700;
  font-size: clamp(0.9rem, 1.9vw, 1.05rem);
  padding: 0.55rem 0.95rem;
  border: 3px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
}
.area-chip:hover { background: var(--accent); }

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

.call {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.25rem, 6vw, 5.5rem);
  border-bottom: 3px solid var(--ink);
}
.call-inner { max-width: 70rem; }
.call-h { font-size: clamp(2.2rem, 7vw, 4.4rem); text-transform: uppercase; margin-bottom: 1rem; }
.call-phone {
  display: block;
  font-size: clamp(2.4rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--accent);
  overflow-wrap: anywhere;
  margin-bottom: 1.2rem;
}
.call-phone:hover { color: var(--panel-ink); }
.call-licence { margin-bottom: 1.6rem; }
.call-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.call-details { display: grid; grid-template-columns: 1fr; border-top: 3px solid var(--accent); }
.call-row { display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; padding: 0.85rem 0; border-bottom: 3px solid rgba(255,200,0,.32); }
.call-row dt {
  flex: 0 0 8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  color: var(--gold);
  align-self: center;
}
.call-row dd { font-weight: 600; }
.call-row dd a { border-bottom: 2px solid var(--accent); }

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

.site-foot {
  background: var(--panel);
  color: var(--panel-ink);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.25rem, 6vw, 5.5rem);
}
.foot-inner { max-width: 70rem; }
.foot-brand { font-size: clamp(1.5rem, 4.5vw, 2.4rem); text-transform: uppercase; margin-bottom: 0.5rem; }
.foot-brand .bolt { color: var(--accent); }
.foot-meta { font-weight: 600; margin-bottom: 0.35rem; }
.foot-licence, .foot-areas { font-size: 0.9rem; color: var(--panel-ink-dim); margin-top: 0.3rem; max-width: 52rem; }
.foot-areas a { border-bottom: 2px solid var(--gold); }

/* ---------- fixed mobile call bar ---------- */

.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  background: var(--panel);
  color: var(--panel-ink);
  border-top: 3px solid var(--accent);
}
.callbar-text {
  font-size: 0.98rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.callbar-btn {
  flex: 0 0 auto;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.2rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 3px solid var(--accent);
  animation: callbar-pulse 2.4s ease-in-out infinite;
}
@keyframes callbar-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--accent); }
  50% { transform: scale(1.035); box-shadow: 0 0 0 3px var(--panel-ink); }
}

/* ---------- secondary pages ---------- */

.hero-page { min-height: clamp(16rem, 40vh, 23rem); }
.hero-page .hero-inner { max-width: 58rem; }
.hero-page .hero-name { font-size: clamp(2.1rem, 6.5vw, 4rem); }

.prose { max-width: 44rem; }
.prose p { margin-bottom: 1.1rem; font-size: clamp(1.02rem, 2vw, 1.16rem); color: var(--ink-dim); }
.prose p strong { color: var(--ink); font-weight: 700; }
.prose h3 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 2.2rem 0 0.9rem;
  color: var(--ink);
}

.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.split-media { border: 3px solid var(--ink); }
.split-media img { width: 100%; object-fit: cover; }
.split-cap {
  background: var(--panel);
  color: var(--panel-ink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 0.9rem;
  border-top: 3px solid var(--ink);
}

.values { display: grid; grid-template-columns: 1fr; border: 3px solid var(--ink); margin-top: 2.4rem; }
.value { padding: clamp(1.3rem, 3.5vw, 1.9rem); border-bottom: 3px solid var(--ink); }
.value:last-child { border-bottom: 0; }
.value h4 { font-family: "Archivo", sans-serif; font-weight: 700; font-size: 1.18rem; margin-bottom: 0.4rem; }
.value h4 .value-no { color: var(--gold); margin-right: 0.5rem; }
.value p { color: var(--ink-dim); font-size: 0.98rem; }

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

.faq { max-width: 64rem; }
.faq-list { border-top: 3px solid var(--ink); }
.faq-item { border-bottom: 3px solid var(--ink); }
.faq-q {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.1rem, 2.8vw, 1.5rem) 0;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold); }
.faq-plus { flex: 0 0 auto; font-weight: 400; font-size: 1.6rem; line-height: 1; color: var(--gold); transition: transform .2s ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 0 clamp(1.2rem, 2.8vw, 1.5rem); max-width: 54rem; }
.faq-a p { color: var(--ink-dim); font-size: clamp(0.98rem, 2vw, 1.1rem); }
.faq-a p + p { margin-top: 0.8rem; }
.faq-a a { border-bottom: 2px solid var(--gold); font-weight: 600; color: var(--ink); }
.faq-cta { margin-top: clamp(2.2rem, 5vw, 3.2rem); display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* keep content clear of the fixed mobile call bar */
@media (max-width: 719px) { body { padding-bottom: 4.2rem; } }

/* ======================================================================
   MOTION — armed only when motion.js adds .motion
   ====================================================================== */

.motion [data-stamp] {
  opacity: 0;
  transform: scale(1.12);
  transform-origin: left center;
  transition: opacity .24s cubic-bezier(.2,.9,.3,1), transform .24s cubic-bezier(.2,.9,.3,1);
}
.motion [data-stamp].in { opacity: 1; transform: none; }

.motion [data-rise] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease-out, transform .4s ease-out;
}
.motion [data-rise].in { opacity: 1; transform: none; }

.motion .swipe[data-mark] { transform: scaleX(0); transition: transform .5s cubic-bezier(.2,.9,.3,1); }
.motion .swipe[data-mark].in { transform: scaleX(1); }

/* ---------- desktop / tablet ---------- */

@media (min-width: 720px) {
  .callbar { display: none; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: 0; border-right: 3px solid var(--accent); }
  .stat:last-child { border-right: 0; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .voice { border-right: 3px solid var(--ink); }
  .voice:nth-child(2n) { border-right: 0; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-fig--wide { grid-column: 1 / -1; }
  .call-row dt { flex-basis: 10rem; }
  .values { grid-template-columns: repeat(3, 1fr); }
  .value { border-bottom: 0; border-right: 3px solid var(--ink); }
  .value:last-child { border-right: 0; }
  .split { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1040px) {
  .rate-grid { grid-template-columns: repeat(4, 1fr); }
  .voices-grid { grid-template-columns: repeat(3, 1fr); }
  .voice:nth-child(2n) { border-right: 3px solid var(--ink); }
  .voice:nth-child(3n) { border-right: 0; }
  .quote-grid { grid-template-columns: 1.15fr 0.85fr; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  /* the slideshow stops on slide one — the photo stays, the movement goes */
  .hero-slide:not(.is-on) { display: none !important; }
  .callbar-btn { animation: none !important; transform: none !important; box-shadow: none !important; }
  [data-stamp], [data-rise] { opacity: 1 !important; transform: none !important; }
  .swipe[data-mark] { transform: none !important; }
}

/* ---------- the question answerer ----------
   Poster rules apply: zero radius, 3px rules, flat. Sits above the fixed
   mobile call bar so it never covers the phone number, and goes
   full-width-minus-a-margin on a phone so the answers stay readable. */

.chat-root {
  position: fixed;
  right: 0.75rem;
  bottom: 5rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
@media (min-width: 720px) { .chat-root { bottom: 1.25rem; right: 1.25rem; } }

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 3px solid var(--ink);
  padding: 0.7rem 1.05rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.chat-launcher:hover { background: var(--ink); color: var(--accent); }
.chat-launcher svg { width: 18px; height: 18px; }
.chat-root.is-open .chat-launcher { display: none; }

.chat-panel {
  width: min(370px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 3px solid var(--ink);
}
.chat-panel[hidden] { display: none; }

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  background: var(--panel);
  color: var(--panel-ink);
  border-bottom: 3px solid var(--accent);
}
.chat-head-txt strong {
  display: block;
  font-family: "Archivo Black", "Archivo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.chat-head-txt span { display: block; font-size: 0.72rem; color: var(--panel-ink-dim); letter-spacing: 0.06em; text-transform: uppercase; }
.chat-close { font-size: 1.6rem; line-height: 1; color: var(--panel-ink-dim); background: none; border: 0; padding: 0 0.2rem; cursor: pointer; }
.chat-close:hover { color: var(--accent); }

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--bg-alt);
}

.chat-msg { display: flex; }
.chat-msg.chat-you { justify-content: flex-end; }
.chat-bubble { max-width: 88%; padding: 0.65rem 0.8rem; font-size: 0.9rem; line-height: 1.55; }
.chat-bot .chat-bubble { background: var(--bg); border: 3px solid var(--ink); color: var(--ink); }
.chat-you .chat-bubble { background: var(--panel); color: var(--panel-ink); border: 3px solid var(--panel); }
.chat-bubble strong {
  font-family: "Archivo Black", "Archivo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.chat-bubble a { border-bottom: 2px solid var(--gold); font-weight: 700; }

.chat-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chat-chip {
  font-size: 0.78rem;
  padding: 0.4rem 0.65rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.chat-chip:hover { background: var(--ink); color: var(--bg); }

.chat-actions { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chat-act {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--bg);
}
.chat-act:hover { background: var(--ink); color: var(--bg); }
.chat-act-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.chat-act-primary:hover { background: var(--ink); color: var(--accent); }

.chat-form { display: flex; gap: 0.4rem; padding: 0.65rem; background: var(--bg); border-top: 3px solid var(--ink); }
.chat-input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.65rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 2px solid var(--ink);
}
.chat-input::placeholder { color: var(--ink-dim); }
.chat-send {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 0.9rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 2px solid var(--ink);
  cursor: pointer;
}
.chat-send:hover { background: var(--ink); color: var(--accent); }
.chat-send[disabled] { opacity: .55; cursor: default; }

.chat-dots { display: inline-flex; gap: 4px; }
.chat-dots i { width: 6px; height: 6px; background: var(--ink-dim); animation: chatdot 1s infinite ease-in-out; }
.chat-dots i:nth-child(2) { animation-delay: .15s; }
.chat-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes chatdot { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .chat-dots i { animation: none; } }
