/* ============================================================
   Northcote & Co. — "Neo-Memphis Maximalist"
   1980s Memphis Group, modernised. Curated clash, sticker
   badges, tilted cards, hard offset shadows, squiggles.
   Bricolage Grotesque (display) + Fredoka (body).
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* paper base */
  --paper:      #fdf6e9;   /* warm cream */
  --paper-2:    #fbeecf;   /* deeper cream panel */
  --ink:        #16130f;   /* near-black outline */
  --ink-soft:   #423c33;

  /* curated Memphis clash set */
  --coral:      #ff5a5f;   /* hot coral */
  --blue:       #2f6df6;   /* electric blue */
  --yellow:     #ffcf3f;   /* sunshine */
  --mint:       #2fd4a7;   /* mint */
  --grape:      #7c5cff;   /* accent violet (used sparingly) */

  --coral-deep: #e23e43;
  --blue-deep:  #1f4fc4;
  --mint-deep:  #15a982;

  /* type */
  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --body:    "Fredoka", "Trebuchet MS", sans-serif;

  /* hard shadow + outline system */
  --line: 3px;
  --line-thick: 4px;
  --sh: 7px 7px 0 var(--ink);
  --sh-sm: 5px 5px 0 var(--ink);
  --sh-lg: 10px 10px 0 var(--ink);
  --sh-color: 7px 7px 0;

  --radius: 18px;
  --radius-lg: 28px;

  --maxw: 1180px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  color: var(--ink);
  background-color: var(--paper);
  /* confetti dot texture, subtle */
  background-image:
    radial-gradient(var(--blue) 1.5px, transparent 1.6px),
    radial-gradient(var(--coral) 1.5px, transparent 1.6px);
  background-size: 46px 46px, 46px 46px;
  background-position: 0 0, 23px 23px;
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

strong { font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }

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

/* skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; }
.skip:focus {
  left: 12px; top: 12px; background: var(--yellow); color: var(--ink);
  border: var(--line-thick) solid var(--ink); padding: 10px 16px; border-radius: 12px;
  box-shadow: var(--sh-sm); font-weight: 700;
}

/* ============================================================
   Shape / sticker primitives
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 800;
  font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 8px 16px; border-radius: 999px;
  border: var(--line-thick) solid var(--ink);
  background: var(--yellow); color: var(--ink);
  box-shadow: var(--sh-sm);
  text-transform: uppercase;
}
.badge.coral { background: var(--coral); color: var(--paper); }
.badge.blue  { background: var(--blue);  color: var(--paper); }
.badge.mint  { background: var(--mint); }
.badge.tilt-l { transform: rotate(-4deg); }
.badge.tilt-r { transform: rotate(4deg); }

/* chunky button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 14px;
  border: var(--line-thick) solid var(--ink);
  background: var(--coral); color: var(--paper);
  box-shadow: var(--sh); cursor: pointer;
  transition: transform .14s cubic-bezier(.34,1.56,.64,1), box-shadow .14s ease;
  position: relative; text-align: center;
}
.btn .arrow { transition: transform .18s cubic-bezier(.34,1.56,.64,1); }
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translate(3px,3px); box-shadow: var(--sh-sm); }
.btn:focus-visible { outline: 4px dashed var(--blue); outline-offset: 4px; }
.btn.blue   { background: var(--blue); }
.btn.mint   { background: var(--mint); color: var(--ink); }
.btn.yellow { background: var(--yellow); color: var(--ink); }
.btn.ghost  { background: var(--paper); color: var(--ink); }
.btn.lg { font-size: 1.18rem; padding: 18px 32px; }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: var(--ink);
}
.eyebrow::before {
  content: ""; width: 26px; height: 12px; border-radius: 999px;
  background: var(--coral); border: 2.5px solid var(--ink);
}

/* ============================================================
   Header
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--line-thick) solid var(--ink);
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.02em;
}
.brand .mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: var(--mint); color: var(--ink);
  border: var(--line-thick) solid var(--ink);
  border-radius: 12px; box-shadow: var(--sh-sm);
  transform: rotate(-6deg);
  font-size: 1.25rem; line-height: 1;
}
.brand .co { color: var(--coral-deep); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--display); font-weight: 700;
  font-size: 1rem; padding: 9px 14px; border-radius: 10px;
  border: 3px solid transparent;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.nav a:hover { background: var(--yellow); border-color: var(--ink); transform: rotate(-2deg); }
.nav a.active { background: var(--blue); color: var(--paper); border-color: var(--ink); box-shadow: var(--sh-sm); }
.nav a:focus-visible { outline: 3px dashed var(--blue); outline-offset: 3px; }
.head-cta { display: inline-flex; }

/* mobile nav toggle */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 12px;
  border: var(--line-thick) solid var(--ink); background: var(--yellow);
  box-shadow: var(--sh-sm); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 3px; background: var(--ink);
  border-radius: 3px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: relative; top: -7px; }
