/* =========================================================
   Neil Busque — Personal Brand Site
   Premium / modern direction. Inter only.
   Cream #FAF7F2 default, ink #0A0A0A, vibrant yellow #FFD60A.
   One dark stats section for confident contrast.
========================================================= */

:root {
  --cream: #FAF7F2;
  --cream-deep: #F2EDE3;
  --paper: #FFFDF8;
  --ink: #0A0A0A;
  --ink-soft: #2A2620;
  --muted: #6E6657;
  --rule: #E5DECF;
  --rule-strong: #1A1A1A;

  /* Vibrant accent — saturated highlighter yellow */
  --accent: #FFD60A;
  --accent-deep: #E5B800;
  --accent-soft: #FFF1A6;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --measure: 64ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --max-w: 760px;
  --max-w-wide: 1120px;

  --t-fast: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, blockquote, figure { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* Soft yellow glow ambient — anchors the brand color */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 90% -10%, rgba(255, 214, 10, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(10, 10, 10, 0.025), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, nav, footer { position: relative; z-index: 1; }

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

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
a:hover { color: var(--ink); text-decoration-color: var(--accent); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 0.92;
  font-feature-settings: "ss01", "cv11";
}

h1.display { font-size: clamp(3rem, 9vw, 7rem); }
h2.display { font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 0.98; letter-spacing: -0.042em; }
h3.display { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; }

/* Hero headline — slightly tighter line-height since it's a 2-liner with emoji */
.hero-headline { line-height: 1.0; }
.wave {
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave 2.6s ease-in-out 0.6s 2;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Yellow period accent */
.dot {
  color: var(--accent);
  display: inline-block;
  transform: translateY(0.02em);
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wrap-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(4rem, 9vw, 7rem) 0; }
section + section { border-top: 1px solid var(--rule); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.nav.is-scrolled { border-bottom-color: var(--rule); }

.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}
.nav-mark { font-weight: 800; letter-spacing: -0.025em; }

.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ea44f;
  box-shadow: 0 0 0 0 rgba(46, 164, 79, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 164, 79, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 164, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 164, 79, 0); }
}

.nav-cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 0 0 0 rgba(255, 214, 10, 0);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(10, 10, 10, 0.35);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(10, 10, 10, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(4rem, 11vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: visible;
}

.hero .wrap.hero-grid {
  max-width: var(--max-w-wide);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-text { min-width: 0; }

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.9rem;
  background: rgba(10, 10, 10, 0.04);
  border-radius: 999px;
}

.hero h1.display {
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.95vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 38ch;
  letter-spacing: -0.01em;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.hero-meta a {
  color: var(--ink-soft);
  text-decoration-color: var(--rule);
}

/* Hero portrait — transparent BG, glow behind, generous size */
.hero-portrait {
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 460px;
}
.hero-portrait-glow {
  position: absolute;
  inset: 4% 8% 8% 8%;
  background: radial-gradient(closest-side, rgba(255, 214, 10, 0.55), rgba(255, 214, 10, 0) 70%);
  filter: blur(28px);
  z-index: 0;
}
.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-portrait img { animation: none; }
}

@media (max-width: 800px) {
  .hero .wrap.hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-portrait {
    order: -1;
    justify-content: flex-start;
    min-height: 320px;
  }
  .hero-portrait img {
    max-width: 260px;
  }
}

/* ---------- Skills marquee (dark, faded) ---------- */
.marquee-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  border-top: 0;
  position: relative;
  overflow: hidden;
}
section.marquee-section + section { border-top: 0; }

.marquee-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  text-align: center;
  margin-bottom: 1.75rem;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Soft fade at left and right edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee + .marquee { margin-top: 0.9rem; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  white-space: nowrap;
  animation: marquee-scroll 42s linear infinite;
  will-change: transform;
}
.marquee-reverse .marquee-track {
  animation-name: marquee-scroll-reverse;
  animation-duration: 36s;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-item {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.035em;
  color: rgba(250, 247, 242, 0.22);
  transition: color var(--t-fast);
}
.marquee-item.small {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 214, 10, 0.28);
}
.marquee-sep {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: rgba(255, 214, 10, 0.55);
  font-weight: 700;
  line-height: 1;
}

/* Pause on hover so people can read */
.marquee:hover .marquee-track,
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Now block ---------- */
.now {
  background: var(--cream-deep);
  border-top: 0;
  border-bottom: 1px solid var(--rule);
}
section.now { padding: clamp(2.75rem, 5vw, 4rem) 0; }

.now-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.now-head .now-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.now-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.65);
  animation: pulse-accent 2.4s infinite;
}
@keyframes pulse-accent {
  0%   { box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.65); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 214, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 214, 10, 0); }
}
.now-date {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.now-body {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.95vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  font-weight: 400;
}
.now-body p + p { margin-top: 1rem; }
.now-body strong { color: var(--ink); font-weight: 700; }

.now-foot {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.now-foot a { color: var(--ink); text-decoration-color: var(--rule); }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: 0.75rem; }

/* ---------- Experience timeline ---------- */
.experience {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
/* Vertical connector line behind the dot markers */
.experience::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--rule) 100%);
  opacity: 0.55;
  border-radius: 2px;
}

