/*
  Mesh Print Studio — visual design layer.
  Concept: the page behaves like a screenprint. A faint mesh-screen texture,
  registration/crop marks, CMYK ink-strip dividers, and mis-registered
  offset display type carry the print-studio identity. base.css handles the
  reset + fluid scale; every colour, component and layout decision lives here.
*/

/* ---------------------------------------------------------------------------
   Fonts — display grotesque (Archivo), body (Inter), technical mono (Space Mono)
--------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap");

/* ---------------------------------------------------------------------------
   Design tokens
--------------------------------------------------------------------------- */
:root {
  /* Ink palette — pastel screen-print inks on warm paper */
  --paper:        #f6f1e7; /* warm stock */
  --paper-deep:   #efe7d6; /* recessed panels */
  --ink:          #211c33; /* deep aubergine, primary text */
  --ink-soft:     #4a4460; /* secondary text */

  --lilac:        #c9b8f0;
  --lilac-deep:   #9d86e0;
  --coral:        #ff7a5c;
  --sunshine:     #ffd24c;
  --cobalt:       #3b4cc0;
  --sky:          #7ec8e3;
  --magenta:      #ed008c; /* registration line / brand pink */
  --brand:        #ed008c; /* flood and pull. logo pink */
  --mint:         #a8e0c8;

  /* Roles */
  --accent:       var(--coral);
  --line:         rgba(33, 28, 51, 0.16);
  --line-strong:  rgba(33, 28, 51, 0.9);

  /* Type families */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Layout */
  --wrap: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px; /* squared, print-block feel */

  /* Bigger display step than base for the hero */
  --step-5: clamp(2.75rem, 1.4rem + 6vw, 6rem);
  --step-6: clamp(2.5rem, 0.9rem + 6vw, 7rem);
}

/* ---------------------------------------------------------------------------
   Base elements
--------------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
}

/* Mesh-screen texture: a fine woven grid, painted on one fixed, viewport-sized
   layer so it stays cheap to composite and scroll-stable on long pages. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(33, 28, 51, 0.035) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(33, 28, 51, 0.035) 0 1px, transparent 1px 6px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

h1 { font-size: var(--step-5); line-height: 0.94; }
h2 { font-size: var(--step-4); line-height: 1.02; }
h3 { font-size: var(--step-2); line-height: 1.1; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; max-width: 62ch; }
a { color: inherit; text-underline-offset: 0.18em; }

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

/* Focus visibility (overrides base currentColor with a high-contrast ring) */
:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------------------------------------------------------------------------
   Layout helpers
--------------------------------------------------------------------------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  position: relative;
}

.section--tint { background: var(--paper-deep); }

/* Eyebrow / technical label — the "print spec" voice */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 0;
  border-top: 2px solid var(--accent);
}

/* CMYK-style ink strip divider — a row of pastel ink blocks */
.ink-strip {
  display: flex;
  height: 0.65rem;
  width: 100%;
}
.ink-strip span { flex: 1; }
.ink-strip span:nth-child(1) { background: var(--sunshine); }
.ink-strip span:nth-child(2) { background: var(--coral); }
.ink-strip span:nth-child(3) { background: var(--magenta); }
.ink-strip span:nth-child(4) { background: var(--lilac); }
.ink-strip span:nth-child(5) { background: var(--cobalt); }
.ink-strip span:nth-child(6) { background: var(--mint); }

/* ---------------------------------------------------------------------------
   Mis-registered offset display type (the signature)
   Two faint pastel layers printed slightly off behind the ink layer.
--------------------------------------------------------------------------- */
.offset {
  position: relative;
  color: var(--ink);
  text-shadow:
    0.045em 0.045em 0 var(--coral),
   -0.04em -0.04em 0 var(--lilac);
}
.offset--cool {
  text-shadow:
    0.045em 0.045em 0 var(--sky),
   -0.04em -0.04em 0 var(--magenta);
}

/* Registration crop marks around a block */
.reg {
  position: relative;
}
.reg::before,
.reg::after,
.reg > .reg-tr,
.reg > .reg-br {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  --rc: var(--line-strong);
}
.reg::before { /* top-left */
  top: -10px; left: -10px;
  border-top: 2px solid var(--rc);
  border-left: 2px solid var(--rc);
}
.reg::after { /* bottom-right */
  bottom: -10px; right: -10px;
  border-bottom: 2px solid var(--rc);
  border-right: 2px solid var(--rc);
}
.reg > .reg-tr { top: -10px; right: -10px; border-top: 2px solid var(--line-strong); border-right: 2px solid var(--line-strong); }
.reg > .reg-br { bottom: -10px; left: -10px; border-bottom: 2px solid var(--line-strong); border-left: 2px solid var(--line-strong); }

