/* =========================================================================
   Matteo Villosio — Colors & Type
   Apple-inspired: clean, quiet, generous. Restrained palette, system type.
   ========================================================================= */

/* ------------------------------------------------------------------
   FONTS
   Primary:   SF Pro (via system stack) — Apple's system sans.
              Falls back to Inter from local files for non-Apple devices.
   Display:   Same stack at heavier weights / tighter tracking.
   Mono:      SF Mono → JetBrains Mono → ui-monospace.
   ------------------------------------------------------------------ */

:root {
  /* ============================================================
     COLOR — BASE NEUTRALS
     Warm-ish grayscale (tiny amber cast) so surfaces feel calm,
     not clinical. Values chosen against Apple's macOS/iOS scale.
     ============================================================ */

  --ink-900: #111113;   /* near-black — headlines, primary text */
  --ink-700: #1d1d1f;   /* Apple body ink — default text */
  --ink-500: #48484a;   /* secondary text */
  --ink-400: #6e6e73;   /* tertiary / meta text */
  --ink-300: #86868b;   /* placeholder, captions */
  --ink-200: #d2d2d7;   /* hairlines, dividers */
  --ink-150: #e5e5ea;   /* subtle borders */
  --ink-100: #f5f5f7;   /* surface-2 (Apple canvas) */
  --ink-050: #fbfbfd;   /* surface-1 (Apple page bg) */
  --paper:   #ffffff;   /* cards, modals */

  /* ============================================================
     COLOR — ACCENTS
     Espresso = nod to ☕ status + Italian heritage; used sparingly
     for links, active states, primary CTAs.
     Sage   = nod to trail running / nature; quiet secondary.
     ============================================================ */

  --espresso-900: #2b1d16;
  --espresso-700: #4a2e1f;
  --espresso-500: #6b3a22;   /* primary accent — links, CTAs */
  --espresso-400: #8a4e30;
  --espresso-200: #e8d9cf;   /* soft wash — hover fills */
  --espresso-100: #f5ece6;   /* tint, badges */

  --sage-700: #3d5a47;
  --sage-500: #5a7a63;        /* secondary accent — tags, trail */
  --sage-200: #d4deda;
  --sage-100: #eaf0ec;

  /* Ink-blue — an indigo that sits nicely against warm paper */
  --inkblue-700: #1e3a5f;
  --inkblue-500: #2f5a8a;
  --inkblue-200: #c8d5e6;
  --inkblue-100: #e5ecf4;

  /* ============================================================
     COLOR — SEMANTIC STATES
     Kept extremely quiet (Apple rarely uses saturated status colors).
     ============================================================ */

  --success:  #2d7a4f;
  --warning:  #a86a1a;
  --danger:   #b23a3a;
  --info:     #2f5d8f;

  /* ============================================================
     SEMANTIC TOKENS — USE THESE IN COMPONENTS
     ============================================================ */

  --bg:            var(--ink-050);
  --bg-elevated:   var(--paper);
  --bg-muted:      var(--ink-100);
  --bg-inverse:    var(--ink-900);

  --fg:            var(--ink-700);
  --fg-strong:     var(--ink-900);
  --fg-muted:      var(--ink-500);
  --fg-subtle:     var(--ink-400);
  --fg-inverse:    var(--paper);

  --border:        var(--ink-150);
  --border-strong: var(--ink-200);
  --hairline:      rgba(0, 0, 0, 0.08);

  --accent:         var(--espresso-500);
  --accent-hover:   var(--espresso-700);
  --accent-wash:    var(--espresso-100);
  --accent-2:       var(--sage-500);
  --accent-2-wash:  var(--sage-100);

  --link:       var(--espresso-500);
  --link-hover: var(--espresso-700);

  /* ============================================================
     TYPE — FAMILIES
     ============================================================ */

  --font-sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text",
                "SF Pro Display", "Inter", "Helvetica Neue", Helvetica,
                Arial, system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                  "SF Pro Text", "Inter", "Helvetica Neue", Helvetica,
                  Arial, system-ui, sans-serif;
  --font-mono:  ui-monospace, "SF Mono", "JetBrains Mono", Menlo,
                Consolas, monospace;

  /* ============================================================
     TYPE — SCALE
     Based on Apple HIG-ish ramp. Large, airy, high contrast.
     ============================================================ */

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 17px;   /* Apple body */
  --fs-md:   19px;
  --fs-lg:   22px;
  --fs-xl:   28px;
  --fs-2xl:  40px;
  --fs-3xl:  56px;
  --fs-4xl:  80px;
  --fs-5xl:  112px;

  --lh-tight:  1.08;
  --lh-snug:   1.22;
  --lh-normal: 1.47;   /* Apple body leading */
  --lh-relaxed: 1.6;

  --lt-tight:   -0.025em;
  --lt-display: -0.035em;
  --lt-normal:  -0.01em;
  --lt-loose:    0;
  --lt-caps:     0.08em;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* ============================================================
     SPACING — 4px base, Apple-like generous rhythm
     ============================================================ */
  --s-0:  0;
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* ============================================================
     RADII — small & subtle. Apple uses 6–14px a lot.
     ============================================================ */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;   /* default for cards */
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* ============================================================
     SHADOWS — barely-there. Apple is known for subtle elevation.
     ============================================================ */
  --sh-0:  none;
  --sh-1:  0 1px 2px rgba(0, 0, 0, 0.04),
           0 1px 1px rgba(0, 0, 0, 0.03);
  --sh-2:  0 2px 8px rgba(0, 0, 0, 0.04),
           0 1px 2px rgba(0, 0, 0, 0.05);
  --sh-3:  0 8px 24px rgba(0, 0, 0, 0.06),
           0 2px 4px rgba(0, 0, 0, 0.04);
  --sh-4:  0 20px 40px rgba(0, 0, 0, 0.08),
           0 4px 10px rgba(0, 0, 0, 0.04);
  --sh-focus: 0 0 0 4px rgba(107, 58, 34, 0.18);

  /* ============================================================
     MOTION — easeOutQuart-ish, Apple's calm feel
     ============================================================ */
  --dur-fast:   120ms;
  --dur-base:   200ms;
  --dur-slow:   360ms;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* ============================================================
     LAYOUT
     ============================================================ */
  --container:  1120px;
  --container-narrow: 720px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* =========================================================================
   SEMANTIC TYPE — drop-in element styles
   ========================================================================= */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--fg);
  background: var(--bg);
  letter-spacing: var(--lt-normal);
}

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, var(--fs-5xl));
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--lt-display);
  color: var(--fg-strong);
}

