/* =========================================================================
   TOILET SHARK - "Monster-comic work order" design system
   Loud, characterful chrome wrapped around a calm, usable booking form.
   Design mockup only - nothing here is wired to a backend.
   ========================================================================= */

:root {
  --ink:    #0f0f14;   /* comic near-black */
  --ink-2:  #1b1b22;
  --paper:  #f4ead0;   /* vintage newsprint */
  --paper-2:#eaddba;
  --red:    #e5261f;   /* "TOILET" red */
  --blue:   #159fd8;   /* "SHARK" blue */
  --gold:   #f6b41e;   /* outline gold */
  --slime:  #8bc23b;   /* sparingly */
  --white:  #ffffff;

  --edge: 4px;                     /* comic outline weight */
  --pop: 8px 8px 0 var(--ink);     /* hard "sticker" shadow */
  --pop-sm: 5px 5px 0 var(--ink);
  --container: 1320px;
  --radius: 12px;

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Desktop "baked-in 150% zoom" - the site reads better at browser-zoom 150%,
   so on computer-width screens we apply that with CSS `zoom` (not transform:
   scale). `zoom` reflows like real browser zoom: percentage widths resolve in
   the zoomed space, so everything is 1.5x with no horizontal scrollbar and the
   desktop layout is preserved. Phones/tablets (<1024px) stay at 1:1. */
@media (min-width: 1024px) {
  body { zoom: 1.5; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; background: var(--gold); color: var(--ink); padding: .6rem 1rem; border: 3px solid var(--ink); font-weight: 800; }

/* ------------------------------- type ---------------------------------- */
.display {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: .92; letter-spacing: .01em; margin: 0;
}
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; color: var(--blue); margin: 0 0 .6rem;
  -webkit-text-stroke: .4px var(--ink);
}

/* ------------------------------- buttons ------------------------------- */
.btn {
  --btn-bg: var(--gold); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.15rem; line-height: 1; text-decoration: none; cursor: pointer;
  padding: .78em 1.25em; color: var(--btn-fg); background: var(--btn-bg);
  border: var(--edge) solid var(--ink); border-radius: 10px; box-shadow: var(--pop-sm);
  transition: transform .1s ease, box-shadow .1s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn .ico { width: 1.2em; height: 1.2em; }
.btn--red   { --btn-bg: var(--red);  --btn-fg: var(--white); }
.btn--blue  { --btn-bg: var(--blue); --btn-fg: var(--white); }
.btn--block { width: 100%; font-size: 1.4rem; padding: .85em 1em; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); box-shadow: none; border-color: var(--gold); }
.btn--ghost:hover { --btn-bg: var(--gold); --btn-fg: var(--ink); box-shadow: none; transform: translateY(-2px); }

/* --------------------------- sticky top bar ---------------------------- */
.bar {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink); border-bottom: var(--edge) solid var(--gold);
}
.bar__in { display: flex; align-items: center; gap: 1rem; padding-block: .55rem; }
.bar__logo { height: 40px; width: auto; }
.bar__spacer { margin-left: auto; }
.bar__call {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem;
  color: var(--ink); background: var(--gold); text-decoration: none;
  padding: .5rem .9rem; border: 3px solid var(--ink); border-radius: 9px; box-shadow: var(--pop-sm);
}
.bar__call:hover { transform: translate(-1px,-1px); }
.bar__call .ico { width: 1.1em; height: 1.1em; }
.bar__call small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .1em; line-height: 1; opacity: .8; }

/* ------------------------------- hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(21,159,216,.16), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(229,38,31,.16), transparent 45%),
    var(--ink);
}
/* faint starburst rays behind the mascot */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 78% 46%, rgba(246,180,30,.05) 0deg 6deg, transparent 6deg 12deg);
  pointer-events: none;
}
.hero__in {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(2.4rem, 6vw, 4.2rem);
}
.hero h1 { font-size: clamp(2.9rem, 1.9rem + 5vw, 5.4rem); margin: 0 0 .3rem; }
.hero h1 .pop-red  { color: var(--red);  -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 rgba(0,0,0,.45); }
.hero h1 .pop-blue { color: var(--blue); -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 rgba(0,0,0,.45); }
.hero__sub { font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem); max-width: 40ch; color: #eef2f5; margin: .6rem 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__note { margin-top: 1rem; font-size: .9rem; color: #b9c2cc; }