.nav-toggle span::after  { position: relative; top: 4px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Section scaffold + decorations
   ============================================================ */
section { position: relative; }
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head h2 {
  font-size: clamp(2.2rem, 6.2vw, 3.9rem); margin-top: 16px;
}
.section-head p { margin-top: 16px; font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* squiggle divider */
.squiggle { display: block; width: 100%; height: 26px; color: var(--ink); overflow: hidden; }
.squiggle svg { width: 100%; height: 100%; }

/* striped band background helper */
.stripes {
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 14px,
    rgba(22,19,15,.07) 14px 28px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-stickers { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(3rem, 10vw, 6.4rem);
  margin: 0 0 22px;
}
.hero h1 .pop {
  display: inline-block;
  color: var(--coral-deep);
  position: relative;
}
.hero h1 .box {
  display: inline-block; padding: 0 .14em;
  background: var(--yellow); border: var(--line-thick) solid var(--ink);
  border-radius: 12px; box-shadow: var(--sh-sm);
  transform: rotate(-2deg);
}
.hero .lead {
  font-size: clamp(1.12rem, 2.4vw, 1.4rem); color: var(--ink-soft);
  max-width: 48ch; margin-bottom: 30px; font-weight: 500;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { font-weight: 600; font-size: .95rem; display: inline-flex; gap: 8px; align-items: center; }
.hero-note .tick {
  width: 24px; height: 24px; border-radius: 999px; background: var(--mint);
  border: 3px solid var(--ink); display: grid; place-items: center; flex: none;
  font-size: .8rem; font-weight: 800;
}

/* hero art — stacked sticker collage */
.hero-art { position: relative; min-height: 360px; }
.hero-card {
  position: absolute; border: var(--line-thick) solid var(--ink);
  border-radius: var(--radius); box-shadow: var(--sh);
  padding: 18px 20px; background: var(--paper);
}
.hero-card.a {
  top: 0; left: 4%; width: 64%; background: var(--blue); color: var(--paper);
  transform: rotate(-5deg);
}
.hero-card.b {
  top: 32%; right: 0; width: 58%; background: var(--coral); color: var(--paper);
  transform: rotate(5deg);
}
.hero-card.c {
  bottom: 0; left: 12%; width: 56%; background: var(--mint); color: var(--ink);
  transform: rotate(-3deg);
}
.hero-card .k { font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.hero-card .v { font-weight: 600; font-size: .95rem; margin-top: 4px; }
.hero-blob {
  position: absolute; z-index: -1; inset: -6% -8% auto auto;
  width: 70%; aspect-ratio: 1; color: var(--grape); opacity: .9;
}

/* floating shape accents */
.float { position: absolute; pointer-events: none; z-index: 0; }
.float svg { width: 100%; height: 100%; }

/* ============================================================
   Stats chip strip
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip {
  display: inline-flex; align-items: baseline; gap: 10px;
  border: var(--line-thick) solid var(--ink); border-radius: 999px;
  padding: 12px 22px; box-shadow: var(--sh-sm); font-weight: 600;
  background: var(--paper);
}
.chip .n { font-family: var(--display); font-weight: 800; font-size: 1.55rem; line-height: 1; }
.chip:nth-child(1) { background: var(--yellow); transform: rotate(-2deg); }
.chip:nth-child(2) { background: var(--mint); transform: rotate(1.5deg); }
.chip:nth-child(3) { background: var(--coral); color: var(--paper); transform: rotate(-1.5deg); }
.chip:nth-child(3) .n { color: var(--paper); }
.chip:nth-child(4) { background: var(--blue); color: var(--paper); transform: rotate(2deg); }
.chip:nth-child(4) .n { color: var(--paper); }

/* ============================================================
   Tilted service cards (home)
   ============================================================ */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 34px);
}
.card {
  position: relative; background: var(--paper);
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--sh); padding: 26px 24px 24px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.card:nth-child(3n+1) { transform: rotate(-1.6deg); }
.card:nth-child(3n+2) { transform: rotate(1.2deg); }
.card:nth-child(3n+3) { transform: rotate(-0.8deg); }
.card:hover { transform: translate(-3px,-5px) rotate(0deg); box-shadow: var(--sh-lg); z-index: 2; }
.card:focus-within { transform: translate(-3px,-5px) rotate(0deg); box-shadow: var(--sh-lg); z-index: 2; }

.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  border: var(--line-thick) solid var(--ink); box-shadow: var(--sh-sm);
  display: grid; place-items: center; margin-bottom: 18px;
  transform: rotate(-6deg);
}
.card .icon svg { width: 30px; height: 30px; }
.card:nth-child(6n+1) .icon { background: var(--coral); color: var(--paper); }
.card:nth-child(6n+2) .icon { background: var(--blue); color: var(--paper); }
.card:nth-child(6n+3) .icon { background: var(--yellow); color: var(--ink); }
.card:nth-child(6n+4) .icon { background: var(--mint); color: var(--ink); }
.card:nth-child(6n+5) .icon { background: var(--grape); color: var(--paper); }
.card:nth-child(6n+6) .icon { background: var(--coral); color: var(--paper); }

.card h3 { font-size: 1.42rem; margin-bottom: 10px; }
.card .num {
  position: absolute; top: -16px; right: -12px;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-family: var(--display);
  font-weight: 800; font-size: 1.1rem; border: 3px solid var(--paper);
  box-shadow: var(--sh-sm);
}
.card p { color: var(--ink-soft); font-weight: 500; }
.card .price {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
}
.card .price .from { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-family: var(--body); font-weight: 700; }
.card .link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-family: var(--display); font-weight: 800; border-bottom: 3px solid var(--ink);
  padding-bottom: 2px; transition: gap .16s ease;
}
.card .link:hover { gap: 13px; }

/* ============================================================
   Colour-block service cards (services page)
   ============================================================ */
.blocks {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 32px);
}
.block {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--sh); padding: 32px 30px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.block:hover { transform: translate(-3px,-4px); box-shadow: var(--sh-lg); }
.block:nth-child(1) { background: var(--coral); color: var(--paper); }
.block:nth-child(2) { background: var(--blue);  color: var(--paper); }
.block:nth-child(3) { background: var(--yellow); color: var(--ink); }
.block:nth-child(4) { background: var(--mint);  color: var(--ink); }
.block:nth-child(5) { background: var(--grape); color: var(--paper); }
.block:nth-child(6) { background: var(--paper); color: var(--ink); }
.block .b-num {
  font-family: var(--display); font-weight: 800; font-size: 3.4rem;
  line-height: 1; opacity: .35; margin-bottom: 6px;
}
.block h3 { font-size: 1.7rem; margin-bottom: 12px; }
.block .blurb { font-weight: 500; margin-bottom: 18px; flex: 1; }
.block .b-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 18px; border-top: 3px solid currentColor;
}
.block .b-price { font-family: var(--display); font-weight: 800; font-size: 1.35rem; }
.block .b-price small { font-family: var(--body); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; opacity: .8; display: block; }
.block .b-deco {
  position: absolute; right: -30px; bottom: -30px; width: 130px; height: 130px;
  opacity: .22; pointer-events: none;
}
.block .btn.ghost { border-color: currentColor; }

