/*
 * Violet Pixels theme styles.
 *
 * One HTML tree, two looks. Every colour, font and radius is a custom
 * property on :root (2026 mode, the default). The [data-mode="1996"] block
 * near the end redefines those properties and adds the bevels, dither and
 * marquee. Mobile first: base rules are for small screens, min-width queries
 * scale up. Both modes are checked to WCAG AA for body text; keep it so.
 */

/* ---------- Self-hosted fonts (OFL licensed, no third-party requests) ---------- */
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("../assets/fonts/SpaceGrotesk.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/IBMPlexMono-400.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/IBMPlexMono-500.woff2") format("woff2"); }
@font-face { font-family: "Silkscreen"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/Silkscreen-400.woff2") format("woff2"); }

/* ---------- Tokens: 2026 mode (default) ---------- */
:root {
  --v0: #12071F; --v1: #1E0F33; --v2: #3E2166; --v3: #7F3FD6; --v4: #B14CFF; --v5: #F2E9FF;
  --lilac: #C9B3E6; --lilac2: #B899DB; --muted: #B9A3D9; --pink: #D94BB0;
  --bg: var(--v0); --bg2: var(--v1); --line: var(--v2); --fg: var(--v5); --fg2: var(--muted);
  --accent: var(--v4); --on-accent: var(--v0); --err: #FF8FE0;
  --font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif; --display: var(--font);
  --radius: 10px; --max: 1100px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font); font-size: 18px; line-height: 1.6;
  /* Faint 8px grid, the unit of everything. */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8"><rect width="8" height="8" fill="none" stroke="%231A0C2E" stroke-width="0.5"/></svg>');
}
a { color: var(--fg); }
img { max-width: 100%; height: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--on-accent); padding: 8px 12px; border-radius: 6px; z-index: 60; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.01em; max-width: 18ch; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; max-width: 62ch; }
.lead { font-size: 1.2rem; color: var(--fg2); }
section { padding: 56px 0; border-top: 1px solid var(--line); }
@media (min-width: 800px) { section { padding: 72px 0; } }
.content ul, .content ol { max-width: 62ch; }
.btn { display: inline-block; padding: 14px 22px; border-radius: var(--radius); font-weight: 500; text-decoration: none; border: 1px solid var(--line); color: var(--fg); background: transparent; font-family: var(--font); font-size: 1rem; cursor: pointer; line-height: 1.2; }
.btn.primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn.primary:hover { background: #C36BFF; }
.btn:hover { border-color: var(--v3); }

/* ---------- Header ---------- */
header.top { position: sticky; top: 0; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 5; }
/* Keep the sticky header below the WordPress admin bar when logged in. */
.admin-bar header.top { top: 46px; }
@media (min-width: 783px) { .admin-bar header.top { top: 32px; } }
.nav { display: flex; align-items: center; gap: 14px; min-height: 64px; }
@media (min-width: 701px) { .nav { gap: 20px; } }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 500; letter-spacing: .01em; margin-right: auto; }
.brand .vi { width: 28px; height: 28px; }
.nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav ul a { text-decoration: none; color: var(--fg2); font-size: .95rem; }
.nav ul a:hover, .nav ul .current-menu-item > a { color: var(--fg); }
/* Mobile menu: a disclosure button reveals the list under the header bar. */
.nav-toggle { background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--fg2); font: inherit; font-size: .9rem; padding: 6px 10px; cursor: pointer; }
.nav-toggle[aria-expanded="true"] { color: var(--fg); border-color: var(--v3); }
@media (max-width: 700px) {
  .nav nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg2); border-bottom: 1px solid var(--line); padding: 12px 20px 16px; }
  .nav.open nav { display: block; }
  .nav ul { flex-direction: column; gap: 12px; }
  .nav ul a { font-size: 1.05rem; display: block; padding: 4px 0; }
}
@media (min-width: 701px) { .nav-toggle { display: none; } }
.switch { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--fg2); background: none; border: 0; cursor: pointer; font-family: var(--font); padding: 6px; }
.switch .track { width: 38px; height: 20px; border-radius: 10px; background: var(--v2); position: relative; transition: background .2s; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 21px; width: 14px; height: 14px; border-radius: 7px; background: var(--accent); transition: left .2s; }
.switch .on { color: var(--fg); font-weight: 500; }

