/* NickFloro.com — additions on top of ATD26 styles.css */

:root {
  /* ── Sealworks official brand colors (extracted from the 2026 ball SVG) ── */
  --sealworks-blue: #1d459d;   /* primary brand blue */
  --sealworks-blue-deep: #002d9a;
  --sealworks-yellow: #f7d900; /* brand accent yellow */
  --sealworks-red: #cc0000;    /* brand red (the red wedge on the ball) */

  /* Brand tints for the four sites */
  --brand-sealworks: #2d7a72;
  --brand-proto: #2a5c8a;
  --brand-mobile: #5b8c3e;
  --brand-cool: #7a4ab8;
  --brand-sidebar: #c44536;
}
/* Tighter hero headline — about 40% smaller than the global .h-display */
.hero-personal .h-display {
  font-size: clamp(32px, 5vw, 76px);
}

/* ───────── Eyebrow role highlighter cycle ─────────
   Marker-style highlight slowly walks from word to word.
   No pill / rounded background → reads as decoration, not a button. */
.eyebrow-cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
}
.eyebrow-cycle .role-pill {
  position: relative;
  display: inline-block;
  padding: 2px 4px;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-dim);
  z-index: 1;
}
/* The marker stripe — sits behind the text, covering ~bottom 55% (highlighter style) */
.eyebrow-cycle .role-pill::before {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 2px; height: 60%;
  background: #FFD600;
  z-index: -1;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: role-highlight 14.4s ease-in-out infinite;
}
.eyebrow-cycle .role-pill:nth-child(1)::before { animation-delay: 0s; }
.eyebrow-cycle .role-pill:nth-child(2)::before { animation-delay: 2.4s; }
.eyebrow-cycle .role-pill:nth-child(3)::before { animation-delay: 4.8s; }
.eyebrow-cycle .role-pill:nth-child(4)::before { animation-delay: 7.2s; }
.eyebrow-cycle .role-pill:nth-child(5)::before { animation-delay: 9.6s; }
.eyebrow-cycle .role-pill:nth-child(6)::before { animation-delay: 12.0s; }