/* ============================================================
   Process / why-us
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); }
.step { position: relative; padding-top: 12px; }
.step .shape {
  width: 76px; height: 76px; display: grid; place-items: center;
  border: var(--line-thick) solid var(--ink); box-shadow: var(--sh-sm);
  font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--paper);
  margin-bottom: 18px;
}
.step:nth-child(1) .shape { background: var(--coral); border-radius: 999px; transform: rotate(-5deg); }
.step:nth-child(2) .shape { background: var(--blue);  border-radius: 18px; transform: rotate(4deg); }
.step:nth-child(3) .shape { background: var(--mint);  color: var(--ink); border-radius: 6px; transform: rotate(-3deg) rotate(45deg); }
.step:nth-child(3) .shape span { transform: rotate(-45deg); display: block; }
.step h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-weight: 500; }

/* ============================================================
   Testimonial sticker note
   ============================================================ */
.note-wrap { display: flex; justify-content: center; }
.note {
  max-width: 640px; background: var(--yellow); color: var(--ink);
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--sh-lg); padding: 38px 40px; transform: rotate(-2deg);
  position: relative;
}
.note::before {
  content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-4deg);
  width: 120px; height: 30px; background: var(--coral); opacity: .92;
  border: 3px solid var(--ink); border-radius: 4px;
}
.note .quote { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.15; margin-bottom: 16px; }
.note .who { font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }
.note .stars { color: var(--coral-deep); font-size: 1.1rem; letter-spacing: 2px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg); background: var(--blue); color: var(--paper);
  padding: clamp(36px, 6vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 14px; }