.display-2, h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, var(--fs-3xl));
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--lt-display);
  color: var(--fg-strong);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, var(--fs-2xl));
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--lt-tight);
  color: var(--fg-strong);
}

h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--lt-tight);
  color: var(--fg-strong);
}

h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--fg-strong);
  letter-spacing: var(--lt-normal);
}

h5 {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--fg-strong);
}

h6 {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--fg-strong);
}

.lede {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg-muted);
  font-weight: var(--fw-regular);
  letter-spacing: var(--lt-normal);
  max-width: 58ch;
  text-wrap: pretty;
}

p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--fg);
  max-width: 68ch;
  text-wrap: pretty;
  margin: 0 0 var(--s-4) 0;
}

small, .caption {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: var(--lh-snug);
}

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--lt-caps);
  text-transform: uppercase;
  color: var(--fg-muted);
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

code {
  background: var(--bg-muted);
  padding: 2px 6px;
  border-radius: var(--r-xs);
  color: var(--fg-strong);
  border: 1px solid var(--border);
}

pre {
  background: var(--ink-900);
  color: var(--ink-100);
  padding: var(--s-6);
  border-radius: var(--r-md);
  overflow-x: auto;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--s-12) 0;
}

/* Utility: quiet selection color */
::selection {
  background: var(--espresso-200);
  color: var(--espresso-900);
}


/* Matteo Villosio — Portfolio site
   Consumes colors_and_type.css tokens. Apple-style rigor. */



* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.nav.scrolled {
  border-bottom-color: rgba(0,0,0,0.08);
  background: rgba(251, 251, 253, 0.82);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 52px;
  display: flex; align-items: center; gap: 40px;
}
.nav-brand {
  font-weight: 500; font-size: 14px; color: var(--fg-strong);
  letter-spacing: -0.01em; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand-mark {
  width: 18px; height: 18px; border-radius: 4px;
  background: var(--ink-900); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0;
  font-family: var(--font-display);
}
.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a {
  font-size: 13px; color: var(--fg-muted); cursor: pointer;
  text-decoration: none; letter-spacing: -0.005em;
  transition: color var(--dur-fast) var(--ease-out);
  padding: 4px 2px;
}
.nav-links a:hover { color: var(--fg-strong); text-decoration: none; }
.nav-links a.active { color: var(--fg-strong); }
.nav-cta {
  font-size: 13px; color: var(--fg-strong); font-weight: 500; cursor: pointer;
  text-decoration: none;
}
.nav-cta:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  border-top: 1px solid var(--border);
  margin-top: var(--s-24);
  background: var(--bg);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto; padding: var(--s-10) var(--gutter) var(--s-12);
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  font-size: 13px; color: var(--fg-muted);
  align-items: start;
}
.footer-brand { font-weight: 500; color: var(--fg-strong); font-size: 14px; margin-bottom: 4px; }
.footer-meta { color: var(--fg-muted); font-size: 12px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 10px;
}
.footer-col a {
  display: block; color: var(--fg); text-decoration: none; font-size: 13px;
  padding: 3px 0;
}
.footer-col a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

/* =========================================================================
   PAGE SHELL
   ========================================================================= */
.page, .home, .post-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-16) var(--gutter) var(--s-16);
}
.post-page { max-width: var(--container-narrow); }

.page-head { margin-bottom: var(--s-10); }
.h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600; line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--fg-strong);
  margin: 10px 0 16px;
  text-wrap: balance;
  max-width: 20ch;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg-strong);
  margin: 0 0 12px;
  text-wrap: balance;
}
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-muted);
}
.lede {
  font-size: var(--fs-lg); line-height: 1.5;
  color: var(--fg-muted); max-width: 58ch;
  font-weight: 400; letter-spacing: -0.01em;
  margin: 0; text-wrap: pretty;
}
.rule { border: 0; border-top: 1px solid var(--border); margin: var(--s-16) 0; }
.section { margin: var(--s-16) 0; }
.section-header { margin-bottom: var(--s-8); }
.section-head-inline {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: var(--s-8); gap: 20px; flex-wrap: wrap;
}
.section-link {
  font-size: 14px; color: var(--accent); cursor: pointer; font-weight: 500;
  letter-spacing: -0.01em;
}
.section-link:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   HERO — Direction A (default): quiet statement
   ========================================================================= */
.hero {
  padding: var(--s-16) 0 var(--s-12);
  position: relative;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 9px;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; color: var(--fg-muted);
  box-shadow: var(--sh-1);
  margin-bottom: 22px;
}
.hero-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.15);
}
.hero-status strong { color: var(--fg-strong); font-weight: 500; }
.display {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 96px);
  font-weight: 600; line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--fg-strong);
  margin: 10px 0 20px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-lede {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 52ch;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-6);
  text-wrap: pretty;
}
.hero-cta { margin-top: var(--s-4); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Portrait — real photo, editorial-polaroid feel */
.hero-portrait {
  margin-bottom: 28px;
}
.hero-portrait-frame {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.hero-portrait-photo {
  width: 180px; height: 220px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 28px -14px rgba(0,0,0,0.18);
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform var(--dur-base) var(--ease-out);
  padding: 6px 6px 0;
}
.hero-portrait-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 22%;
  display: block;
  border-radius: 1px;
  filter: saturate(0.95) contrast(1.02);
}
.hero-portrait-photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 8px; background: var(--paper);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.hero-portrait-frame:hover .hero-portrait-photo { transform: rotate(0deg); }
.hero-portrait-caption {
  font-size: 12px; color: var(--fg-subtle); font-style: italic;
  padding-left: 4px;
}
.display-soft {
  color: var(--fg-muted); font-weight: 400; font-style: italic;
  font-size: 0.72em;
}
/* Dark mode + colored paper portrait re-harmonization handled via --paper background */

/* ---- Portrait variant: BANNER (full-bleed above hero) ---- */
.hero-portrait--banner {
  position: relative;
  margin: 0 0 var(--s-12);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.hero-portrait-banner-inner {
  max-width: 1180px; margin: 0 auto;
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.hero-portrait-banner-inner img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: 55% 22%;
  filter: saturate(0.95) contrast(1.02);
}
.hero-portrait-banner-caption {
  position: absolute; left: 28px; bottom: 20px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.22);
  border-radius: 2px;
}
@media (max-width: 820px) {
  .hero-portrait-banner-inner { aspect-ratio: 4 / 3; }
}

/* ---- Portrait variant: SQUARE (editorial figure with caption beneath) ---- */
.hero-portrait--square {
  margin: 0 0 28px; padding: 0;
  display: inline-block;
}
.hero-portrait--square img {
  width: 240px; height: 240px;
  object-fit: cover; object-position: 58% 22%;
  display: block;
  border-radius: 2px;
  border: 1px solid var(--border);
  filter: saturate(0.95) contrast(1.02);
}
.hero-portrait--square figcaption {
  margin-top: 10px; max-width: 240px;
  font-size: 12px; color: var(--fg-subtle); font-style: italic;
  line-height: 1.5;
}

/* ---- Portrait variant: CIRCLE (minimal headshot) ---- */
.hero-portrait--circle {
  width: 120px; height: 120px; margin-bottom: 24px;
  border-radius: 999px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.25);
}
.hero-portrait--circle img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: 58% 22%;
  filter: saturate(0.95) contrast(1.02);
}

