/* ============================================================================
   AVANTWERK — BRAND TOKENS
   The single source of truth for Avantwerk's visual identity.
   Drop this into any Avantwerk surface (site, app, deck, email) and use the
   var(--aw-*) tokens — never hard-code a hex or a font name again.

   Rules and reasoning: BRAND.md. Precedence and file map: README.md.
   Amended 2026-08-27 — added the lede step, spacing tokens, the lockup and
   note primitives, a focus ring, a movement duration + reduced-motion rule,
   the quiet closing mark, and the secondary-button padding correction.
   ============================================================================ */

:root {
  /* ---- Colour: monochrome base + one blue accent. No other hues. ---- */
  --aw-bg:            #FFFFFF; /* page background */
  --aw-bg-soft:       #FAFAFA; /* alternating band / recessed surface */
  --aw-bg-card:       #F5F5F5; /* card / chip fill */
  --aw-fg:            #0A0A0A; /* primary text (near-black, not pure) */
  --aw-fg-muted:      #525252; /* body, secondary text, the mono sub-label */
  --aw-fg-quiet:      #A3A3A3; /* ORNAMENT ONLY — 2.3:1 on white, fails AA for text.
                                  Section numbers, meta, the closing mark. Nothing
                                  a reader must actually read. See BRAND.md §3. */
  --aw-border:        #E5E5E5; /* hairlines, card edges, the lockup divider */
  --aw-border-strong: #171717; /* emphasis edges */
  --aw-accent:        #2563EB; /* THE Avantwerk blue — mark, links, CTA, active state */
  --aw-accent-hover:  #1D4ED8; /* accent, pressed/hover */
  --aw-accent-soft:   #9DBBFF; /* accent on a dark ground only (dark chrome, cookie bar links) */

  /* ---- The mark's diagonal, as a mask. ONE definition of the geometry; every
     surface that draws the glyph masks a coloured box with this, so the colour
     stays var(--aw-accent) and the shape can never drift file to file.
     19.05° off vertical, cut 21.87% of the cap-height square — measured off the capital
     A of Inter Tight 700. See BRAND.md §2. ---- */
  --aw-mark-cut: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M0 0H100V100H0ZM21.805 100 L43.671 100 L78.195 0 L56.329 0Z'/%3E%3C/svg%3E");
  --aw-mark-size: 0.7275em; /* exact Inter Tight 700 cap height */
  --aw-mark-min:  12px;   /* cap-height construction at the 17px nav reference */
  --aw-mark-asset-size: var(--aw-mark-size); /* cropped SVG viewport: box equals visible square */
  --aw-mark-asset-start: 0em; /* no hidden SVG padding to compensate */
  --aw-mark-asset-gap: 0.6em; /* visible square to wordmark */
  --aw-mark-optical-y: 0em; /* equal-height square and capitals share one centre */
  --aw-mark-quiet-size: 18px; /* closing signature in the footer baseline */

  /* ---- Type: three self-hosted families, nothing else. ---- */
  --aw-font-display: "Inter Tight", -apple-system, system-ui, sans-serif;
  --aw-font-body:    "Inter", -apple-system, system-ui, sans-serif;
  --aw-font-mono:    "JetBrains Mono", "IBM Plex Mono", Menlo, monospace;

  /* ---- Type scale (fluid; clamp keeps it responsive — never add a
     mobile-only font-size on top of these). ---- */
  --aw-step-hero:    clamp(2.6rem, 6.2vw, 4.75rem);   /* home hero */
  --aw-step-h1:      clamp(2.25rem, 5vw, 3.75rem);    /* page hero */
  --aw-step-h2:      clamp(2rem, 4vw, 2.875rem);      /* section title */
  --aw-step-figure:  clamp(2.75rem, 5.5vw, 4.25rem);  /* big metric */
  --aw-step-lede:    1.1875rem;                       /* hero / section lede */
  --aw-step-body:    1.0625rem;                       /* section body */
  --aw-step-note:    0.75rem;                         /* mono note */
  --aw-step-caption: 0.6875rem;                       /* mono eyebrow / label / sub-label */

  --aw-lh-display:   0.98;
  --aw-lh-lede:      1.6;
  --aw-lh-note:      1.7;
  --aw-measure-lede: 640px;  /* lede max width */
  --aw-measure-note: 330px;  /* mono note max width — this is what enforces the 2-line cap */

  /* ---- Layout. Breakpoints are documented values, used in @media below;
     CSS custom properties cannot be used in media queries. ---- */
  --aw-measure:       1080px; /* page measure */
  --aw-gutter:        40px;   /* >= 1024 */
  --aw-gutter-md:     32px;   /* 768 - 1023 */
  --aw-gutter-sm:     20px;   /* < 768 */
  --aw-section-step:  56px;   /* section padding, >= 768 */
  --aw-section-step-sm: 40px; /* < 768 */
  --aw-touch-min:     44px;   /* any touch layout (<= 1023) */
  --aw-touch-row:     52px;   /* nav sheet row */
  --aw-touch-btn:     48px;   /* mobile button */

  /* ---- Motion + shape ---- */
  --aw-radius:      6px;   /* buttons, chips */
  --aw-radius-card: 10px;  /* cards, frames */
  --aw-ease:        120ms ease; /* colour changes */
  --aw-ease-move:   200ms ease; /* transforms — 120ms reads as a glitch on movement */
  --aw-track-tight: -0.04em;  /* display tracking */
  --aw-track-body:  -0.005em; /* body tracking */
}