.cta-band p { font-size: 1.15rem; max-width: 50ch; margin: 0 auto 28px; font-weight: 500; }
.cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .dots {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: radial-gradient(var(--paper) 2px, transparent 2.5px);
  background-size: 30px 30px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-card {
  background: var(--paper); border: var(--line-thick) solid var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--sh); padding: clamp(26px, 4vw, 40px);
}
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--display); font-weight: 800; margin-bottom: 8px; font-size: 1.02rem; }
.field .req { color: var(--coral-deep); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: var(--line-thick) solid var(--ink);
  border-radius: 12px; background: var(--paper-2); font-weight: 500;
  box-shadow: inset 0 0 0 0 transparent; transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; background: var(--paper); transform: translate(-2px,-2px);
  box-shadow: var(--sh-sm);
}
.field input:focus { border-color: var(--blue); }
.field textarea:focus { border-color: var(--mint-deep); }
.field.invalid input, .field.invalid textarea { border-color: var(--coral-deep); background: #fdeaea; }
.field .err { display: none; margin-top: 7px; font-weight: 700; font-size: .85rem; color: var(--coral-deep); }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none; margin-top: 18px; padding: 16px 18px; font-weight: 700;
  background: var(--mint); border: var(--line-thick) solid var(--ink);
  border-radius: 12px; box-shadow: var(--sh-sm);
}
.form-success.show { display: block; animation: pop .4s cubic-bezier(.34,1.56,.64,1); }

.info-stack { display: grid; gap: 22px; }
.info-card {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--sh-sm); padding: 24px 24px;
}
.info-card.nap { background: var(--coral); color: var(--paper); transform: rotate(-1.5deg); }
.info-card.hours { background: var(--yellow); color: var(--ink); transform: rotate(1deg); }
.info-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.info-card .row { display: flex; gap: 10px; padding: 5px 0; font-weight: 600; }
.info-card .row dt { width: 92px; flex: none; opacity: .85; font-weight: 700; }
.info-card .nap-line { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-weight: 600; }
.info-card .nap-line .ico { flex: none; width: 24px; }