/* ---------- Hero ---------- */
.hero { padding: 56px 20px 48px; border-top: 0; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 640px) { .hero { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 801px) { .hero { padding-top: 84px; padding-bottom: 72px; grid-template-columns: 1.2fr .8fr; gap: 40px; } }
.hero-art { display: flex; justify-content: center; }
.hero-art .vi { width: min(260px, 60vw); height: auto; animation: bob 3s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .hero-art .vi { animation: none; } }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero small { display: block; margin-top: 14px; color: var(--fg2); font-size: .9rem; }

/* ---------- Services ---------- */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { margin-top: 8px; }
.card p { font-size: 1rem; color: var(--fg2); }
.card .price { color: var(--fg); font-size: .95rem; margin: 0; }
a.service-card { display: block; color: inherit; text-decoration: none; transition: border-color .15s; }
a.service-card:hover, a.service-card:focus-visible { border-color: var(--v3); }
a.service-card .more { display: inline-block; margin-top: 14px; font-size: .9rem; color: var(--v4); border-bottom: 1px solid transparent; }
a.service-card:hover .more { border-bottom-color: var(--v4); }
[data-mode="1996"] a.service-card .more { color: var(--v2); text-decoration: underline; }
.service-intro .eyebrow { margin: 0 0 8px; font-size: .9rem; color: var(--fg2); }
.service-intro .eyebrow a { color: inherit; }
.icon { width: 32px; height: 32px; display: block; }

/* ---------- Work ---------- */
.work { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.work .tile { display: block; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg2); color: var(--fg); }
.work .shot { aspect-ratio: 16 / 10; background: var(--v2); display: flex; align-items: center; justify-content: center; color: var(--fg2); font-size: .9rem; overflow: hidden; }
.work .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work .meta { padding: 14px 16px; }
.work .meta strong { display: block; font-weight: 500; }
.work .meta span { color: var(--fg2); font-size: .9rem; }
.work a.tile:hover { border-color: var(--v3); }

/* ---------- Steps ---------- */
ol.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: s; }
ol.steps li { counter-increment: s; border-top: 2px solid var(--v3); padding-top: 14px; }
ol.steps li::before { content: counter(s, decimal-leading-zero); display: block; color: var(--accent); font-weight: 500; margin-bottom: 6px; }
ol.steps li p { font-size: 1rem; color: var(--fg2); }

/* ---------- Quote form (Contact Form 7) ---------- */
.quote-form form { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 720px; }
@media (min-width: 641px) { .quote-form form { grid-template-columns: 1fr 1fr; } }
.quote-form label { display: block; font-size: .95rem; margin-bottom: 6px; }
.quote-form .wpcf7-form-control-wrap { display: block; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg2); color: var(--fg); font: inherit; font-size: 1rem; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--v3); }
.quote-form input[type="submit"] { width: auto; }
.quote-form .full, .quote-form .wpcf7-response-output { grid-column: 1 / -1; }
.quote-form .help { font-size: .9rem; color: var(--fg2); margin: 12px 0 0; }
.quote-form .wpcf7-not-valid-tip { display: block; color: var(--err); font-size: .9rem; margin-top: 6px; }
.quote-form .wpcf7-not-valid { border-color: var(--err); }
.quote-form .wpcf7-response-output { margin: 0; padding: 16px 20px; border: 1px solid var(--v3); border-radius: var(--radius); }
.quote-form .wpcf7-form.invalid .wpcf7-response-output, .quote-form .wpcf7-form.failed .wpcf7-response-output { border-color: var(--err); }
.quote-form .wpcf7-form.sent .wpcf7-response-output { border-color: var(--accent); }
.quote-form .wpcf7-spinner { margin: 0 12px; }