.role {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "marker year"
    "head head"
    "body body";
  align-items: start;
  column-gap: 1rem;
  row-gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: transparent;
  position: relative;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.role::before {
  /* Big yellow vertical accent bar that grows on hover */
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.55rem;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 3px;
  transition: height var(--t-med);
}
.role:hover {
  background: var(--paper);
  border-color: var(--ink);
  transform: translateX(4px);
  box-shadow: 0 14px 28px -16px rgba(10, 10, 10, 0.25);
}
.role:hover::before {
  height: calc(100% - 3rem);
}

/* Dot marker on the timeline rail */
.role-marker {
  position: absolute;
  left: -2.5rem;
  top: 1.8rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--ink);
  z-index: 1;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  grid-area: marker;
}
.role:hover .role-marker {
  background: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(255, 214, 10, 0.2);
}

.role-year {
  grid-area: year;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: var(--cream-deep);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.role:hover .role-year {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}

.role-head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.role-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.role-title em { font-style: normal; font-weight: 500; color: var(--muted); }
.role-dates {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.role ul {
  grid-area: body;
  list-style: none;
  padding: 0;
  margin-top: 0.4rem;
}
.role ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.role.in ul li {
  opacity: 1;
  transform: translateX(0);
}
.role.in ul li:nth-child(1) { transition-delay: 0.08s; }
.role.in ul li:nth-child(2) { transition-delay: 0.16s; }
.role.in ul li:nth-child(3) { transition-delay: 0.24s; }
.role.in ul li:nth-child(4) { transition-delay: 0.32s; }
.role ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--t-fast);
}
.role:hover ul li::before { width: 14px; }

@media (max-width: 560px) {
  .experience::before { display: none; }
  .role { padding-left: 1.25rem; }
  .role-marker { display: none; }
  .role::before { left: 0.4rem; top: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .role ul li { opacity: 1; transform: none; }
}

/* ---------- About prose ---------- */
.about-prose p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: var(--measure);
  letter-spacing: -0.005em;
}
.about-prose p + p { margin-top: 1.25rem; }
.about-prose strong { color: var(--ink); font-weight: 700; }

/* ---------- Contact grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.contact-card:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -12px rgba(10, 10, 10, 0.4);
}
.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  transition: background var(--t-fast), transform var(--t-fast);
}
.contact-card:hover .contact-icon {
  background: var(--ink);
  color: var(--accent);
  transform: rotate(-4deg);
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card:hover .contact-label { color: var(--ink); }
.contact-value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-arrow {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--ink);
  transition: transform var(--t-fast);
}
.contact-card:hover .contact-arrow { transform: translateX(4px); }

@media (max-width: 540px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-aside {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.contact-aside a { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--rule);
  background: transparent;
}
.foot-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.foot-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.025em;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Now archive list ---------- */
.archive-list { list-style: none; padding: 0; }
.archive-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.archive-list li:last-child { border-bottom: 0; }
.archive-date {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  min-width: 7rem;
}
.archive-blurb {
  font-family: var(--sans);
  color: var(--ink-soft);
  flex: 1;
  min-width: 16rem;
}
.archive-empty {
  font-family: var(--sans);
  color: var(--muted);
  padding: 1rem 0;
  font-style: italic;
}

/* ---------- Mobile tuning ---------- */
@media (max-width: 540px) {
  .nav-right .status { display: none; }
  .hero-sub { max-width: 100%; }
  .nav-inner { padding: 0.75rem var(--gutter); }
  body { font-size: 16px; }
}