/* ---- Self-hosted fonts (GDPR: no third-party font request, visitor IP never
   leaves the server). The .woff2 files ship in each surface's /fonts/ dir —
   Inter 400/500/600/700, Inter Tight 500/600/700/800, JetBrains Mono 400/500,
   latin + latin-ext subsets. Point `src:` at wherever you vendor them.
   A Google Fonts <link> is a compliance defect, not a shortcut. ---- */

/* ---- Base defaults every Avantwerk surface inherits. ---- */
body {
  font-family: var(--aw-font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--aw-fg);
  background: var(--aw-bg);
  font-feature-settings: "tnum" 1, "kern" 1, "ss01" 1;
  letter-spacing: var(--aw-track-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Focus: one rule for everything interactive. Never `outline: none`
   without a replacement — a keyboard user then cannot see where they are. ---- */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--aw-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- The Avantwerk mark: wordmark in Inter Tight 700, preceded by the blue
   square cut by one diagonal. That glyph IS the logo — do not restyle it. ---- */
.aw-mark {
  font-family: var(--aw-font-display);
  font-weight: 700;
  font-size: 1.0625rem; /* nav reference: 17px type, 12.37px visible mark */
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--aw-fg);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.aw-mark::before {
  content: "";
  display: inline-block;
  flex: none;
  width: var(--aw-mark-size);
  height: var(--aw-mark-size);
  background: var(--aw-accent);
  -webkit-mask: var(--aw-mark-cut) center / contain no-repeat;
          mask: var(--aw-mark-cut) center / contain no-repeat;
  margin-right: 0.6em;
  transform: translateY(var(--aw-mark-optical-y));
}
/* Mark-only SVG assets use a cropped 20x20 viewport: their element box is the
   visible square, exactly like the CSS primitive. Clear space belongs to the
   placement around a lockup, never as invisible pixels inside the mark asset. */
.aw-mark--asset::before { display: none; }
.aw-mark__glyph {
  display: block;
  flex: none;
  width: var(--aw-mark-asset-size);
  height: var(--aw-mark-asset-size);
  margin-left: var(--aw-mark-asset-start);
  margin-right: var(--aw-mark-asset-gap);
  transform: translateY(var(--aw-mark-optical-y));
}
/* On a dark ground the mark takes the soft blue — true accent measures 2.9:1
   on dark chrome, under the 3.0:1 floor for UI graphics. */
.aw-mark--on-dark { color: #FAFAFA; }
.aw-mark--on-dark::before { background: var(--aw-accent-soft); }

/* The product sub-label. Mono 500 at caption size in muted grey behind an
   --aw-border hairline. Never dimmed with opacity — that drags the divider
   grey with it and drops the label below the smallest documented step. */
.aw-mark__label {
  font-family: var(--aw-font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: var(--aw-step-caption);
  line-height: 1;
  color: var(--aw-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 11px;
  margin-left: 11px;
  border-left: 1px solid var(--aw-border);
}
/* Below 420px the lockup drops the sub-label rather than shrinking — shrinking
   pushes the glyph under --aw-mark-min. */
@media (max-width: 419px) {
  .aw-mark__label { display: none; }
}

/* The quiet closing signature: glyph alone, bottom-right of a footer baseline
   row. One of exactly two sanctioned recolours (BRAND.md §2.2). */
.aw-mark-quiet {
  display: block;
  width: var(--aw-mark-quiet-size);
  height: var(--aw-mark-quiet-size);
  background: var(--aw-fg-quiet);
  -webkit-mask: var(--aw-mark-cut) center / contain no-repeat;
          mask: var(--aw-mark-cut) center / contain no-repeat;
}

/* ---- The one primary button. Blue fill, white text, 6px radius. ---- */
.aw-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* for a spinner — NOT for an arrow. No glyphs in labels. */
  background: var(--aw-accent);
  color: #FFFFFF;
  font-family: var(--aw-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--aw-radius);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--aw-ease);
  letter-spacing: var(--aw-track-body);
}
.aw-btn:hover { background: var(--aw-accent-hover); }

/* ---- The one secondary button. Outlined, pairs with the blue primary.
   Padding is 12px 21px, NOT 13px 22px: the 1px border has to come out of the
   padding or this button renders 2px taller than the primary beside it. ---- */
.aw-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--aw-bg);
  color: var(--aw-fg);
  font-family: var(--aw-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 21px;
  border-radius: var(--aw-radius);
  border: 1px solid var(--aw-border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--aw-ease), background var(--aw-ease);
  letter-spacing: var(--aw-track-body);
}
.aw-btn-secondary:hover { border-color: var(--aw-fg); background: var(--aw-bg-soft); }

/* On a touch layout every target clears 44px; mobile buttons go full-width. */
@media (max-width: 1023px) {
  .aw-btn, .aw-btn-secondary { min-height: var(--aw-touch-min); }
}
@media (max-width: 767px) {
  .aw-btn, .aw-btn-secondary {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: var(--aw-touch-btn);
  }
}

/* ---- The eyebrow: mono, uppercase, tracked-out, tiny blue square before it.
   The 6px square stays SOLID and uncut, deliberately. It is a bullet, not the
   logo — at 6px the diagonal would be 1.2px of counter, which reads as a dirty
   dot rather than a mark. The glyph is cut; the bullet is not. ---- */
.aw-eyebrow {
  font-family: var(--aw-font-mono);
  font-size: var(--aw-step-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--aw-fg-muted);
  display: flex;
  align-items: flex-start; /* bullet sits on the FIRST line, not the block's middle */
  gap: 10px;
}
.aw-eyebrow::before {
  content: "";
  display: block;
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--aw-accent);
  margin-top: 5px; /* centres the bullet on a caption-size line */
}

/* ---- Mono / note: the annotation voice. Sentence case, capped at two lines by
   its measure. Running body copy is never set in mono. ---- */
.aw-note {
  font-family: var(--aw-font-mono);
  font-size: var(--aw-step-note);
  line-height: var(--aw-lh-note);
  color: var(--aw-fg-muted);
  max-width: var(--aw-measure-note);
}
.aw-note--bulleted {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: none;
}
.aw-note--bulleted::before {
  content: "";
  display: block;
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--aw-accent);
  margin-top: 8px;
}