/* ---------- Website check teaser ---------- */
.check-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 640px; margin-top: 8px; }
.check-form label { flex-basis: 100%; font-size: .95rem; }
.check-form input { flex: 1; min-width: 220px; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg2); color: var(--fg); font: inherit; font-size: 1.05rem; }
.check-form input:focus { border-color: var(--v3); }
[data-mode="1996"] .check-form input { border: 3px solid var(--v2); border-right-color: var(--v5); border-bottom-color: var(--v5); background: #fff; border-radius: 0; }

/* ---------- Content pages and the game section ---------- */
.page-section { border-top: 0; }
.page-section .card { margin-bottom: 16px; max-width: 720px; }
.page-section .card h2 { font-size: 1.3rem; margin: 0 0 6px; }
.page-section .card h2 a { text-decoration: none; }
.page-section .card h2 a:hover { text-decoration: underline; }
.game-section h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* ---------- Footer ---------- */
/* ── Footer ───────────────────────────────────────────────
   Three rows: brand and cartridge, the area links, then the small print.
   The wrap keeps it on the same column as the rest of the page. */
.site-footer { border-top: 1px solid var(--line); margin-top: 24px; padding: 40px 0 36px; color: var(--fg2); font-size: .9rem; }
.site-footer .wrap { display: grid; gap: 22px; }
.foot-top { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; }
.foot-brand { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; }
.foot-brand .brand { margin: 0; color: var(--fg); }
.foot-brand p { margin: 0; }
.site-footer .cart { background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; color: var(--fg2); cursor: pointer; display: flex; gap: 8px; align-items: center; font: inherit; }
.site-footer .cart:hover { color: var(--fg); border-color: var(--v3); }
.site-footer .areas { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: baseline; }
.site-footer .areas ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.site-footer .areas a { color: var(--fg2); text-decoration: none; border-bottom: 1px solid transparent; }
.site-footer .areas a:hover { color: var(--fg); border-bottom-color: var(--v3); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .85rem; }
.foot-bottom a { color: var(--fg2); text-decoration: none; border-bottom: 1px solid transparent; }
.foot-bottom a:hover { color: var(--fg); border-bottom-color: var(--v3); }
.vi-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Mode-specific mascot ---------- */
[data-mode="1996"] .vi-vector { display: none; }
[data-mode="2026"] .vi-pixel { display: none; }

/* ---------- 1996 mode ---------- */
[data-mode="1996"] {
  --bg: var(--lilac); --bg2: var(--v5); --line: var(--v2); --fg: var(--v0); --fg2: var(--v2); --accent: var(--v2); --on-accent: var(--v5);
  --err: var(--v2);
  --font: "IBM Plex Mono", "Courier New", monospace; --display: "Silkscreen", "Courier New", monospace; --radius: 0;
}
[data-mode="1996"] body { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect width="2" height="2" fill="%23B899DB"/><rect x="2" y="2" width="2" height="2" fill="%23B899DB"/></svg>'); font-size: 17px; }
[data-mode="1996"] h1 { font-size: clamp(1.5rem, 3.6vw, 2.6rem); letter-spacing: 0; line-height: 1.3; }
[data-mode="1996"] h2 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
[data-mode="1996"] h3 { font-size: .95rem; }
[data-mode="1996"] header.top { backdrop-filter: none; background: var(--v5); border-bottom: 3px solid var(--v2); }
[data-mode="1996"] .nav nav { background: var(--v5); border-bottom: 3px solid var(--v2); }
[data-mode="1996"] .nav-toggle { border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); border-radius: 0; background: var(--lilac2); color: var(--v0); }
[data-mode="1996"] .btn, [data-mode="1996"] .quote-form input[type="submit"] { border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--lilac2); color: var(--v0); border-radius: 0; }
[data-mode="1996"] .btn.primary, [data-mode="1996"] .quote-form input[type="submit"].primary { background: var(--v2); color: var(--v5); border-color: var(--v3); border-right-color: var(--v0); border-bottom-color: var(--v0); }
[data-mode="1996"] .btn:active { border-color: var(--v2); border-right-color: var(--v5); border-bottom-color: var(--v5); }
[data-mode="1996"] .card, [data-mode="1996"] .work .tile, [data-mode="1996"] .quote-form .wpcf7-response-output { border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--v5); }
[data-mode="1996"] .work .shot { background: var(--lilac); }
[data-mode="1996"] .switch .track { border-radius: 0; background: var(--v5); border: 2px solid var(--v2); }
[data-mode="1996"] .switch .track::after { border-radius: 0; background: var(--v2); left: 2px; top: 2px; width: 10px; height: 10px; }
[data-mode="1996"] .quote-form input, [data-mode="1996"] .quote-form select, [data-mode="1996"] .quote-form textarea { border: 3px solid var(--v2); border-right-color: var(--v5); border-bottom-color: var(--v5); background: #fff; border-radius: 0; }
[data-mode="1996"] .quote-form .wpcf7-not-valid-tip { font-weight: 500; }
[data-mode="1996"] .quote-form .wpcf7-not-valid-tip::before { content: "! "; }
[data-mode="1996"] .hero-art .vi { animation: step 1s steps(2) infinite; image-rendering: pixelated; }
@keyframes step { 50% { transform: translateY(-6px); } }
[data-mode="1996"] .hero small::before { content: "» "; }
[data-mode="1996"] ol.steps li::before { content: "[" counter(s) "]"; }
[data-mode="1996"] .site-footer .cart { border-radius: 0; border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--lilac2); color: var(--v0); }