/* ---- Portrait variant: OFFSET (tall image w/ printed-over tag) ---- */
.hero-portrait--offset {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}
.hero-portrait--offset img {
  width: 200px; height: 260px; display: block;
  object-fit: cover; object-position: 58% 22%;
  border-radius: 1px;
  filter: saturate(0.95) contrast(1.02);
}
.hero-portrait-offset-tag {
  position: absolute; right: -14px; bottom: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  display: flex; gap: 6px; align-items: center;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.3);
}

/* ---- Direction C special-case: portrait lives in the aside column, so shrink big variants ---- */
.home[data-direction="C"] .hero-portrait--square img { width: 200px; height: 200px; }
.home[data-direction="C"] .hero-portrait--offset img { width: 180px; height: 230px; }
.home[data-direction="C"] .hero-portrait--circle { width: 110px; height: 110px; }

/* Direction B centering for new variants */
.home[data-direction="B"] .hero-portrait--square,
.home[data-direction="B"] .hero-portrait--circle,
.home[data-direction="B"] .hero-portrait--offset { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
.home[data-direction="B"] .hero-portrait--square figcaption { text-align: center; margin-left: auto; margin-right: auto; }

/* =========================================================================
   PAPER TONES — soft warm/cool page tints (applied in light mode only)
   Card = slightly lighter than page so hierarchy still reads.
   ========================================================================= */
body[data-paper="beige"]:not(.dark) {
  --bg: #f0e7d4;
  --paper: #faf3e1;
  --bg-muted: #ece1c9;
  --border: #e0d3b6;
  --border-strong: #c9b88f;
  --hairline: rgba(90, 60, 20, 0.10);
}
body[data-paper="cream"]:not(.dark) {
  --bg: #f7f1e1;
  --paper: #fdf9ed;
  --bg-muted: #f1e9d3;
  --border: #e8dec6;
  --border-strong: #d5c6a1;
  --hairline: rgba(90, 60, 20, 0.08);
}
body[data-paper="stone"]:not(.dark) {
  --bg: #eae6dd;
  --paper: #f4f1ea;
  --bg-muted: #e2ddd2;
  --border: #d8d2c4;
  --border-strong: #b8ae9b;
  --hairline: rgba(30, 25, 15, 0.08);
}
body[data-paper="sage"]:not(.dark) {
  --bg: #e6ebe0;
  --paper: #f0f3eb;
  --bg-muted: #dee5d6;
  --border: #cfd7c4;
  --border-strong: #a8b699;
  --hairline: rgba(30, 50, 30, 0.08);
}
/* Colored paper + portrait: frame uses --paper var so it auto-tints with the selected paper tone */

/* Direction B — editorial centered */
.home[data-direction="B"] .hero { text-align: center; padding: var(--s-20) 0 var(--s-16); }
.home[data-direction="B"] .hero-portrait--polaroid { display: flex; justify-content: center; }
.home[data-direction="B"] .hero-portrait-frame { align-items: center; }
.home[data-direction="B"] .hero-status { margin-left: auto; margin-right: auto; }
.home[data-direction="B"] .display { margin-left: auto; margin-right: auto; max-width: 22ch; }
.home[data-direction="B"] .hero-lede { margin-left: auto; margin-right: auto; text-align: center; }
.home[data-direction="B"] .hero-cta { justify-content: center; }
.home[data-direction="B"] .hero-meta { justify-content: center; }

/* Direction C — aside/sidebar layout */
.home[data-direction="C"] .hero {
  display: grid; grid-template-columns: 240px 1fr; gap: 80px;
  align-items: start;
}
.home[data-direction="C"] .hero-aside {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.home[data-direction="C"] .hero-aside-meta {
  font-size: 13px; color: var(--fg-muted); line-height: 1.7;
}
.home[data-direction="C"] .hero-aside-meta div + div { margin-top: 2px; }
.home[data-direction="C"] .hero-aside-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-subtle);
  margin-bottom: 6px;
}
.home[data-direction="C"] .hero-main { padding-top: 14px; border-top: 1px solid var(--border); }
.home[data-direction="C"] .display { font-size: clamp(40px, 6vw, 72px); max-width: 16ch; }
@media (max-width: 820px) {
  .home[data-direction="C"] .hero { grid-template-columns: 1fr; gap: 24px; }
}