.map-box {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--sh); height: 240px; position: relative; overflow: hidden;
  background: var(--mint);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(22,19,15,.16) 38px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22,19,15,.16) 38px 40px);
}
.map-box .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%);
  display: grid; place-items: center; text-align: center;
}
.map-box .pin .dot {
  width: 34px; height: 34px; border-radius: 999px 999px 999px 2px; background: var(--coral);
  border: var(--line-thick) solid var(--ink); box-shadow: var(--sh-sm);
  transform: rotate(45deg); margin: 0 auto 14px;
}
.map-box .pin .lbl {
  font-family: var(--display); font-weight: 800; background: var(--paper);
  border: 3px solid var(--ink); border-radius: 10px; padding: 6px 12px; box-shadow: var(--sh-sm);
}
.map-box .road {
  position: absolute; left: -10%; right: -10%; top: 58%; height: 24px;
  background: var(--ink); transform: rotate(-7deg);
}
.map-box .road::after {
  content: ""; position: absolute; inset: 0; margin: auto 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 18px, transparent 18px 34px);
}

/* ============================================================
   Blog page
   ============================================================ */
.featured {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg); overflow: hidden; display: grid;
  grid-template-columns: 1fr 1fr; background: var(--paper);
  margin-bottom: clamp(34px, 5vw, 54px);
}
.featured .f-art {
  background: var(--blue); position: relative; min-height: 280px; overflow: hidden;
  display: grid; place-items: center;
}
.featured .f-art .big {
  font-family: var(--display); font-weight: 800; font-size: clamp(3rem,8vw,5rem);
  color: var(--paper); opacity: .9; transform: rotate(-6deg); text-align: center; line-height: .9;
}
.featured .f-body { padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; }
.featured .f-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.featured h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.featured p { color: var(--ink-soft); font-weight: 500; margin-bottom: 22px; flex: 1; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 30px); }
.post {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--sh-sm); overflow: hidden; background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.post:hover { transform: translate(-3px,-4px) rotate(-1deg); box-shadow: var(--sh); }
.post .p-art { height: 120px; position: relative; overflow: hidden; border-bottom: var(--line-thick) solid var(--ink); }
.post:nth-child(5n+1) .p-art { background: var(--coral); }
.post:nth-child(5n+2) .p-art { background: var(--yellow); }
.post:nth-child(5n+3) .p-art { background: var(--mint); }
.post:nth-child(5n+4) .p-art { background: var(--grape); }
.post:nth-child(5n+5) .p-art { background: var(--blue); }
.post .p-art .pat {
  position: absolute; inset: 0; opacity: .35;
  background-image: radial-gradient(var(--ink) 2px, transparent 2.5px);
  background-size: 22px 22px;
}
.post .p-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post .tag {
  align-self: flex-start; font-family: var(--display); font-weight: 800;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 999px; border: 3px solid var(--ink);
  background: var(--paper); box-shadow: 3px 3px 0 var(--ink); margin-bottom: 14px;
}
.post h3 { font-size: 1.28rem; margin-bottom: 10px; line-height: 1.05; }
.post p { color: var(--ink-soft); font-weight: 500; font-size: .96rem; flex: 1; margin-bottom: 16px; }
.post .p-meta { display: flex; gap: 12px; align-items: center; font-weight: 700; font-size: .85rem; color: var(--ink-soft); }
.post .p-meta .read {
  background: var(--ink); color: var(--paper); padding: 3px 9px; border-radius: 999px; font-size: .76rem;
}