/* Marquee: 1996 only. */
.mq { display: none; }
[data-mode="1996"] .mq { display: block; overflow: hidden; white-space: nowrap; border-top: 2px solid var(--v2); border-bottom: 2px solid var(--v2); padding: 6px 0; font-size: .85rem; background: var(--v5); }
.mq span { display: inline-block; padding-left: 100%; animation: mq 22s linear infinite; }
@keyframes mq { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .mq span { animation: none; padding-left: 0; } }

/* ---------- Game stage (Pixel Defence page, 404 page and the arcade dialog) ---------- */
.game { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 640px; margin: 8px auto 0; }
.game-stage { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--v0); border-radius: 12px; }
.game-stage canvas { width: 100%; height: 100%; display: block; }
.game-hint { font-size: .9rem; color: var(--fg2); text-align: center; margin: 0; max-width: none; }
.game-pad { display: none; gap: 10px; width: 100%; }
.game-pad button { flex: 1; height: 56px; font-size: 18px; background: var(--bg2); color: var(--fg); border: 1px solid var(--line); border-radius: 8px; font-family: var(--font); cursor: pointer; touch-action: none; }
@media (pointer: coarse) { .game-pad { display: flex; } .game-hint { display: none; } }

/* 1996: bevelled frame and crisp pixel scaling of the native 320×240 canvas. */
[data-mode="1996"] .game-stage { border-radius: 0; border: 3px solid var(--v2); border-right-color: var(--v0); border-bottom-color: var(--v0); }
[data-mode="1996"] .game-stage canvas { image-rendering: pixelated; image-rendering: crisp-edges; }
[data-mode="1996"] .game-pad button { border-radius: 0; background: var(--lilac2); color: var(--v0); border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); }

/* ---------- Arcade dialog ---------- */
.arcade { background: var(--bg2); color: var(--fg); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; width: min(100% - 32px, 700px); max-height: min(100% - 32px, 900px); font-family: var(--font); font-size: 1rem; line-height: 1.5; }
.arcade::backdrop { background: rgba(18, 7, 31, .75); }
.arcade-bar { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.arcade-bar h2 { margin: 0; font-size: 1.1rem; flex: 1; }
.arcade-back, .arcade-close { background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--fg2); font: inherit; font-size: .9rem; padding: 6px 10px; cursor: pointer; }
.arcade-back:hover, .arcade-close:hover { color: var(--fg); border-color: var(--v3); }
.arcade-close { font-size: 1.2rem; line-height: 1; padding: 4px 10px; }
.arcade-note { margin: 0; padding: 10px 16px; color: var(--fg2); font-size: .95rem; border-bottom: 1px solid var(--line); }
.arcade-body { padding: 16px; }
.arcade-list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 10px; }
.arcade-list button, .arcade-list a { display: flex; align-items: baseline; gap: 12px; width: 100%; text-align: left; text-decoration: none; background: var(--bg); color: var(--fg); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font: inherit; cursor: pointer; }
.arcade-list button:hover, .arcade-list a:hover { border-color: var(--v3); }
.arcade-list strong { font-weight: 500; flex: 1; }
.arcade-list span { color: var(--fg2); font-size: .9rem; }
.arcade-tip { margin: 0; color: var(--fg2); font-size: .9rem; }
.arcade .game { margin-top: 0; }
/* The stage takes focus programmatically when a game starts so keys reach it; the ring adds nothing there. */
.arcade .game:focus, .arcade .game:focus-visible { outline: none; }
body.arcade-open { overflow: hidden; }
[data-mode="1996"] .arcade { border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--v5); }
[data-mode="1996"] .arcade-back, [data-mode="1996"] .arcade-close, [data-mode="1996"] .arcade-list button, [data-mode="1996"] .arcade-list a { border-radius: 0; border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--lilac2); color: var(--v0); }
[data-mode="1996"] .arcade-bar, [data-mode="1996"] .arcade-note { border-bottom: 2px solid var(--v2); }