/* framed mascot + patch sticker */
.hero__art { position: relative; justify-self: center; }
.frame {
  border: var(--edge) solid var(--ink); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--pop); overflow: hidden;
  transform: rotate(-2deg); max-width: 480px;
}
.frame img { width: 100%; height: auto; }
.hero__patch {
  position: absolute; width: clamp(110px, 16vw, 150px); height: auto;
  right: -18px; bottom: -22px; transform: rotate(9deg);
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,.55));
}

/* --------------------------- hazard-tape divider ----------------------- */
.tape {
  color: var(--ink); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .18em; font-size: .95rem; text-align: center;
  padding: .5rem 1rem; border-block: 3px solid var(--ink);
  background: repeating-linear-gradient(-45deg, var(--gold) 0 22px, var(--ink) 22px 44px);
}
.tape span { background: var(--gold); padding: .18rem .8rem; border: 3px solid var(--ink); border-radius: 6px; display: inline-block; }

/* ------------------------------ work order ----------------------------- */
.order { padding-block: clamp(2.4rem, 6vw, 4rem); }
.order__head { text-align: center; max-width: 40ch; margin: 0 auto clamp(1.4rem, 4vw, 2.2rem); }
.order__head h2 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3rem); margin: 0 0 .5rem; }
.order__head p { color: #4a4232; margin: 0; }

.panel {
  position: relative; max-width: 720px; margin-inline: auto;
  background: var(--white); border: var(--edge) solid var(--ink);
  border-radius: var(--radius); box-shadow: var(--pop);
}
.panel__ticket {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--ink); color: var(--white); padding: .8rem 1.2rem;
  border-radius: 7px 7px 0 0;
}
.panel__ticket h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.35rem; margin: 0; }
.panel__ticket .tag { font-family: var(--font-display); text-transform: uppercase; color: var(--gold); font-size: .8rem; letter-spacing: .1em; }
.panel__body { padding: clamp(1.3rem, 4vw, 2rem); }

/* the shark "seal" stamped on the panel's bottom-right corner (clear of fields) */
.panel__stamp {
  position: absolute; right: -30px; bottom: -30px; width: clamp(88px, 13vw, 118px); height: auto;
  transform: rotate(9deg); filter: drop-shadow(3px 3px 0 rgba(0,0,0,.4));
  pointer-events: none;
}

/* ------------------------------- form ---------------------------------- */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .95rem; margin-bottom: .35rem; }
.field .opt { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 600; color: #8a7c5e; font-size: .82rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fffdf7;
  border: 3px solid var(--ink); border-radius: 8px; padding: .7rem .8rem;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,159,216,.25); }