.hero-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: var(--s-10);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--fg-muted);
}
.hero-meta strong { color: var(--fg-strong); font-weight: 500; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-sep { color: var(--ink-200); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  font-family: inherit; font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; border-radius: 999px; padding: 9px 20px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink-900); color: var(--fg-inverse); }
.btn-primary:hover { background: #000; color: #fff; text-decoration: none; }
.btn-secondary { background: var(--paper); color: var(--fg-strong); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--bg-muted); text-decoration: none; }
.btn-link { background: transparent; color: var(--accent); padding: 9px 4px; border-radius: 0; }
.btn-link:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }
.btn-ghost { background: transparent; color: var(--fg-strong); border-color: transparent; padding: 9px 12px; }
.btn-ghost:hover { background: var(--bg-muted); }

/* =========================================================================
   CHIPS
   ========================================================================= */
.chip {
  display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 999px;
  font-size: 11.5px; font-weight: 500; line-height: 1.5;
  letter-spacing: -0.005em;
}
.chip-neutral { background: var(--paper); color: var(--fg-muted); border: 1px solid var(--border); }
.chip-accent { background: var(--espresso-100); color: var(--espresso-700); }
.chip-sage { background: var(--sage-100); color: var(--sage-700); }

/* =========================================================================
   CURRENTLY WORKING ON — cards
   ========================================================================= */
.current-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: var(--s-4);
}
@media (max-width: 860px) { .current-grid { grid-template-columns: 1fr; } }
.current {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 22px 20px;
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  min-height: 180px;
}
.current:hover {
  box-shadow: var(--sh-2);
  border-color: var(--border-strong);
}
.current-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.current-logo {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.current-logo img { max-width: 36px; max-height: 36px; object-fit: contain; }
.current-role-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  color: var(--fg-muted); padding: 3px 9px; border-radius: 999px;
  background: var(--bg-muted); border: 1px solid var(--border);
}
.current-org { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--fg-strong); margin-top: 0; letter-spacing: -0.025em; line-height: 1.15; }
.current-role { font-size: 13px; color: var(--fg-muted); margin-top: 2px; letter-spacing: -0.005em; }
.current-note { font-size: 14px; color: var(--fg); line-height: 1.5; margin: 0; flex: 1; }
.current-link {
  font-size: 13px; color: var(--accent); font-weight: 500; text-decoration: none;
  margin-top: 4px;
}
.current-link:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   POST ROWS
   ========================================================================= */