/* ---------- Mascot click feedback (the Snake shortcut) ---------- */
.brand .vi { transform-origin: 50% 60%; }
.brand .vi.wobble { animation: vi-wobble .45s ease-in-out; }
.brand .vi.blink { animation: vi-blink .28s ease-in-out; }
@keyframes vi-wobble { 25% { transform: rotate(-14deg); } 75% { transform: rotate(14deg); } }
@keyframes vi-blink { 50% { transform: scaleY(.12); } }
@media (prefers-reduced-motion: reduce) { .brand .vi.wobble, .brand .vi.blink { animation: none; } }

/* ---------- Pixelate transition overlay ---------- */
#pix { position: fixed; inset: 0; pointer-events: none; z-index: 50; display: none; }

/* ── The stuck pixel easter egg ─────────────────────────────
   A 6px enemy-pink square fixed somewhere in the viewport. It is a button, so
   it gets a visible focus ring; the nudge is a tiny jump when it is "fixed"
   and moves elsewhere. Reduced motion drops the nudge only. */
.stuck { position: fixed; width: 6px; height: 6px; padding: 0; border: 0; border-radius: 0; background: #D94BB0; cursor: pointer; z-index: 40; box-shadow: 0 0 0 1px rgba(217, 75, 176, .35); }
.stuck:focus-visible { outline: 2px solid var(--v4); outline-offset: 4px; }
.stuck.nudge { animation: stuck-nudge .25s steps(2, end); }
@keyframes stuck-nudge { 50% { transform: translate(2px, -2px); } }
@media (prefers-reduced-motion: reduce) { .stuck.nudge { animation: none; } }
[data-mode="1996"] .stuck { box-shadow: none; }

/* ── Area pages ─────────────────────────────────────────── */
.area-intro .eyebrow { margin: 0 0 8px; font-size: .9rem; color: var(--fg2); }
.area-intro .eyebrow a { color: inherit; }
.area-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }

/* Honeypot field on the quote form: off-screen, never displayed. */
.vp-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ── Cookie consent card ─────────────────────────────────
   A small card in the bottom corner, opened as a non-modal dialog so it
   never covers the page or traps focus. Same tokens as the cards. */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; margin: 0; inset-inline-start: auto; width: min(360px, calc(100vw - 32px)); padding: 18px 20px; background: var(--bg2); color: var(--fg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 32px rgba(18, 7, 31, .45); z-index: 60; font-size: .92rem; animation: consent-in .35s ease-out; }
.consent[open] { display: block; }
.consent-title { margin: 0 0 6px; font-weight: 500; }
.consent-text { margin: 0 0 14px; color: var(--fg2); line-height: 1.45; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.consent-actions .btn { padding: 10px 14px; font-size: .92rem; }
.consent-actions a { color: var(--fg2); font-size: .85rem; margin-left: auto; }
@keyframes consent-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .consent { animation: none; } }
@media (min-width: 700px) { .consent { left: auto; right: 24px; bottom: 24px; } }
[data-mode="1996"] .consent { border-radius: 0; border: 3px solid var(--v5); border-right-color: var(--v2); border-bottom-color: var(--v2); background: var(--v5); color: var(--v0); box-shadow: 6px 6px 0 var(--v2); animation: none; }
[data-mode="1996"] .consent-text { color: var(--v1); }