.field input::placeholder, .field textarea::placeholder { color: #a99b7d; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

/* photo-upload dropzone - the element that broke; made obvious + on-brand */
.dropzone {
  display: grid; place-items: center; text-align: center; gap: .5rem;
  padding: 1.7rem 1.2rem; cursor: pointer;
  background:
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(21,159,216,.03) 15px 16px),
    #f2f8fc;
  border: 3px dashed var(--blue); border-radius: 10px;
  transition: background-color .12s ease, border-color .12s ease;
}
.dropzone:hover, .dropzone:focus-within { background: #e7f4fc; border-color: var(--red); }
.dropzone__ico { width: 54px; height: 54px; color: var(--blue); }
.dropzone strong { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .02em; }
.dropzone span { text-transform: none; font-weight: 600; color: #5c6672; font-size: .92rem; max-width: 42ch; }
.dropzone .pick { color: var(--red); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
.dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }

.form-foot { margin-top: 1.4rem; }
.fineprint { margin: .9rem 0 0; font-size: .84rem; color: #6f6350; text-align: center; }
.fineprint a { color: var(--red); font-weight: 700; }
.mock-note {
  margin: 1rem auto 0; max-width: 720px; text-align: center; font-size: .8rem; color: #8a7c5e;
}
.mock-note a { color: var(--blue); font-weight: 700; }

/* ---------------------------- trust bursts ----------------------------- */
.trust { background: var(--ink); color: var(--white); padding-block: clamp(2rem, 5vw, 3rem); border-top: var(--edge) solid var(--gold); }
.trust h2 { text-align: center; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); margin: 0 0 1.6rem; }
.bursts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.burst {
  text-align: center; background: var(--paper); color: var(--ink);
  border: 3px solid var(--gold); border-radius: 10px; padding: 1.1rem .9rem; box-shadow: var(--pop-sm);
}
.burst .ico { width: 34px; height: 34px; margin: 0 auto .5rem; color: var(--red); }
.burst strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.02rem; display: block; }
.burst span { font-size: .86rem; color: #4a4232; }

/* ------------------------------- footer -------------------------------- */
.foot { background: var(--ink-2); color: #c7ccd2; padding-block: 2.2rem; border-top: var(--edge) solid var(--red); }
.foot__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.foot__logo { height: 46px; width: auto; }
.foot__call { font-family: var(--font-display); text-transform: uppercase; color: var(--gold); font-size: 1.5rem; text-decoration: none; }
.foot small { display: block; width: 100%; margin-top: 1rem; color: #8b929b; font-size: .82rem; }

/* ----------------------------- confirmation ---------------------------- */
.done { text-align: center; }
.done .frame { margin: 0 auto 1.6rem; transform: rotate(2deg); }
.done h1 { margin-bottom: .4rem; }
.summary {
  max-width: 560px; margin: 1.8rem auto 0; text-align: left;
  background: var(--white); color: var(--ink); border: var(--edge) solid var(--ink);
  border-radius: var(--radius); box-shadow: var(--pop-sm); overflow: hidden;
}
.summary h3 { background: var(--ink); color: var(--gold); font-family: var(--font-display); text-transform: uppercase; margin: 0; padding: .7rem 1.1rem; font-size: 1.1rem; letter-spacing: .05em; }
.summary dl { margin: 0; padding: 1.1rem 1.2rem; display: grid; grid-template-columns: max-content 1fr; gap: .55rem 1rem; }
.summary dt { font-family: var(--font-display); text-transform: uppercase; font-size: .82rem; color: #6f6350; }
.summary dd { margin: 0; }

/* ------------------------------ responsive ----------------------------- */
@media (max-width: 860px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .frame { max-width: 280px; }
  .bursts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; }
  .bar__call small { display: none; }
  .panel__stamp { display: none; }
  .panel::before { display: none; }
  .foot__in { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   HOME / LANDING PAGE  (additive - extends the system above; book.html
   is untouched. Hero changes are scoped to .hero--home.)
   ========================================================================= */

/* section shells */
.band { padding-block: clamp(2.6rem, 6vw, 4.2rem); }
.band--paper { background: var(--paper); }
.band--alt   { background: var(--paper-2); border-block: 3px solid var(--ink); }
.band__head  { text-align: center; max-width: 48ch; margin: 0 auto clamp(1.6rem, 4vw, 2.4rem); }
.band__head h2 { font-family: var(--font-display); text-transform: uppercase; line-height: .95;
  font-size: clamp(2rem, 1.5rem + 2.4vw, 3.1rem); margin: 0 0 .5rem; }
.band__head p  { color: #4a4232; margin: 0; }

/* bar: add a Book button next to the call button */
.bar__book {
  display: inline-flex; align-items: center; font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.02rem; letter-spacing: .02em; color: var(--white); background: var(--red);
  text-decoration: none; padding: .5rem .9rem; border: 3px solid var(--ink); border-radius: 9px;
  box-shadow: var(--pop-sm);
}
.bar__book:hover { transform: translate(-1px,-1px); }

/* hero (home): bigger mascot, stats sticker strip */
.hero--home .frame { max-width: 440px; transform: rotate(-3deg); }
.hero--home .hero__patch { width: clamp(120px, 18vw, 178px); right: -22px; bottom: -26px; }
.hero__phone {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.4rem; text-decoration: none;
  font-family: var(--font-display); color: var(--gold); font-size: clamp(1.9rem, 1.2rem + 3vw, 2.9rem);
  letter-spacing: .01em; -webkit-text-stroke: 1px var(--ink); text-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.hero__phone .ico { width: .8em; height: .8em; -webkit-text-stroke: 0; }
.hero__stats { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.hero__stats li {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: .86rem;
  color: var(--ink); background: var(--gold); border: 3px solid var(--ink); border-radius: 8px;
  box-shadow: var(--pop-sm); padding: .34rem .68rem;
}
.hero__stats .star { color: var(--red); -webkit-text-stroke: .4px var(--ink); }

/* services - "what the shark hunts" */
.targets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.target {
  background: var(--white); border: var(--edge) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--pop-sm); padding: 2.4rem 2rem;
  transition: transform .1s ease, box-shadow .1s ease;
  display: flex; flex-direction: column; min-height: 360px;
}
.target:hover { transform: translate(-2px,-2px); box-shadow: var(--pop); }
/* town cards have no signs list to fill the height - let them size to content */
.targets--towns .target { min-height: 0; }
.target__ico {
  width: 65px; height: 65px; display: grid; place-items: center; color: var(--red);
  background: var(--gold); border: 3px solid var(--ink); border-radius: 9px; margin-bottom: 1.3rem;
}
.target__ico svg { width: 36px; height: 36px; }
.target h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; line-height: .95; margin: 0 0 .6rem; }
.target p { margin: 0 0 1rem 0; color: #4a4232; font-size: 1.02rem; line-height: 1.5; }
.target__signs { list-style: none; margin: 0; padding: 1rem 0 0; border-top: 2px dashed var(--paper-2); display: grid; gap: .4rem; flex-grow: 1; }
.target__signs li { position: relative; padding-left: 1.2rem; font-size: .92rem; color: #3a3226; line-height: 1.4; }
.target__signs li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; background: var(--red); border: 1.5px solid var(--ink); border-radius: 2px; }

/* the legend - the real comic-book cover as the signature */
.legend { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(1.6rem, 5vw, 3.6rem); align-items: center; }
.legend__art { justify-self: center; }
.comic-frame {
  border: var(--edge) solid var(--ink); border-radius: 6px; background: var(--white);
  box-shadow: var(--pop); overflow: hidden; transform: rotate(-2.5deg); max-width: 340px;
}
.comic-frame img { width: 100%; height: auto; }
.legend__issue {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; color: var(--red);
  -webkit-text-stroke: .4px var(--ink); margin: 0 0 .5rem;
}
.legend h2 { font-family: var(--font-display); text-transform: uppercase; line-height: .95;
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3rem); margin: 0 0 .8rem; }
.legend p { color: #4a4232; margin: 0 0 1.2rem; max-width: 48ch; }

/* eyewitness reports (reviews) */
.reports { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.report {
  background: var(--white); border: var(--edge) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--pop-sm); padding: 1.3rem 1.25rem; display: flex; flex-direction: column;
}
.report__stars { color: var(--gold); -webkit-text-stroke: .5px var(--ink); font-size: 1.15rem; letter-spacing: 1px; }
.report p { margin: .5rem 0 1rem; }
.report__who { font-family: var(--font-display); text-transform: uppercase; font-size: .98rem; margin-top: auto; }
.report__where { font-size: .82rem; color: #8a7c5e; }

/* big closing CTA band */
.callout { background: var(--ink); color: var(--white); overflow: hidden;
  border-top: var(--edge) solid var(--gold); border-bottom: var(--edge) solid var(--red); }
.callout__in { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center; padding-block: clamp(2.4rem, 6vw, 3.8rem); }
.callout h2 { font-family: var(--font-display); text-transform: uppercase; line-height: .92;
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem); margin: 0 0 .6rem; }
.callout h2 .pop-red { color: var(--red); -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 rgba(0,0,0,.4); }
.callout p { color: #cdd4db; margin: 0 0 1.4rem; max-width: 46ch; }
.callout__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.callout__art { justify-self: center; }
.callout__art img { width: clamp(200px, 26vw, 320px); height: auto; transform: rotate(3deg);
  filter: drop-shadow(6px 6px 0 rgba(0,0,0,.5)); }

/* home responsive */
@media (max-width: 860px) {
  .hero--home .frame { max-width: 300px; }
  .targets, .reports { grid-template-columns: 1fr; }
  .legend { grid-template-columns: 1fr; }
  .legend__art { order: -1; }
  .callout__in { grid-template-columns: 1fr; }
  .callout__art { display: none; }
}
@media (min-width: 861px) and (max-width: 1040px) {
  .targets, .reports { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   REVISION - own the full width + a real sticky header
   ========================================================================= */

/* ben-day / newsprint tooth on the paper sections, so the full-bleed width
   reads as printed comic paper instead of dead flat cream on wide monitors. */
.band--paper {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(15,15,20,.055) 1.1px, transparent 1.35px);
  background-size: 15px 15px;
}
.band--alt {
  background-color: var(--paper-2);
  background-image: radial-gradient(rgba(15,15,20,.06) 1.1px, transparent 1.35px);
  background-size: 15px 15px;
}

/* header nav (anchor links) - makes the bar read as a real header */
.bar__nav { display: flex; gap: .15rem; margin-left: 1.3rem; }
.bar__nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: 1rem; line-height: 1; color: #e9d9ac; text-decoration: none;
  padding: .4rem .6rem; border-radius: 7px; transition: background-color .1s, color .1s;
}
.bar__nav a:hover, .bar__nav a:focus-visible { color: var(--ink); background: var(--gold); }

/* hero uses more of the wider container on big screens */
.hero--home .frame { max-width: 640px; }
.hero--home .hero__in { gap: clamp(1.5rem, 5vw, 4rem); }

@media (max-width: 900px) { .bar__nav { display: none; } }

/* =========================================================================
   INTERIOR PAGES (services / service-area / about / reviews / contact)
   ========================================================================= */
.pagehero {
  position: relative; overflow: hidden; color: var(--white);
  border-bottom: var(--edge) solid var(--gold);
  background:
    radial-gradient(circle at 15% 20%, rgba(21,159,216,.16), transparent 45%),
    radial-gradient(circle at 85% 82%, rgba(229,38,31,.15), transparent 48%),
    var(--ink);
}
.pagehero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 88% 50%, rgba(246,180,30,.045) 0deg 6deg, transparent 6deg 12deg);
}
.pagehero__in { position: relative; padding-block: clamp(2.2rem, 5vw, 3.6rem); }
.pagehero h1 { font-family: var(--font-display); text-transform: uppercase; line-height: .94;
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4.2rem); margin: 0 0 .5rem; }
.pagehero h1 .pop-red  { color: var(--red);  -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 rgba(0,0,0,.4); }
.pagehero h1 .pop-blue { color: var(--blue); -webkit-text-stroke: 2px var(--ink); text-shadow: 3px 3px 0 rgba(0,0,0,.4); }
.pagehero p { color: #eef2f5; font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); max-width: 54ch; margin: .5rem 0 0; }
.crumbs { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: #b9c2cc; margin: 0 0 .7rem; }
.crumbs a { color: #b9c2cc; text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

/* active nav link */
.bar__nav a[aria-current="page"] { color: var(--ink); background: var(--gold); }

/* "signs you need it" list inside service cards */
.target__signs { list-style: none; margin: .8rem 0 0; padding: .8rem 0 0; border-top: 2px dashed var(--paper-2); display: grid; gap: .35rem; }
.target__signs li { position: relative; padding-left: 1.15rem; font-size: .9rem; color: #4a4232; }
.target__signs li::before { content: ""; position: absolute; left: 0; top: .45em; width: 8px; height: 8px; background: var(--red); border: 1.5px solid var(--ink); border-radius: 2px; }

/* detailed info on services page cards */
.target__detail { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 2px dashed var(--paper-2); }
.target__detail p { margin: 0 0 .8rem; font-size: .95rem; color: #3a3226; line-height: 1.6; }
.target__detail p:last-child { margin-bottom: 0; }
.target__detail strong { font-weight: 700; color: var(--ink); }

/* town card sub-line */
.target__meta { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: .82rem; color: #8a7c5e; margin-top: .2rem; }

/* meet the crew */
.crew { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.crew__card { text-align: center; background: var(--white); border: var(--edge) solid var(--ink); border-radius: var(--radius); box-shadow: var(--pop-sm); padding: 1.1rem 1rem; }
.crew__face { width: 100%; aspect-ratio: 1; display: grid; place-items: center; background: var(--ink); color: var(--gold); font-family: var(--font-display); font-size: 2.6rem; border-radius: 9px; }
.crew__name { font-family: var(--font-display); text-transform: uppercase; margin: .7rem 0 0; font-size: 1.08rem; }
.crew__role { font-size: .82rem; color: #8a7c5e; }

/* rating bar */
.ratingbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; text-align: center; gap: .5rem 1.1rem;
  background: var(--white); border: var(--edge) solid var(--ink); border-radius: var(--radius); box-shadow: var(--pop-sm);
  padding: 1.1rem 1.4rem; max-width: 660px; margin: 0 auto clamp(1.6rem, 4vw, 2.4rem); }
.ratingbar__score { font-family: var(--font-display); font-size: 2.6rem; color: var(--red); -webkit-text-stroke: 1px var(--ink); line-height: 1; }
.ratingbar__stars { color: var(--gold); -webkit-text-stroke: .5px var(--ink); font-size: 1.4rem; letter-spacing: 2px; }
.ratingbar__meta { font-weight: 700; }

/* contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }
.info { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info li { display: grid; gap: .2rem; }
.info__k { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; }
.info a { color: var(--red); font-weight: 700; text-decoration: none; }
.info a:hover { text-decoration: underline; }
.hours { width: 100%; border-collapse: collapse; margin-top: .2rem; }
.hours th { text-align: left; font-family: var(--font-display); text-transform: uppercase; font-size: .86rem; font-weight: 400; padding: .18rem 0; }
.hours td { text-align: right; color: #4a4232; padding: .18rem 0; }
.mapframe { border: var(--edge) solid var(--ink); border-radius: var(--radius); box-shadow: var(--pop); overflow: hidden; }
.mapframe iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; }

@media (max-width: 860px) {
  .crew { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Booking form: honeypot + submit status ===== */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 12px 0 0; font-weight: 700; color: var(--ink); }
.form-status--error { color: var(--red); }

/* ===== Booking form: selected-photo previews ===== */
.preview { display: flex; flex-wrap: wrap; gap: .7rem; }
.preview:not(:empty) { margin-top: .85rem; }
.preview__item {
  position: relative; width: 104px; margin: 0;
  border: 3px solid var(--ink); border-radius: 9px;
  background: var(--white); box-shadow: var(--pop-sm); overflow: hidden;
}
.preview__thumb { width: 100%; height: 76px; object-fit: cover; display: block; border-bottom: 3px solid var(--ink); }
.preview__meta { display: block; padding: .32rem .42rem; }
.preview__name { display: block; font-size: .66rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview__size { display: block; font-size: .6rem; color: #666; margin-top: .1rem; }
.preview__remove {
  position: absolute; top: 5px; right: 5px; width: 22px; height: 22px; padding: 0;
  display: grid; place-items: center; font-size: 15px; line-height: 1; font-weight: 900;
  color: #fff; background: var(--red); border: 2px solid var(--ink); border-radius: 50%;
  cursor: pointer; box-shadow: 2px 2px 0 rgba(0, 0, 0, .4);
}
.preview__remove:hover { transform: translateY(-1px); }
.preview__count { margin: .7rem 0 0; font-weight: 700; color: var(--blue); }
.preview__count--error { color: var(--red); }
.dropzone--over { outline: 3px dashed var(--blue); outline-offset: 3px; }