.post-list { display: flex; flex-direction: column; margin-top: 8px; }
.post-row {
  display: grid; grid-template-columns: 120px 1fr 20px;
  gap: 24px; padding: 22px 8px; border-top: 1px solid var(--border);
  align-items: flex-start; cursor: pointer; text-decoration: none; color: inherit;
  transition: background var(--dur-fast) var(--ease-out),
              padding var(--dur-base) var(--ease-out);
  border-radius: 6px;
}
.post-row:hover { background: var(--paper); }
.post-row:hover .post-arrow { transform: translateX(4px); color: var(--accent); }
.post-row:last-child { border-bottom: 1px solid var(--border); }
.post-date { font-size: 12.5px; color: var(--fg-muted); padding-top: 4px; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.post-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.02em; line-height: 1.3; }
.post-excerpt { font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin-top: 6px; max-width: 62ch; }
.post-tags { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.post-arrow {
  color: var(--fg-subtle); font-size: 16px; padding-top: 4px;
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

/* =========================================================================
   WRITING INDEX
   ========================================================================= */
.writing-controls {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin: var(--s-4) 0 0;
}
.writing-filter {
  font-size: 13px; padding: 5px 12px; border-radius: 999px;
  background: var(--paper); color: var(--fg-muted); border: 1px solid var(--border);
  cursor: pointer; font-family: inherit;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.writing-filter:hover { color: var(--fg-strong); border-color: var(--border-strong); }
.writing-filter.active { background: var(--ink-900); color: var(--fg-inverse); border-color: var(--ink-900); }

.post-index { display: flex; flex-direction: column; margin-top: var(--s-6); }
.post-index-row {
  display: grid; grid-template-columns: 140px 1fr 24px; gap: 28px;
  padding: 24px 4px; border-top: 1px solid var(--border);
  cursor: pointer; text-decoration: none; color: inherit;
  align-items: flex-start;
  transition: background var(--dur-fast) var(--ease-out);
}
.post-index-row:last-child { border-bottom: 1px solid var(--border); }
.post-index-row:hover .post-title { color: var(--accent); }
.post-index-row:hover .post-arrow { transform: translateX(4px); color: var(--accent); }
.post-index-date { font-size: 12.5px; color: var(--fg-muted); padding-top: 5px; font-variant-numeric: tabular-nums; }
.post-meta-row { display: flex; gap: 14px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.post-read { font-size: 12px; color: var(--fg-subtle); }

/* =========================================================================
   EXPERIENCE
   ========================================================================= */
.exp-list { display: flex; flex-direction: column; }
.exp-row {
  display: grid; grid-template-columns: 140px 56px 1fr auto; gap: 28px;
  padding: 30px 0; border-top: 1px solid var(--border);
  align-items: flex-start;
}
.exp-row:last-child { border-bottom: 1px solid var(--border); }
.exp-dates { font-size: 13px; color: var(--fg-muted); display: flex; flex-direction: column; gap: 2px; font-variant-numeric: tabular-nums; letter-spacing: -0.005em; padding-top: 4px; }
.exp-end { color: var(--fg-subtle); }
.exp-duration { color: var(--fg-subtle); font-size: 11.5px; margin-top: 4px; }
.exp-mark {
  width: 48px; height: 48px; border-radius: 10px; background: var(--paper);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-top: 2px;
}
.exp-mark img { max-width: 32px; max-height: 32px; object-fit: contain; }
.exp-wordmark {
  font-family: var(--font-display); font-weight: 600;
  color: var(--fg-strong); font-size: 16px; letter-spacing: -0.02em;
}
.exp-role {
  font-size: 20px; font-weight: 600; color: var(--fg-strong);
  letter-spacing: -0.022em; margin: 0; line-height: 1.2;
  font-family: var(--font-display);
}
.exp-org { font-size: 14px; color: var(--fg-muted); margin-top: 3px; }
.exp-notes { margin: 14px 0 0; padding-left: 18px; font-size: 14.5px; color: var(--fg); line-height: 1.55; }
.exp-notes li { margin-bottom: 6px; }
.exp-notes li::marker { color: var(--fg-subtle); }
.exp-tags { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.exp-kind {
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 999px;
  background: var(--bg-muted); color: var(--fg-muted);
  border: 1px solid var(--border);
  white-space: nowrap; align-self: start; margin-top: 4px;
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .exp-row { grid-template-columns: 1fr; gap: 10px; }
  .exp-mark { display: none; }
  .exp-kind { justify-self: start; }
  .post-row, .post-index-row { grid-template-columns: 1fr; gap: 6px; }
  .post-arrow { display: none; }
}

/* =========================================================================
   POST DETAIL / PROSE
   ========================================================================= */
.back {
  display: inline-block; font-size: 13px; color: var(--fg-muted);
  text-decoration: none; cursor: pointer; margin-bottom: var(--s-6);
}
.back:hover { color: var(--fg-strong); }
.post-head { margin-bottom: var(--s-10); }
.post-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--fg-muted); margin-bottom: 18px;
  flex-wrap: wrap;
}
.post-meta-sep { color: var(--ink-200); }
.prose p {
  font-size: 18px; line-height: 1.65; color: var(--fg);
  max-width: 64ch; margin: 0 0 20px; text-wrap: pretty;
}
.prose strong { color: var(--fg-strong); font-weight: 600; }
.prose em { font-style: italic; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--accent-hover); }
.prose h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  letter-spacing: -0.025em; color: var(--fg-strong);
  margin: 40px 0 14px;
}
.code {
  background: var(--ink-900); color: var(--ink-100);
  padding: 20px 24px; border-radius: 12px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.6;
  overflow-x: auto; margin: 28px 0;
}
.pullquote {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--espresso-500);
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.4;
  color: var(--fg-strong);
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: balance;
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 64px;
  margin-top: var(--s-8);
  align-items: start;
}
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; gap: 40px; } }
.about-prose p { font-size: 18px; line-height: 1.65; max-width: 58ch; }