/* newsletter */
.news {
  border: var(--line-thick) solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg); background: var(--coral); color: var(--paper);
  padding: clamp(34px, 5vw, 54px); text-align: center; position: relative; overflow: hidden;
}
.news h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 12px; }
.news p { font-weight: 500; max-width: 46ch; margin: 0 auto 24px; }
.news-form { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; max-width: 540px; margin: 0 auto; }
.news-form input {
  flex: 1; min-width: 220px; padding: 15px 18px; border: var(--line-thick) solid var(--ink);
  border-radius: 12px; background: var(--paper); color: var(--ink); font-weight: 500;
}
.news-form input:focus { outline: none; box-shadow: var(--sh-sm); transform: translate(-2px,-2px); }
.news-ok { display: none; margin-top: 16px; font-weight: 800; font-family: var(--display); }
.news-ok.show { display: block; animation: pop .4s cubic-bezier(.34,1.56,.64,1); }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: var(--line-thick) solid var(--ink);
  border-bottom: var(--line-thick) solid var(--ink);
  background: var(--ink); color: var(--paper); overflow: hidden; padding: 14px 0;
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track .item {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 26px;
  font-family: var(--display); font-weight: 800; font-size: 1.2rem; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .02em;
}
.marquee-track .item .sep { color: var(--yellow); font-size: 1.4rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Footer
   ============================================================ */
.site-foot {
  background: var(--ink); color: var(--paper);
  border-top: var(--line-thick) solid var(--ink); margin-top: 0;
  padding: clamp(48px, 7vw, 76px) 0 28px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.site-foot .brand { color: var(--paper); margin-bottom: 16px; }
.site-foot .brand .co { color: var(--coral); }
.foot-blurb { color: #c9c2b8; font-weight: 500; max-width: 30ch; }
.foot-col h4 { font-size: 1.05rem; margin-bottom: 16px; color: var(--yellow); text-transform: uppercase; letter-spacing: .06em; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col a { color: #d6cfc4; font-weight: 500; transition: color .14s ease; }
.foot-col a:hover { color: var(--paper); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.foot-col .stick {
  display: inline-block; margin-top: 6px; background: var(--mint); color: var(--ink);
  border: 3px solid var(--paper); border-radius: 10px; padding: 8px 12px; font-weight: 700;
  box-shadow: 4px 4px 0 var(--coral); transform: rotate(-2deg);
}
.foot-bar {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 3px dashed #4a443b; color: #b3aca2; font-weight: 600; font-size: .92rem;
}
.foot-bar .dotline { display: inline-flex; gap: 6px; align-items: center; }
.foot-bar .dotline i { width: 12px; height: 12px; border-radius: 999px; display: inline-block; }

/* ============================================================
   Animations + utilities
   ============================================================ */
@keyframes pop { 0% { transform: scale(.9); } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }
@keyframes wiggle {
  0%,100% { transform: rotate(var(--rot, 0deg)); }
  25% { transform: rotate(calc(var(--rot, 0deg) - 5deg)); }
  75% { transform: rotate(calc(var(--rot, 0deg) + 5deg)); }
}

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s cubic-bezier(.34,1.4,.64,1); }

.spin-slow { animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; max-width: 460px; margin: 8px auto 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured .f-art { min-height: 200px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav, .head-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-head.open .nav {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--paper); border-bottom: var(--line-thick) solid var(--ink);
    padding: 16px clamp(18px,5vw,40px) 20px;
  }
  .site-head.open .nav a { text-align: center; border: 3px solid var(--ink); }
  .blocks { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* clamp tilts + shadows so nothing overflows on small screens */
  :root { --sh: 5px 5px 0 var(--ink); --sh-lg: 6px 6px 0 var(--ink); --sh-sm: 4px 4px 0 var(--ink); }
  .card, .chip, .badge, .info-card, .note, .brand .mark, .hero-card { transform: none !important; }
  .hero-card { position: relative; width: 100% !important; inset: auto !important; margin-bottom: 14px; }
  .hero-art { min-height: 0; display: grid; gap: 14px; }
  .hero-blob, .float { display: none; }
  .note::before { width: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