/* Registration target dot (small crosshair circle) */
.reg-target {
  width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.reg-target::before,
.reg-target::after {
  content: ""; position: absolute; background: var(--ink);
}
.reg-target::before { left: 50%; top: -0.5rem; bottom: -0.5rem; width: 2px; transform: translateX(-50%); }
.reg-target::after  { top: 50%; left: -0.5rem; right: -0.5rem; height: 2px; transform: translateY(-50%); }

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */
/* One hollow/ghost button style used throughout the site. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  box-shadow: 4px 4px 0 rgba(33, 28, 51, 0.14);
}
.btn:hover {
  transform: translate(-2px, -2px);
  background: var(--sunshine);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }

/* Modifiers kept for markup compatibility — all render as the same hollow style */
.btn--ghost,
.btn--accent {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(33, 28, 51, 0.14);
}
.btn--ghost:hover,
.btn--accent:hover { background: var(--sunshine); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }

/* ---------------------------------------------------------------------------
   Header / nav
--------------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding-block: 0.85rem;
}

.logo {
  display: inline-block;
  width: 3.2rem;
  flex: none;
  line-height: 0;
  text-decoration: none;
}
.logo__dark,
.logo__light { width: 100%; height: auto; }
.logo__dark { display: block; }
.logo__light { display: none; }
/* Light-text logo swaps in when the dark full-screen menu is open */
body.nav-open .logo__dark { display: none; }
body.nav-open .logo__light { display: block; }

[data-nav-menu] ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
[data-nav-menu] a {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.35rem 0;
  position: relative;
}
[data-nav-menu] a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.15rem;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
[data-nav-menu] a:hover::after,
[data-nav-menu] a[aria-current="page"]::after { transform: scaleX(1); }
[data-nav-menu] a[aria-current="page"] { color: var(--ink); }

.nav-cta { }
[data-nav-menu] li.nav-cta a {
  border: 2px solid var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  background: var(--sunshine);
}
[data-nav-menu] li.nav-cta a::after { display: none; }
[data-nav-menu] li.nav-cta a:hover { background: var(--ink); color: var(--paper); }

/* Burger button */
[data-nav-toggle] {
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 0.4rem;
  cursor: pointer;
  line-height: 0;
}
.logo { position: relative; z-index: 1200; }

/* When the full-screen overlay is open, the ink-dark background hides the
   dark toggle button. Flip it to paper so it stays a visible close control. */
body.nav-open [data-nav-toggle] {
  color: var(--paper);
  border-color: var(--paper);
}

/* Mobile full-screen overlay */
@media (max-width: 47.99em) {
  html:not(.no-js) [data-nav-menu].is-open {
    background: var(--ink);
    color: var(--paper);
    padding: 5.5rem var(--gutter) 2rem;
    justify-content: center;
    gap: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px);
  }
  html:not(.no-js) [data-nav-menu].is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
  }
  html:not(.no-js) [data-nav-menu].is-open a {
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 12vw, 3.5rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding: 0.35rem 0;
  }
  html:not(.no-js) [data-nav-menu].is-open a::after { bottom: 0.2rem; height: 5px; }
  html:not(.no-js) [data-nav-menu].is-open li.nav-cta a {
    border: none; background: transparent; color: var(--sunshine); padding: 0.35rem 0;
  }
}

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 8vw, 7rem);
  overflow: hidden;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sunshine);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.75rem;
}
.hero__badge .dot {
  width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,122,92,0.3);
}
.hero h1 {
  font-size: var(--step-6);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.86;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero__lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

/* ---------------------------------------------------------------------------
   Generic content
--------------------------------------------------------------------------- */
.lead { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); color: var(--ink-soft); max-width: 54ch; }

.grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (min-width: 40em) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Feature / value cards */
.card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  box-shadow: 5px 5px 0 rgba(33,28,51,0.12);
  position: relative;
}
.card h3 { margin-top: 0.4rem; }
.card__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.swatch {
  width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

/* Split section: text + panel */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 52em) { .split { grid-template-columns: 1.05fr 0.95fr; } .split--rev > :first-child { order: 2; } }

/* Decorative print panel (used where a photo would sit later) */
.print-panel {
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: var(--lilac);
  box-shadow: 8px 8px 0 rgba(33,28,51,0.14);
}
.print-panel--coral { background: var(--coral); }
.print-panel--sky { background: var(--sky); }
.print-panel--mint { background: var(--mint); }
.print-panel__grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(33,28,51,0.14) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(33,28,51,0.14) 0 1px, transparent 1px 12px);
  mix-blend-mode: multiply;
}
.print-panel__label {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  background: var(--paper); border: 2px solid var(--ink); padding: 0.3rem 0.6rem;
}
/* offset ink circles inside a panel */
.print-panel__ink {
  position: absolute; width: 46%; aspect-ratio: 1; border-radius: 50%;
  mix-blend-mode: multiply;
}