/* ---- Lede + closing emphasis. The weight jump on the last sentence is the
   rhetorical move; 500 is too quiet to make it. ---- */
.aw-lede {
  font-size: var(--aw-step-lede);
  line-height: var(--aw-lh-lede);
  color: var(--aw-fg-muted);
  max-width: var(--aw-measure-lede);
}
.aw-lede strong { font-weight: 600; color: var(--aw-fg); }
@media (max-width: 767px) { .aw-lede { font-size: 1rem; } }

/* ---- Card ---- */
.aw-card {
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-card);
  background: var(--aw-bg);
  padding: 30px 32px;
}

/* ---- Emphasis block. Replaces the rounded panel with a coloured left edge —
   that shape is not in this system. Accent lands on the date alone. ---- */
.aw-emphasis {
  border-top: 1px solid var(--aw-border-strong);
  padding-top: 20px;
}
.aw-emphasis__line {
  font-family: var(--aw-font-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

/* ---- Page shell ---- */
.aw-wrap {
  max-width: var(--aw-measure);
  margin: 0 auto;
  padding: 0 var(--aw-gutter);
}
.aw-section { padding: var(--aw-section-step) 0; border-bottom: 1px solid var(--aw-border); }
@media (max-width: 1023px) { .aw-wrap { padding: 0 var(--aw-gutter-md); } }
@media (max-width: 767px) {
  .aw-wrap { padding: 0 var(--aw-gutter-sm); }
  .aw-section { padding: var(--aw-section-step-sm) 0; }
}

/* ---- Respect the reader's motion setting. ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================================
   AVANTWERK — JURISDICTION PALETTES  (GENERATED — DO NOT EDIT BY HAND)
   Emitted by assets/gen-jurisdiction-palettes.mjs from one base hex per market.
   Nine roles per market, derived in OKLCH: hue fixed, lightness and chroma moved.
   Regenerate:  node brand/assets/gen-jurisdiction-palettes.mjs > brand/tokens-jurisdiction.css
   Rules and provenance: BRAND.md §5e.
   ============================================================================ */

/* Polska — Zielony żabot adwokata (sourced) */
[data-market="pl"] {
  --aw-jur: #1C5138;
  --aw-jur-hover: #003C24;
  --aw-jur-soft: #9CD3B4;
  --aw-jur-ink: #052014;
  --aw-jur-muted: #475E51;
  --aw-jur-tint: #F2F9F5;
  --aw-jur-tint-strong: #E4F0E9;
  --aw-jur-border: #D3E3D9;
  --aw-jur-rule: #061B10;
}

/* United Kingdom — Counsel's blue bag (sourced) */
[data-market="uk"] {
  --aw-jur: #2563EB;
  --aw-jur-hover: #013EC5;
  --aw-jur-soft: #A7C5FD;
  --aw-jur-ink: #0E1A32;
  --aw-jur-muted: #4B5872;
  --aw-jur-tint: #F3F7FF;
  --aw-jur-tint-strong: #E5EDFC;
  --aw-jur-border: #D4DEF3;
  --aw-jur-rule: #0C1628;
}

/* Deutschland — Stahlblau (sourced) */
[data-market="de"] {
  --aw-jur: #20456E;
  --aw-jur-hover: #0A3058;
  --aw-jur-soft: #9EC8F9;
  --aw-jur-ink: #081B31;
  --aw-jur-muted: #485A6F;
  --aw-jur-tint: #F2F7FD;
  --aw-jur-tint-strong: #E5EEF9;
  --aw-jur-border: #D3DFEE;
  --aw-jur-rule: #081728;
}

/* Italia — Cordoniera d'argento (sourced) */
[data-market="it"] {
  --aw-jur: #5B6672;
  --aw-jur-hover: #404A55;
  --aw-jur-soft: #B9C6D3;
  --aw-jur-ink: #161B21;
  --aw-jur-muted: #53595F;
  --aw-jur-tint: #F5F7F9;
  --aw-jur-tint-strong: #EAEDF0;
  --aw-jur-border: #DBDEE3;
  --aw-jur-rule: #12171B;
}

/* France — Robe noire et hermine (convention) */
[data-market="fr"] {
  --aw-jur: #3A3A3F;
  --aw-jur-hover: #28282D;
  --aw-jur-soft: #C3C3CA;
  --aw-jur-ink: #1A1A1D;
  --aw-jur-muted: #58585A;
  --aw-jur-tint: #F7F7F7;
  --aw-jur-tint-strong: #ECEDEE;
  --aw-jur-border: #DEDEE0;
  --aw-jur-rule: #161618;
}

/* España — Avantwerk convention (convention) */
[data-market="es"] {
  --aw-jur: #7A4A24;
  --aw-jur-hover: #5F3106;
  --aw-jur-soft: #EEB78F;
  --aw-jur-ink: #2B1302;
  --aw-jur-muted: #6A5241;
  --aw-jur-tint: #FCF5F0;
  --aw-jur-tint-strong: #F7EAE1;
  --aw-jur-border: #ECDACE;
  --aw-jur-rule: #231103;
}

/* Nederland — Avantwerk convention (convention) */
[data-market="nl"] {
  --aw-jur: #10565A;
  --aw-jur-hover: #023E41;
  --aw-jur-soft: #91D1D5;
  --aw-jur-ink: #002022;
  --aw-jur-muted: #425E5F;
  --aw-jur-tint: #F1F8F9;
  --aw-jur-tint-strong: #E2F0F1;
  --aw-jur-border: #D0E2E3;
  --aw-jur-rule: #011A1C;
}

/* Parent surfaces — avantwerk.com, the CRM, and unattributed roots. */
:root:not([data-market]), [data-market="parent"] {
  --aw-jur: #2563EB; --aw-jur-hover: #1D4ED8; --aw-jur-soft: #9DBBFF;
  --aw-jur-ink: #0A0A0A; --aw-jur-muted: #525252; --aw-jur-tint: #FAFAFA;
  --aw-jur-tint-strong: #F5F5F5; --aw-jur-border: #E5E5E5; --aw-jur-rule: #171717;
}

/* Canonical website chrome; compiled into every Avantwerk market surface. */
.site-header{position:sticky;top:0;z-index:60;background:var(--aw-jur-tint);border-bottom:1px solid var(--aw-jur-border)}
.site-header-inner{max-width:var(--aw-measure);min-height:72px;margin:0 auto;padding:0 var(--aw-gutter);display:flex;align-items:center;justify-content:space-between;gap:24px}
.site-header .aw-mark{font-size:1.0625rem;color:var(--aw-jur-ink);flex:none}.site-header .aw-mark::before{background:var(--aw-jur)}.site-header .aw-mark__label{border-color:var(--aw-jur-border);color:var(--aw-jur-muted)}
.site-nav{display:flex;align-items:center;gap:26px}.site-nav>a:not(.aw-btn){display:flex;align-items:center;min-height:44px;color:var(--aw-jur-ink);font-size:.9375rem;font-weight:500;text-decoration:none}.site-nav>a[aria-current="page"]{color:var(--aw-jur)}.site-nav .aw-btn{background:var(--aw-jur);white-space:nowrap}.site-nav .aw-btn:hover{background:var(--aw-jur-hover)}
.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:var(--aw-touch-min);height:var(--aw-touch-min);padding:10px;background:none;border:0;cursor:pointer}.burger span{display:block;width:100%;height:1.5px;background:var(--aw-jur-ink)}
.sheet{display:none;background:var(--aw-bg);border-bottom:1px solid var(--aw-jur-border)}.sheet[data-open]{display:block}.sheet>a{display:flex;align-items:center;min-height:var(--aw-touch-row);padding:0 var(--aw-gutter-sm);border-bottom:1px solid var(--aw-jur-border);color:var(--aw-jur-ink);font-size:1rem;font-weight:500;text-decoration:none}.sheet>a[aria-current="page"]{color:var(--aw-jur)}.sheet .aw-btn{min-height:var(--aw-touch-btn);margin:16px var(--aw-gutter-sm) 20px;background:var(--aw-jur);color:var(--aw-bg);justify-content:center}
.footer{width:100%;max-width:none;margin:0;padding:64px 0 36px;border:0;border-top:1px solid var(--aw-border);border-radius:0;background:var(--aw-bg);overflow:hidden}.footer .wrap{max-width:calc(var(--aw-measure) + (2 * var(--aw-gutter)));margin:0 auto;padding:0 var(--aw-gutter)}.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:64px;margin:0 0 48px;padding:0;border:0}.footer-top>.footer-col:first-child{grid-column:auto}
.footer-brandline{display:flex;align-items:center;margin:0 0 10px;font-family:var(--aw-font-display);font-weight:700;font-size:1.5rem;line-height:1;letter-spacing:-.03em;color:var(--aw-jur-ink)}.footer-brandline .footer-opening-mark{display:block;flex:none;width:var(--aw-mark-asset-size);height:var(--aw-mark-asset-size);margin-left:var(--aw-mark-asset-start);margin-right:var(--aw-mark-asset-gap);transform:translateY(var(--aw-mark-optical-y))}.footer-markets-hint{max-width:var(--aw-measure-note);padding:8px 0 0;font-family:var(--aw-font-mono);font-size:var(--aw-step-caption);line-height:1.5;color:var(--aw-jur-muted)}
.footer-col h6{margin-bottom:16px;font-family:var(--aw-font-mono);font-weight:500;font-size:var(--aw-step-caption);text-transform:uppercase;letter-spacing:.08em;color:var(--aw-jur-muted)}.footer-col a{display:block;padding:4px 0;color:var(--aw-jur-ink);font-family:var(--aw-font-body);font-size:.875rem;text-decoration:none}.footer-col a:hover,.footer-legal a:hover{color:var(--aw-jur)}
.footer-legal{position:relative;display:flex;flex-wrap:wrap;gap:8px 18px;margin:28px 0 0;padding:0 0 24px;font-family:var(--aw-font-body);font-size:.8125rem}.footer-legal::after{content:"";position:absolute;left:50%;bottom:0;width:100vw;transform:translateX(-50%);border-top:1px solid var(--aw-border)}.footer-legal a{color:var(--aw-jur-muted);text-decoration:none}.footer-base{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0;padding:24px 0 0;border:0;font-family:var(--aw-font-mono);font-size:var(--aw-step-caption);letter-spacing:.04em;color:var(--aw-fg-quiet)}.footer-quiet-mark{display:block;width:var(--aw-mark-quiet-size);height:var(--aw-mark-quiet-size);flex:none;background:var(--aw-fg-quiet);-webkit-mask:var(--aw-mark-cut) center/contain no-repeat;mask:var(--aw-mark-cut) center/contain no-repeat}
@media(max-width:1023px){.site-header-inner{padding-inline:var(--aw-gutter-md)}.site-nav{gap:20px}.site-nav .aw-btn{min-height:var(--aw-touch-min)}.footer .wrap{padding-inline:var(--aw-gutter-md)}.footer-top{grid-template-columns:repeat(2,1fr);gap:32px}}
@media(max-width:767px){.site-header-inner{padding-inline:var(--aw-gutter-sm)}.site-nav{display:none}.burger{display:flex}.footer{padding-top:48px}.footer .wrap{padding-inline:var(--aw-gutter-sm)}.footer-top{grid-template-columns:1fr;gap:28px}.footer-top>.footer-col:first-child{grid-column:auto}.footer-col a,.footer-legal a{display:flex;align-items:center;min-height:46px;border-bottom:1px solid var(--aw-jur-border)}.footer-legal{display:grid;grid-template-columns:1fr;padding-block:14px}.footer-base{align-items:flex-end}}
@media(max-width:419px){.site-header .aw-mark__label{display:none}}

/* Generated market adapter. Existing components use --aw-accent; on a market site
   that role is the jurisdiction signal defined by BRAND.md §5e. */
html[data-market]:not([data-market="parent"]) {
  --aw-accent: var(--aw-jur);
  --aw-accent-hover: var(--aw-jur-hover);
  --aw-accent-soft: var(--aw-jur-soft);
}