.about-aside {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 28px;
}
.about-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px;
  box-shadow: var(--sh-1);
}
.about-card h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-muted); margin: 0 0 12px;
}
.about-meta-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.about-meta-list li { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 13.5px; }
.about-meta-list .label { color: var(--fg-muted); }
.about-meta-list .value { color: var(--fg-strong); font-weight: 500; }

.about-logos {
  margin-top: var(--s-12); padding-top: var(--s-8);
  border-top: 1px solid var(--border);
}
.about-logos-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-muted);
  margin-bottom: 20px;
}
.about-logos-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .about-logos-grid { grid-template-columns: repeat(3, 1fr); } }
.about-logo-cell {
  height: 40px; display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: opacity var(--dur-base) var(--ease-out);
}
.about-logo-cell:hover { opacity: 1; }
.about-logo-cell img { max-width: 100%; max-height: 32px; object-fit: contain; filter: grayscale(1); }
.about-logo-cell:hover img { filter: none; }
.about-logo-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; color: var(--fg-muted); letter-spacing: -0.015em;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  margin-top: var(--s-8);
  align-items: start;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; font-weight: 500; color: var(--fg-strong); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15px; padding: 11px 14px;
  border: 1px solid var(--border-strong); border-radius: 10px;
  background: var(--paper); color: var(--fg-strong);
  outline: none; resize: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: var(--sh-focus);
}
.contact-form .btn { align-self: flex-start; margin-top: 6px; }
.contact-side {
  display: flex; flex-direction: column; gap: 20px;
  padding: 24px; background: var(--paper);
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-1);
}
.contact-side-item { display: flex; flex-direction: column; gap: 4px; }
.contact-side-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.contact-side-value { font-size: 14px; color: var(--fg-strong); font-weight: 500; }
.contact-side-value a { color: var(--fg-strong); text-decoration: none; }
.contact-side-value a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   TWEAKS PANEL
   ========================================================================= */
.tweaks-panel {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--sh-4);
  font-family: var(--font-sans);
  overflow: hidden;
  transform-origin: bottom right;
}
.tweaks-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.tweaks-title { font-size: 13px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.01em; }
.tweaks-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 14px; max-height: 60vh; overflow-y: auto; }
.tweak-row { display: flex; flex-direction: column; gap: 7px; }
.tweak-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-muted);
}
.tweak-options { display: flex; gap: 4px; flex-wrap: wrap; }
.tweak-opt {
  font-family: inherit; font-size: 12px; padding: 5px 10px; border-radius: 999px;
  background: var(--bg-muted); color: var(--fg-muted); border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.tweak-opt:hover { color: var(--fg-strong); }
.tweak-opt.active { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }
.tweak-swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--paper); cursor: pointer;
  box-shadow: 0 0 0 1px var(--border);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.tweak-swatch.active { transform: scale(1.1); box-shadow: 0 0 0 2px var(--ink-900); }
.tweak-swatches { display: flex; gap: 10px; }

/* =========================================================================
   DARK MODE (tweak)
   ========================================================================= */