/* ---------------------------------------------------------------------------
   Workshop cards
--------------------------------------------------------------------------- */
.workshop {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(33,28,51,0.12);
}
.workshop__top {
  padding: 1.15rem 1.35rem;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.workshop__top--lilac { background: var(--lilac); }
.workshop__top--coral { background: var(--coral); }
.workshop__top--sun   { background: var(--sunshine); }
.workshop__top--sky    { background: var(--sky); }
.workshop__top--mint   { background: var(--mint); }
.tag {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  background: var(--paper); border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.25rem 0.7rem; white-space: nowrap;
}
.workshop__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.workshop__body h3 { font-size: var(--step-1); }
.workshop__meta {
  list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft);
}
.workshop__meta li { display: flex; gap: 0.6rem; }
.workshop__meta b { color: var(--ink); font-weight: 700; min-width: 4.5rem; display: inline-block; }
.workshop__body .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------------
   Forms
--------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.15rem;
  max-width: 40rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.field .req { color: var(--coral); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 3px solid var(--cobalt); outline-offset: 2px; }
.field--row { display: grid; gap: 1.15rem; }
@media (min-width: 34em) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__note {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft);
}
.form__status {
  display: none;
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--mint);
  background: var(--paper);
  padding: 1rem 1.15rem;
  font-weight: 500;
}
.form__status.is-visible { display: block; }

/* ---------------------------------------------------------------------------
   Callout / CTA band
--------------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(2rem, 1.5rem + 4vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--paper); }
.cta-band h2 .offset { text-shadow: 0.045em 0.045em 0 var(--coral), -0.04em -0.04em 0 var(--sky); }
.cta-band .btn { color: var(--paper); border-color: var(--paper); background: transparent; box-shadow: 4px 4px 0 rgba(255,255,255,0.25); }
.cta-band .btn:hover { background: var(--sunshine); color: var(--ink); border-color: var(--sunshine); box-shadow: 6px 6px 0 var(--coral); }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
footer {
  border-top: 2px solid var(--ink);
  background: var(--paper-deep);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
}
.footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 46em) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
footer h4 {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  margin: 0 0 1rem;
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__links a { text-decoration: none; font-weight: 500; }
.footer__links a:hover { text-decoration: underline; }
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer__legal a { color: var(--ink-soft); text-decoration: none; }
.footer__legal a:hover { color: var(--ink); text-decoration: underline; }

/* Agency credit */
.footer__credit {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.footer__built {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer__built:hover { color: var(--ink); }
.footer__built .bolt-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 4px;
  padding: 5px 7px;
  transition: transform 0.15s ease;
}
.footer__built:hover .bolt-tile { transform: translateY(-1px); }
.footer__built .bolt-tile img { height: 16px; width: auto; display: block; }
.footer__built .bolt-name { color: inherit; }
.footer__wordmark {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  text-transform: lowercase;
}
.footer__wordmark .fw-dot { color: var(--brand); }
.footer__wordmark:hover .fw-dot { color: var(--coral); }
.footer__brand p { margin-top: 1rem; max-width: 34ch; color: var(--ink-soft); }

/* ---------------------------------------------------------------------------
   Cookie consent banner (built by consent.js)
--------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--brand);
  box-shadow: 0 -8px 24px rgba(33, 28, 51, 0.25);
}
.cookie-banner__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding-block: 1.25rem;
  display: grid;
  gap: 1rem 2rem;
  align-items: center;
}
@media (min-width: 52em) {
  .cookie-banner__inner { grid-template-columns: 1fr auto; }
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 0.3rem;
}
.cookie-banner__text p { margin: 0; max-width: 68ch; color: rgba(246, 241, 231, 0.9); }
.cookie-banner__text a { color: var(--sunshine); text-underline-offset: 0.15em; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-banner .btn {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.cookie-banner .btn:hover { background: var(--sunshine); color: var(--ink); border-color: var(--sunshine); box-shadow: 6px 6px 0 var(--brand); }

/* Inline text link style within prose (buttons keep their own styling) */
.prose a:not(.btn) { color: var(--cobalt); text-decoration: underline; font-weight: 500; }
.prose a:not(.btn):hover { color: var(--ink); }

/* Utility */
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; margin-inline: auto; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3.5rem); }
.flag {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft);
  background: repeating-linear-gradient(45deg, rgba(255,210,76,0.35) 0 8px, transparent 8px 16px);
  border: 1px dashed var(--ink-soft); padding: 0.5rem 0.7rem; border-radius: var(--radius);
}