@keyframes role-highlight {
  0%      { transform: scaleX(0); transform-origin: left center; opacity: 1; }
  6%      { transform: scaleX(1); transform-origin: left center; opacity: 1; }
  14%     { transform: scaleX(1); transform-origin: left center; opacity: 1; }
  18%     { transform: scaleX(1); transform-origin: left center; opacity: 0; }
  19%     { transform: scaleX(0); transform-origin: left center; opacity: 0; }
  100%    { transform: scaleX(0); transform-origin: left center; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-cycle .role-pill::before { animation: none; }
  .eyebrow-cycle .role-pill:first-child::before { transform: scaleX(1); opacity: 1; }
}

/* Hero buttons — primary = solid Sealworks blue, ghost = blue outline.
   Both flip to Sealworks yellow on hover, matching the nav rollover style. */
.hero-personal .btn-primary {
  background: var(--accent); color: #ffffff; border-color: var(--accent);
  box-shadow: 0 10px 24px -12px rgba(42,92,138,0.5);
}
.hero-personal .btn-primary:hover {
  background: #FFD600; color: var(--ink); border-color: #FFD600;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(255,214,0,0.55);
}
.hero-personal .btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.hero-personal .btn-ghost:hover {
  background: #FFD600;
  color: var(--ink);
  border-color: #FFD600;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(255,214,0,0.55);
}

/* ───────── Hero H1 line-by-line wipe-in animation ───────── */
.hero-personal .h-display .line {
  display: block;
  /* No overflow:hidden — was clipping descenders (g, p, y).
     clip-path with negative top/bottom insets handles the wipe and
     leaves room for ascenders + descenders. */
}
.hero-personal .h-display .line > * { display: inline-block; }

@keyframes hero-line-wipe {
  0%   { clip-path: inset(-0.3em 100% -0.3em 0); opacity: 0; }
  60%  { opacity: 1; }
  100% { clip-path: inset(-0.3em 0 -0.3em 0); opacity: 1; }
}
.hero-personal .h-display .line {
  animation: hero-line-wipe 0.85s cubic-bezier(.2,.8,.2,1) both;
  will-change: clip-path, opacity;
}
.hero-personal .h-display .line:nth-child(1) { animation-delay: 0.10s; }
.hero-personal .h-display .line:nth-child(2) { animation-delay: 0.30s; }
.hero-personal .h-display .line:nth-child(3) { animation-delay: 0.50s; }
.hero-personal .h-display .line:nth-child(4) { animation-delay: 0.70s; }

/* Honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-personal .h-display .line { animation: none; }
}

/* ───────── Accessibility: swap accent to yellow on dark backgrounds ───────── */
/* Sealworks blue fails WCAG AA on black; yellow #FFD600 passes AAA */
.section-dark .italic,
.section-dark .h-display .italic,
.section-dark h2 .italic,
.section-dark h3 em,
.foot-personal .big em {
  color: #FFD600;
}
/* Keep the dim-white "02 — IN MY ORBIT" text, but make the dot yellow */
.section-dark .section-num::before { background: #FFD600; }
/* "Reach out →" type accent links inside dark sections */
.section-dark a[style*="color:var(--accent)"],
.section-dark a[style*="color: var(--accent)"] {
  color: #FFD600 !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   TOP NAVIGATION — single source of truth
   HTML structure expected:
     <nav class="nav-personal">
       <div class="container nav-inner">
         <a class="brand">
           <img class="mark" src="..."/>
           <span class="brand-name">Nick Floro</span>
           <span class="sep">|</span>
           <span class="tagline">Media for the Mind</span>
         </a>
         <div class="nav-links"> ... </div>
         <a class="nav-cta"> Say hi → </a>
         <button class="nav-burger"><span></span>×3</button>
       </div>
     </nav>
   Breakpoints:
     ≤ 1240px → tagline + separator hide
     ≤ 900px  → nav-links + nav-cta hide; hamburger + mobile menu show
   ═══════════════════════════════════════════════════════════════════════ */

/* Global guard: nothing on the page should cause horizontal scroll */
html, body { overflow-x: clip; max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }

/* HTML root bg = white so over-scroll rubber-band at the top matches the nav.
   Without this, rubber-band reveals the cream body bg behind the sticky nav. */
html { background: #ffffff; }
/* Disable bounce/over-scroll so the area above the nav can never show */
html, body { overscroll-behavior-y: none; }

/* ── Bar ── */
.nav-personal {
  position: sticky; top: 0; z-index: 40;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px -3px rgba(0,0,0,0.08); /* clearer bottom edge so nav reads as one block */
}
.nav-personal .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; /* tighter — minimal whitespace around the 32px content */
  gap: 16px;
  min-width: 0;
}

/* ── Brand (logo + name + tagline) ── */
.nav-personal .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  min-width: 0; flex-shrink: 1;
}
.nav-personal .brand .mark {
  width: 38px; height: 38px; /* 20% larger than 32px */
  display: block; flex-shrink: 0;
  object-fit: contain;
  align-self: center;
  transform: translateY(3px); /* optically centered with "Nick Floro" text baseline */
  position: relative; z-index: 41;
}
/* Allow the ball to overflow the nav when translated */
.nav-personal, .nav-personal .nav-inner, .nav-personal .brand { overflow: visible; }
.nav-personal .brand .brand-name { font-weight: 500; flex-shrink: 0; }
.nav-personal .brand .sep {
  color: var(--accent);
  font-weight: 300;
  margin: 0 6px;
  opacity: 0.85;
  flex-shrink: 0;
}
.nav-personal .brand .tagline {
  font-family: var(--font-hand), "Caveat", "Comic Sans MS", cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 24px; /* hand-written fonts read smaller, so size up */
  color: var(--sealworks-red); /* official sealworks red from ball logo */
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
  padding-right: 4px;
}

/* ── Nav links (desktop pill) ── */
.nav-personal .nav-links {
  display: flex; gap: 4px; align-items: center;
  font-size: 13.5px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}
.nav-personal .nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-personal .nav-links a:hover { background: #FFD600; color: var(--ink); }
.nav-personal .nav-links a.active { background: var(--ink); color: var(--bg); }
.nav-personal .nav-links a.active:hover { background: #FFD600; color: var(--ink); }
/* Suppress the default blue browser focus ring on click;
   keyboard-only focus still gets a visible (yellow) ring. */
.nav-personal .nav-links a:focus { outline: none; }
.nav-personal .nav-links a:focus-visible {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}

/* ── Say hi CTA ── */
.nav-personal .nav-cta {
  background: var(--accent); color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(42,92,138,0.5);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-personal .nav-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  animation: nav-cta-pulse 2s ease-in-out infinite;
}
@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}
.nav-personal .nav-cta:hover {
  transform: translateY(-2px);
  background: #FFD600;
  color: var(--ink);
  border-color: #FFD600;
  box-shadow: 0 10px 22px -8px rgba(255,214,0,0.55);
}
.nav-personal .nav-cta:hover .dot {
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(20,20,20,0.3);
}

/* ── Hamburger (mobile only) ── */
.nav-personal .nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-personal .nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-personal .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-personal .nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-personal .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  top: 48px; right: 0; left: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px -16px rgba(0,0,0,0.18);
  padding: 16px 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
  z-index: 90;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover,
.mobile-menu a:active { background: #FFD600; color: var(--ink); }
.mobile-menu .mobile-menu-cta {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.mobile-menu .mobile-menu-cta:hover { background: #FFD600; color: var(--ink); }
.mobile-menu-backdrop {
  position: fixed;
  inset: 48px 0 0 0;
  background: rgba(20,20,20,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 80;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
/* While the mobile menu is open, force-pin the nav at viewport top.
   Sticky positioning becomes unreliable when body has overflow:hidden,
   which can leave the nav off-screen if the user scrolled before opening. */
body.menu-open .nav-personal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; /* above mobile-menu (90) and backdrop (80) */
}

/* ── Responsive breakpoints ── */
@media (max-width: 1240px) {
  /* Tagline + separator hide so nav links + CTA always have room */
  .nav-personal .brand .sep,
  .nav-personal .brand .tagline { display: none; }
}
@media (max-width: 900px) {
  /* Mobile: collapse nav-links and CTA into the hamburger menu */
  .nav-personal .nav-links { display: none; }
  .nav-personal .nav-cta   { display: none; }
  .nav-personal .nav-burger { display: inline-flex; }
}

/* ───────── Hero portrait override ───────── */
.hero-personal { padding: 72px 0 56px; }
.hero-personal .hero-stack {
  display: grid; grid-template-columns: 1.2fr 400px; gap: 56px; align-items: center;
}
.hero-personal .portrait {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  background: var(--ink); border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  transform: rotate(-1.5deg);
  align-self: center;
  max-height: 540px;
}

/* Sealworks link in hero subtitle — animated yellow highlight */
.hero-personal .hero-sealworks-link {
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  padding: 1px 8px;
  margin: -1px -2px;
  border-radius: 6px;
  background-image: linear-gradient(120deg, #FFD600 0%, #FFD600 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: background-size 0.35s cubic-bezier(.2,.8,.2,1), color 0.2s ease;
}
.hero-personal .hero-sealworks-link:hover,
.hero-personal .hero-sealworks-link:focus-visible {
  background-size: 100% 100%;
  color: var(--ink);
}
.hero-personal .hero-sealworks-link strong { font-weight: 700; }
.hero-personal .portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-personal .portrait .tag {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--bg); color: var(--ink);
  padding: 12px 16px; border-radius: var(--radius-sm);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-personal .portrait .tag strong { font-weight: 600; color: var(--accent); }
.hero-personal .stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-personal .stat-strip .stat { min-width: 0; }
.hero-personal .stat-strip .stat .num {
  font-family: var(--font-display); font-size: 32px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1;
  white-space: nowrap;
}
.hero-personal .stat-strip .stat .num em { font-style: italic; color: var(--accent); }
.hero-personal .stat-strip .stat .lbl {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: block; margin-top: 8px;
  line-height: 1.35;
  white-space: normal;
}
@media (max-width: 720px) {
  .hero-personal .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 960px) {
  .hero-personal .hero-stack { grid-template-columns: 1fr; gap: 32px; }
  .hero-personal .portrait { max-width: 380px; margin: 0 auto; transform: rotate(-1deg); }
}

/* ───────── Now page (status list) ───────── */
.now-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 880px) { .now-grid { grid-template-columns: 1fr; } }
.now-col {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
}
.now-col[data-status="now"] { border-color: var(--accent); box-shadow: 0 12px 32px -16px rgba(42,92,138,0.3); }
.now-col[data-status="next"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.now-col[data-status="next"] .now-head .label,
.now-col[data-status="next"] .now-item-meta { color: rgba(255,255,255,0.6); }
.now-col[data-status="next"] .now-item h5 { color: var(--bg); }
.now-col[data-status="next"] .now-item p { color: rgba(255,255,255,0.75); }
.now-col[data-status="next"] .now-item { border-color: rgba(255,255,255,0.1); }

.now-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.now-col[data-status="next"] .now-head { border-bottom-color: rgba(255,255,255,0.12); }
.now-head .label { color: var(--ink-dim); }
.now-head .indicator {
  display: inline-flex; align-items: center; gap: 8px;
}
.now-head .indicator .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(42,92,138,0.6);
  animation: now-pulse 2s ease-in-out infinite;
}
.now-col[data-status="next"] .indicator .pulse { background: rgba(255,255,255,0.6); animation: none; }
.now-col[data-status="recent"] .indicator .pulse { background: var(--ink-dim); animation: none; }
@keyframes now-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(42,92,138,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(42,92,138,0); }
}

.now-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.now-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Linkified now-item */
.now-item-link {
  display: block; text-decoration: none; color: inherit;
  transition: transform .2s ease, background .2s ease;
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 8px;
}
.now-item-link h5 { transition: color .2s ease, font-weight .2s ease; }
.now-item-link:hover {
  transform: translateX(2px);
  background: rgba(255,214,0,0.18);
}
.now-item-link:hover h5 { font-weight: 700; color: var(--ink); }
/* On the dark "Next" column the highlight needs to be more visible */
.now-col[data-status="next"] .now-item-link:hover { background: rgba(255,214,0,0.22); }
.now-col[data-status="next"] .now-item-link:hover h5 { color: #FFD600; }
.now-item h5 {
  font-family: var(--font-display); font-size: 20px; margin: 0 0 6px;
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.15;
}
.now-item p { color: var(--ink-dim); margin: 0; font-size: 14px; line-height: 1.5; }
.now-item-meta {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint); margin-top: 6px;
}

/* ───────── Sites (4 brand blocks) ───────── */
.sites-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto;
  gap: 12px;
}
.site-block {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.site-block {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, outline 0.2s ease;
  outline: 0px solid transparent;
  outline-offset: 0px;
}
.site-block:hover {
  transform: translateY(-12px) scale(1.025);
  box-shadow:
    0 36px 72px -16px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,214,0,0.4),
    0 0 80px -20px rgba(255,214,0,0.5);
  outline: 3px solid #FFD600;
  outline-offset: 4px;
  z-index: 2;
}
.site-block .glyph {
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background-color 0.25s ease, color 0.25s ease;
}
.site-block:hover .glyph {
  transform: rotate(-8deg) scale(1.18);
  background: #FFD600 !important;
  color: var(--ink) !important;
}
.site-block .go { transition: transform 0.3s cubic-bezier(.2,.8,.2,1), letter-spacing 0.25s ease; }
.site-block:hover .go {
  transform: translateX(8px);
  letter-spacing: 0.12em;
}
.site-block h3 { transition: transform 0.3s cubic-bezier(.2,.8,.2,1); }
.site-block:hover h3 { transform: translateX(2px); }
.site-block .url { transition: color 0.25s ease, letter-spacing 0.25s ease; }
.site-block:hover .url { color: #FFD600; letter-spacing: 0.14em; }
.site-block .url {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.site-block h3 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; letter-spacing: -0.025em; line-height: 0.95;
  margin: 0; text-wrap: balance;
}
.site-block h3 em { font-style: italic; }
.site-block p { color: var(--ink-dim); font-size: 15px; margin: 0; flex: 1; line-height: 1.55; }
.site-block .tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.site-block .tag {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink-dim);
}
.site-block .go {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: auto;
}
.site-block .glyph {
  position: absolute; right: 24px; top: 24px;
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px;
  background: rgba(0,0,0,0.06); color: var(--ink);
  letter-spacing: -0.02em; font-style: italic;
}

/* Site brand variants */
.site-block.site-sealworks {
  grid-column: span 2; grid-row: span 2;
  background: var(--brand-sealworks); color: #fff; border-color: var(--brand-sealworks);
  min-height: 100%;
}
.site-block.site-sealworks .url,
.site-block.site-sealworks p,
.site-block.site-sealworks .go { color: rgba(255,255,255,0.9); }
.site-block.site-sealworks .tag {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff;
}
.site-block.site-sealworks .glyph {
  background: rgba(255,255,255,0.16); color: #fff;
}

/* Contact-section button variants (live on the dark hero) */
.btn-cta-accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 10px 24px -12px rgba(42,92,138,0.55);
}
.btn-cta-accent:hover {
  background: #fff; color: var(--accent); border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(42,92,138,0.65);
}
.btn-on-dark {
  background: transparent; color: var(--bg); border-color: rgba(250,247,242,0.55);
}
.btn-on-dark:hover {
  background: var(--bg); color: var(--ink); border-color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(0,0,0,0.45);
}

/* Sealworks sketch illustration */
.seal-sketch {
  position: absolute;
  left: 32px; right: 32px; bottom: 96px;
  display: flex; justify-content: center;
  pointer-events: none;
  opacity: .9;
  color: #fff;
}
.seal-sketch svg {
  width: 100%; max-width: 640px; height: auto; overflow: visible;
}
.seal-sketch path, .seal-sketch line, .seal-sketch rect, .seal-sketch circle, .seal-sketch polyline {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.seal-sketch .dim { opacity: .55; }
@media (max-width: 1080px) {
  .seal-sketch { left: 24px; right: 24px; bottom: 84px; }
}
@media (max-width: 640px) {
  .seal-sketch { display: none; }
}

.site-block.site-proto {
  background: var(--brand-proto); color: #fff; border-color: var(--brand-proto);
}
.site-block.site-proto .url,
.site-block.site-proto p,
.site-block.site-proto .go { color: rgba(255,255,255,0.85); }
.site-block.site-proto .tag {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff;
}
.site-block.site-proto .glyph { background: rgba(255,255,255,0.16); color: #fff; }

.site-block.site-mobile {
  background: var(--brand-mobile); color: #fff; border-color: var(--brand-mobile);
}
.site-block.site-mobile .url,
.site-block.site-mobile p,
.site-block.site-mobile .go { color: rgba(255,255,255,0.85); }
.site-block.site-mobile .tag {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff;
}
.site-block.site-mobile .glyph { background: rgba(255,255,255,0.16); color: #fff; }

.site-block.site-cool {
  background: var(--brand-cool); color: #fff; border-color: var(--brand-cool);
  grid-column: span 2;
}
.site-block.site-cool .url,
.site-block.site-cool p,
.site-block.site-cool .go { color: rgba(255,255,255,0.85); }
.site-block.site-cool .tag {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff;
}
.site-block.site-cool .glyph { background: rgba(255,255,255,0.16); color: #fff; }

.site-block.site-sidebar {
  background: var(--brand-sidebar); color: #fff; border-color: var(--brand-sidebar);
}
.site-block.site-sidebar .url,
.site-block.site-sidebar p,
.site-block.site-sidebar .go { color: rgba(255,255,255,0.85); }
.site-block.site-sidebar .tag {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff;
}
.site-block.site-sidebar .glyph {
  background: rgba(255,255,255,0.16); color: #fff;
  font-style: normal; font-weight: 700;
}

@media (max-width: 1080px) {
  .sites-grid { grid-template-columns: 1fr 1fr; }
  .site-block.site-sealworks { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .site-block.site-cool { grid-column: span 2; }
  .site-block.site-sidebar { grid-column: span 2; }
}
@media (max-width: 640px) {
  .sites-grid { grid-template-columns: 1fr; }
  .site-block.site-sealworks,
  .site-block.site-cool,
  .site-block.site-sidebar { grid-column: span 1; }
}

/* ───────── Services / What we do ───────── */
.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }
.svc {
  background: var(--bg-3); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: background 0.2s;
}
.svc:hover { background: var(--bg); }
.svc .num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--accent);
  text-transform: uppercase;
}
.svc h4 {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 400; letter-spacing: -0.01em; margin: 0; line-height: 1.1;
}
.svc h4 em { font-style: italic; color: var(--accent); }
.svc p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.svc .tag-row {
  display: flex; gap: 4px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
  transition: color .25s, font-weight .25s, letter-spacing .25s;
}
.svc:hover .tag-row { color: var(--ink); font-weight: 700; letter-spacing: 0.12em; }
.svc .tag-row span::after { content: " ·"; color: var(--ink-faint); }
.svc .tag-row span:last-child::after { content: ""; }

/* ───────── Service sketch illustrations ───────── */
.svc-sketch {
  width: 100%; height: 92px;
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: -6px;
  color: var(--accent);
}
.svc-sketch svg {
  width: auto; height: 100%;
  overflow: visible;
}
.svc-sketch path, .svc-sketch line, .svc-sketch polyline,
.svc-sketch circle, .svc-sketch rect, .svc-sketch ellipse {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.svc-sketch .ink { color: var(--ink); opacity: .55; }
.svc:hover .svc-sketch { color: var(--ink); }

/* ───────── Conferences ───────── */
/* CSS multi-column layout flows TOP-DOWN per column → fills left column
   first, then right column (newspaper reading order). Cards use break-inside
   to prevent splitting across columns. */
.conf-list {
  column-count: 2;
  column-gap: 10px;
}
.conf-list .conf {
  break-inside: avoid;
  margin-bottom: 10px;
  display: grid; /* re-declare since the grid styles are below */
}
@media (max-width: 880px) {
  .conf-list { column-count: 1; }
}
.conf {
  display: grid; grid-template-columns: 80px 1fr 24px;
  gap: 16px; align-items: center;
  padding: 14px 18px;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s, opacity 0.2s;
  text-decoration: none; color: inherit;
}
.conf:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 14px 32px -16px rgba(0,0,0,0.15); }
.conf .date {
  font-family: var(--font-display); line-height: 1; letter-spacing: -0.02em;
}
.conf .date .month {
  font-family: var(--font-mono); font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  display: block; margin-bottom: 4px;
}
.conf .date .day {
  font-size: 22px; font-weight: 400; color: var(--ink);
}
.conf .date .day em { font-style: italic; color: var(--accent); }
.conf h5 {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 500; letter-spacing: -0.01em; margin: 0 0 4px;
  line-height: 1.2;
}
.conf .meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 4px 10px;
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.06em;
  line-height: 1.4;
}
/* Inline role tags inside the meta line — flat, no pill */
.conf .meta .role-inline {
  font-weight: 500;
  white-space: nowrap;
}
.conf .meta .role-inline[data-role="speaking"]   { color: var(--accent); }
.conf .meta .role-inline[data-role="sponsoring"] { color: var(--accent); }
.conf .meta .role-inline[data-role="attending"]  { color: var(--ink-faint); }
.conf .arrow-cell {
  text-align: right;
  font-family: var(--font-mono); color: var(--ink-faint); font-size: 16px;
  transition: color 0.2s, transform 0.2s;
}
.conf:hover .arrow-cell { color: var(--accent); transform: translateX(4px); }

/* Past-event styling — dimmed but readable */
.conf[data-past="true"] {
  opacity: 0.5;
  background: transparent;
}
.conf[data-past="true"]:hover { opacity: 0.85; }

@media (max-width: 880px) {
  .conf { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; row-gap: 8px; padding: 12px 14px; }
  .conf .arrow-cell { display: none; }
  .conf .conf-body { grid-column: 2; }
}

/* ───────── Books ───────── */
.book-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 960px) { .book-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .book-grid { grid-template-columns: 1fr; } }
.book {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  display: grid; grid-template-columns: 96px 1fr; gap: 20px;
  align-items: start;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), border-color 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none; color: inherit;
}
.book h5 { transition: font-weight 0.2s ease, color 0.2s ease; }
.book-cover { transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease; }
.book:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 26px 50px -18px rgba(0,0,0,0.28), 0 0 0 1px var(--accent);
}
.book:hover h5 { font-weight: 700; color: var(--ink); }
.book:hover .book-cover {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--accent), 0 14px 28px -10px rgba(0,0,0,0.4);
}
.book .amazon-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-top: 10px;
  transition: transform 0.25s ease;
}
.book:hover .amazon-tag { transform: translateX(4px); }
.book-cover {
  aspect-ratio: 2/3; border-radius: 6px;
  background: var(--ink);
  position: relative; overflow: hidden;
  box-shadow: 4px 4px 0 var(--accent), 0 8px 16px -8px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.book-cover[data-cover="1"] { background: linear-gradient(160deg, #d77f3c, #b35a1e); }
.book-cover[data-cover="2"] { background: linear-gradient(160deg, #2a5c8a, #1a3d5e); }
.book-cover[data-cover="3"] { background: linear-gradient(160deg, #5b8c3e, #3e6228); }
.book-cover[data-cover="4"] { background: linear-gradient(160deg, #7a4ab8, #532f80); box-shadow: 4px 4px 0 #5b8c3e, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="5"] { background: linear-gradient(160deg, #e85d75, #a82847); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="6"] { background: linear-gradient(160deg, #c0a44e, #8a722e); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="7"] { background: linear-gradient(160deg, #b53a2c, #7e2118); box-shadow: 4px 4px 0 #141414, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="8"] { background: linear-gradient(160deg, #3aa48f, #196a5b); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="9"] { background: linear-gradient(160deg, #f7f5f0, #d8d2c2); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="9"] .cover-title, .book-cover[data-cover="9"] .cover-author { color: rgba(20,20,20,0.85); }
.book-cover[data-cover="10"] { background: radial-gradient(circle at 50% 35%, #ff8a3c, #5a1a08); box-shadow: 4px 4px 0 #141414, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="11"] { background: linear-gradient(160deg, #f2f0eb, #c8c2b0); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="11"] .cover-title, .book-cover[data-cover="11"] .cover-author { color: rgba(20,20,20,0.85); }
.book-cover[data-cover="12"] { background: linear-gradient(160deg, #f4d52e, #c2a405); box-shadow: 4px 4px 0 #141414, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="12"] .cover-title, .book-cover[data-cover="12"] .cover-author { color: rgba(20,20,20,0.92); }
.book-cover[data-cover="13"] { background: linear-gradient(160deg, #f08a4a, #c4561c); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="14"] { background: linear-gradient(160deg, #5fb3d4, #2c7a99); box-shadow: 4px 4px 0 #141414, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="15"] { background: linear-gradient(160deg, #ff7a59, #c4421f); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="16"] { background: linear-gradient(160deg, #4fb286, #1f7a55); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="17"] { background: linear-gradient(160deg, #e08bc4, #a0407a); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="18"] { background: linear-gradient(160deg, #f4a83a, #c4731a); box-shadow: 4px 4px 0 #5b8c3e, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="19"] { background: linear-gradient(160deg, #6c8fe8, #2f4ea3); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="20"] { background: linear-gradient(160deg, #b8d96b, #6b9028); box-shadow: 4px 4px 0 #7a4ab8, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="21"] { background: linear-gradient(160deg, #f4d52e, #e8b800); box-shadow: 4px 4px 0 #1a3d5e, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="21"] .cover-title, .book-cover[data-cover="21"] .cover-author { color: rgba(20,20,20,0.92); }
.book-cover[data-cover="22"] { background: linear-gradient(160deg, #4a8fbf, #2c5f87); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="23"] { background: linear-gradient(160deg, #e8a857, #b56c1e); box-shadow: 4px 4px 0 #2a5c8a, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="24"] { background: linear-gradient(160deg, #5b8c7e, #2f5a4d); box-shadow: 4px 4px 0 #d77f3c, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="25"] { background: linear-gradient(160deg, #8a5fb8, #4f2f80); box-shadow: 4px 4px 0 #f4d52e, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="26"] { background: linear-gradient(160deg, #c44a35, #82281b); box-shadow: 4px 4px 0 #141414, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover[data-cover="27"] { background: linear-gradient(160deg, #2a2a2a, #0a0a0a); box-shadow: 4px 4px 0 #c44536, 0 8px 16px -8px rgba(0,0,0,0.3); }
.book-cover .cover-title {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.95);
  font-size: 13px; line-height: 1.05; letter-spacing: -0.01em;
  font-weight: 500;
  text-wrap: balance;
}
.book-cover .cover-author {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 8px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.book-info h5 {
  font-family: var(--font-display); font-size: 19px;
  font-weight: 400; letter-spacing: -0.01em; margin: 0 0 4px;
  line-height: 1.2;
}
.book-info .author {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint); margin-bottom: 12px;
}
.book-info .why {
  color: var(--ink-dim); font-size: 13px; line-height: 1.55;
  margin: 0;
}
.book-info .amazon-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-top: 10px;
  font-weight: 500;
}
.book { text-decoration: none; color: inherit; }
.book-info .badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--accent); color: #fff;
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 10px;
}

/* ───────── Bio (about Nick) ───────── */
.bio-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  font-size: 18px; line-height: 1.6; color: var(--ink-dim);
}
.bio-block p { margin: 0 0 16px; }
.bio-block strong { color: var(--ink); font-weight: 600; }
.bio-block em { font-style: italic; color: var(--accent); font-weight: 400; }
@media (max-width: 760px) { .bio-block { grid-template-columns: 1fr; gap: 24px; } }

/* ───────── Footer — balanced 4-column layout ─────────
   Design principles:
   • Equal column widths (4 × 1fr) → predictable rhythm
   • Top-aligned content → strong horizontal baseline at the headers
   • Reduced headline scale → matches the visual weight of the link columns
   • Consistent 8px vertical gap inside columns → unified rhythm
   • Single ledge of negative space between top section and bottom (margin-bottom 56px) */
.foot-personal { padding: 72px 0 32px; background: var(--ink); color: rgba(255,255,255,0.7); }
.foot-personal .top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
  margin-bottom: 56px;
  align-items: start;
}
/* Push the Studio column 100px right; Notebooks + Connect remain in their
   natural 1fr cells so they stay perfectly equidistant. */
.foot-personal .top > div:nth-child(2) {
  padding-left: 100px;
}
@media (max-width: 1080px) {
  .foot-personal .top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-personal .top > div:first-child { grid-column: span 2; }
}
@media (max-width: 640px) {
  .foot-personal .top { grid-template-columns: 1fr; gap: 28px; }
  .foot-personal .top > div:first-child { grid-column: span 1; }
}
.foot-personal .big {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin: 0 0 12px;
  /* mono header height (~14px) + 14px margin matches the right cols */
}
.foot-personal .big em { font-style: italic; color: #FFD600; font-weight: 500; }
.foot-personal .foot-intro {
  margin: 0;
  max-width: 38ch;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  line-height: 1.55;
}
.foot-personal h6 {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.14em;
  margin: 0 0 12px;
  font-weight: 500;
}
.foot-personal ul { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; }
.foot-personal ul a {
  color: rgba(255,255,255,0.7);
  display: inline-block;
  padding: 2px 8px;
  margin: -2px -8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.foot-personal ul a:hover { background: #FFD600; color: var(--ink); }
.foot-personal .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.foot-personal .bottom .bottom-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding: 1px 4px;
  margin: -1px -4px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.foot-personal .bottom .bottom-link:hover {
  background: #FFD600;
  color: var(--ink);
  border-bottom-color: transparent;
}

/* Override section heading max width for personal usage so headlines flow */
.section-head h2.wide { max-width: 22ch; }

/* Density tweak hooks */
html[data-density="cozy"] .section { padding: 64px 0; }
html[data-density="cozy"] .hero-personal { padding: 48px 0 36px; }

/* Palette tweak */
html[data-palette="forest"] {
  --accent: #4f7d3a;
  --accent-2: #93b97c;
  --tint-orange-bg: #e6efdc; --tint-orange-fg: #3e6228;
}
html[data-palette="ink"] {
  --accent: #2a5c8a;
  --accent-2: #6f9bc0;
  --tint-orange-bg: #e8f0f7; --tint-orange-fg: #2a5c8a;
}
html[data-palette="plum"] {
  --accent: #7a4ab8;
  --accent-2: #b89adb;
  --tint-orange-bg: #f2eaff; --tint-orange-fg: #5b3290;
}