body.dark {
  --bg: #000;
  --bg-elevated: #1c1c1e;
  --bg-muted: #1c1c1e;
  --paper: #1c1c1e;
  --fg: #f5f5f7;
  --fg-strong: #fff;
  --fg-muted: #a1a1a6;
  --fg-subtle: #86868b;
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.18);
  --hairline: rgba(255,255,255,0.08);
  --accent: #d19673;
  --accent-hover: #e0aa87;
  --accent-wash: rgba(209, 150, 115, 0.12);
  --link: #d19673;
  --link-hover: #e0aa87;
}
body.dark .nav { background: rgba(0,0,0,0.7); }
body.dark .nav.scrolled { background: rgba(0,0,0,0.85); border-bottom-color: rgba(255,255,255,0.08); }
body.dark .nav-brand-mark { background: var(--paper); color: var(--ink-900); }
body.dark .btn-primary { background: var(--paper); color: var(--ink-900); }
body.dark .btn-primary:hover { background: #fff; color: #000; }
body.dark .writing-filter.active { background: var(--paper); color: var(--ink-900); border-color: var(--paper); }
body.dark .tweak-opt.active { background: var(--paper); color: var(--ink-900); border-color: var(--paper); }
body.dark .tweak-swatch.active { box-shadow: 0 0 0 2px var(--paper); }
body.dark .chip-accent { background: rgba(209, 150, 115, 0.15); color: #e0aa87; }
body.dark .chip-sage { background: rgba(90, 122, 99, 0.18); color: #9db8a5; }
body.dark .about-logo-cell img { filter: grayscale(1) invert(1) brightness(1.2); }
body.dark .about-logo-cell:hover img { filter: invert(1) brightness(1.2); }
body.dark .tweaks-panel { background: rgba(28, 28, 30, 0.92); }
body.dark .hero-status-dot { box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.25); }

/* =========================================================================
   DENSITY TWEAK
   ========================================================================= */
body.density-compact { --s-16: 48px; --s-20: 56px; --s-24: 72px; }
body.density-compact .hero { padding: var(--s-12) 0 var(--s-8); }
body.density-compact .display { font-size: clamp(40px, 6.5vw, 76px); }
body.density-compact .exp-row { padding: 22px 0; }
body.density-compact .post-index-row { padding: 18px 4px; }
body.density-compact .current { min-height: 160px; padding: 18px; }

/* =========================================================================
   ACCENT TWEAK (espresso / sage / ink / inkblue)
   ========================================================================= */
body[data-accent="espresso"]  { --accent: var(--espresso-500); --accent-hover: var(--espresso-700); --accent-wash: var(--espresso-100); --accent-200: var(--espresso-200); --link: var(--espresso-500); --link-hover: var(--espresso-700); --sh-focus: 0 0 0 4px rgba(107, 58, 34, 0.18); }
body[data-accent="sage"]      { --accent: var(--sage-500);     --accent-hover: var(--sage-700);     --accent-wash: var(--sage-100);     --accent-200: var(--sage-200);     --link: var(--sage-500);     --link-hover: var(--sage-700);     --sh-focus: 0 0 0 4px rgba(90, 122, 99, 0.20); }
body[data-accent="ink"]       { --accent: var(--ink-900);      --accent-hover: var(--ink-700);      --accent-wash: var(--ink-100);      --accent-200: var(--ink-200);      --link: var(--ink-900);      --link-hover: var(--ink-700);      --sh-focus: 0 0 0 4px rgba(29, 29, 31, 0.16); }
body[data-accent="inkblue"]   { --accent: var(--inkblue-500);  --accent-hover: var(--inkblue-700);  --accent-wash: var(--inkblue-100);  --accent-200: var(--inkblue-200);  --link: var(--inkblue-500);  --link-hover: var(--inkblue-700);  --sh-focus: 0 0 0 4px rgba(47, 90, 138, 0.22); }

/* Accent-aware chip + pullquote — so you can SEE the accent change */
.chip-accent { background: var(--accent-wash); color: var(--accent-hover); }
body[data-accent] .pullquote { border-left-color: var(--accent); }

/* Editorial color accents on writing — show the user's accent across the page */
.eyebrow { color: var(--accent-hover); }
.writing-filter.active { background: var(--accent); color: #fff; border-color: var(--accent); }
body[data-accent="ink"] .writing-filter.active { color: var(--fg-inverse); }

/* Display heading: the italic soft line picks up the accent color itself — no highlighter strip */
.display .display-soft {
  color: var(--accent-hover);
}

/* Subtle period color on h1/h2 display headings — a small but felt touch */
.h1::after, .display::after { color: var(--accent); }

/* Accent border-top on post rows when hovered, accent title */
.post-index-row:hover .post-title { color: var(--accent-hover); }
.post-row:hover .post-title { color: var(--accent-hover); }

/* Section-link (All writing → etc) already uses --accent, good */

/* Post tags — one neutral, but when on accent=inkblue/espresso, let the accent tint through the neutral hover */
.chip-neutral:hover { border-color: var(--accent-200); color: var(--accent-hover); }


