/* =========================================================
   BRUTALIST PORTFOLIO — hiring-optimized structure
   Refs: onepagelove.com/brutalist-websites
   ========================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Original brutalist palette (lime + signal red) */
  --bg: #0a0a0a;
  --bg-2: #111111;
  --fg: #f2f2f0;
  --heading: #f2f2f0;
  --muted: #8a8a86;
  --line: #f2f2f0;
  --accent: #e8ff47;
  --accent-2: #ff3b1f;
  --link: #e8ff47;
  --panel: #161616;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --pad: clamp(1rem, 3vw, 2rem);
  --max: 1100px;
  --border: 3px solid var(--line);
  --header-h: 56px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

body {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--fg);
  background: var(--accent-2);
}

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border: var(--border);
}
.skip-link:focus {
  top: 0.75rem;
  color: #000;
  background: var(--accent);
}

/* ========== TOP BAR ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 var(--pad);
  background: var(--bg);
  border-bottom: var(--border);
}

.brand {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  background: transparent;
}
.brand:hover {
  background: var(--accent);
  color: #000;
}

.nav {
  display: flex;
  gap: 0;
  border-left: var(--border);
}

.nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg);
  padding: 0.65rem 0.7rem;
  border-right: var(--border);
  background: transparent;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  background: var(--accent);
  color: #000;
}

.nav-toggle {
  display: none;
  background: var(--bg);
  color: var(--fg);
  border: var(--border);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
.nav-toggle:hover {
  background: var(--accent);
  color: #000;
}

/* ========== MARQUEE ========== */
.marquee {
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 32s linear infinite;
}

.marquee-track span { padding-right: 0.5rem; }

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

/* ========== HERO ========== */
.hero {
  padding: clamp(2.5rem, 8vw, 5rem) var(--pad) clamp(2rem, 5vw, 3.5rem);
  border-bottom: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  border: 2px solid var(--muted);
  color: var(--muted);
}

.tag.live {
  border-color: var(--accent);
  color: #000;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  animation: blink 1.2s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-name {
  font-family: var(--display);
  font-size: clamp(3rem, 13vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--heading);
}

.hero-name .line { display: block; }

.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--heading);
}

.hero-role {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  max-width: 38em;
}

.hero-role .muted {
  display: block;
  margin-top: 0.4rem;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.8rem 1rem;
  border: 3px solid var(--line);
  min-height: 44px;
  transition: none;
  text-align: center;
}

.btn-fill {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent-2);
}
.btn-fill:hover {
  background: var(--fg);
  color: #000;
  border-color: var(--fg);
  box-shadow: 4px 4px 0 var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--accent-2);
  color: var(--fg);
  border-color: var(--accent-2);
}

.hero-grid-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-top: 2px solid #2a2a2a;
  padding-top: 1rem;
}

/* ========== BLOCKS ========== */
.block {
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  border-bottom: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.block.alt {
  background: var(--bg-2);
  max-width: none;
}

.block.alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.block.hire {
  background: var(--accent);
  color: #000;
  max-width: none;
  border-bottom: var(--border);
}

.block.hire > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.block.hire a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.block.hire a:hover {
  background: #000;
  color: var(--accent);
  text-decoration: none;
}

.block.hire .block-head h2,
.block.hire .block-note,
.block.hire .idx {
  color: #000;
}

.block.hire .idx { color: var(--accent-2); }

.block.hire .btn-fill {
  background: #000;
  color: var(--accent);
  border-color: #000;
  box-shadow: 4px 4px 0 var(--accent-2);
  text-decoration: none;
}
.block.hire .btn-fill:hover {
  background: var(--fg);
  color: #000;
  border-color: #000;
}

.block.hire .btn-ghost {
  border-color: #000;
  color: #000;
  text-decoration: none;
}
.block.hire .btn-ghost:hover {
  background: #000;
  color: var(--accent);
}

.block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 3px solid currentColor;
}

.block-head h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2.05rem);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--heading);
}

.block.hire .block-head h2 {
  color: #000;
}

.idx {
  color: var(--accent);
  font-size: 0.85em;
}

.block-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.section-intro {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 48em;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.about-short {
  color: var(--fg);
  border-left: 0;
  padding-left: 0;
  border-top: 3px solid var(--accent);
  padding-top: 1rem;
  border-bottom: 2px solid #2a2a2a;
  padding-bottom: 1rem;
}

/* ========== FLAGSHIPS ========== */
.flagship {
  border: var(--border);
  background: var(--panel);
  padding: 1.35rem 1.25rem 1.4rem;
  margin-bottom: 1.15rem;
  box-shadow: 6px 6px 0 #000;
}

.flagship:first-of-type {
  box-shadow: 6px 6px 0 var(--accent-2);
}

.flag-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.flag-id {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--accent);
}

.flag-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--accent);
  color: #000;
  background: var(--accent);
}

.flag-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

.flag-result {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.65rem;
  max-width: 52em;
  line-height: 1.55;
}

.flag-body {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 52em;
}

.flag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid #2e2e2e;
  margin: 1rem 0 0.5rem;
}

.case-cell {
  padding: 0.9rem 1rem;
  border-right: 2px solid #2e2e2e;
  border-bottom: 2px solid #2e2e2e;
}

.case-cell:nth-child(2n) { border-right: 0; }
.case-cell:nth-last-child(-n+2) { border-bottom: 0; }

.case-cell h4 {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.case-cell p {
  font-size: 0.82rem;
  color: var(--fg);
  line-height: 1.5;
}

.case-cell strong { color: var(--accent); }

/* More work accordion */
.more-work {
  border: var(--border);
  margin: 1.5rem 0 2rem;
  background: var(--bg);
}

.more-work summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  user-select: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.more-work summary::-webkit-details-marker { display: none; }

.more-work summary:hover,
.more-work summary:focus-visible {
  background: var(--accent);
  color: #000;
}

.more-work[open] summary {
  border-bottom: 2px solid #2a2a2a;
}

.more-work .work-table {
  border-top: 0;
}

/* ========== WORK TABLE ========== */
.work-table {
  border-top: var(--border);
  margin-bottom: 0;
}

.work-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1rem 0.75rem;
  border-bottom: 2px solid #2a2a2a;
  color: var(--fg);
  background: transparent;
  min-height: 56px;
}

.work-row:hover {
  background: var(--accent);
  color: #000;
}

.work-row:hover .w-tech,
.work-row:hover .w-id,
.work-row:hover .w-go,
.work-row:hover .w-out {
  color: #000;
}

.w-id {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.w-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.w-title {
  font-family: var(--display);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.02em;
}

.w-out {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.w-tech {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: right;
  max-width: 12rem;
}

.w-go {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
}

/* Skills */
.skills-groups {
  margin-top: 2rem;
  border: var(--border);
  padding: 1.15rem;
  background: var(--panel);
}

.skills-heading {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.skill-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.35rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.skill-group li {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.22rem 0;
  padding-left: 0.75rem;
  position: relative;
}

.skill-group li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

/* ========== EXPERIENCE ========== */
.brutal-list > li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 2px solid #2a2a2a;
}

.brutal-list > li:first-child {
  border-top: 2px solid #2a2a2a;
}

.bl-num {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
}

.bl-body h3 {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.bl-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.bl-meta a { color: var(--accent); }
.bl-meta a:hover {
  background: var(--accent);
  color: #000;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 52em;
}

.bullets li {
  display: list-item;
  list-style: square;
  margin-left: 1.1rem;
  padding: 0;
  border: 0;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.5;
}

.bullets li::marker { color: var(--accent); }

.bullets strong { color: var(--accent); font-weight: 700; }

.edu-block {
  margin-top: 2rem;
  border: var(--border);
  padding: 1.15rem;
  background: var(--panel);
}

.edu-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.edu-list li {
  font-size: 0.88rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #2e2e2e;
  color: var(--fg);
  line-height: 1.5;
}

.edu-list li:last-child { border-bottom: 0; }

.edu-list strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ========== RESUME EMBED ========== */
.resume-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.resume-frame {
  position: relative;
  width: 100%;
  height: min(72vh, 820px);
  min-height: 480px;
  border: var(--border);
  background: #1a1a1a;
  box-shadow: 6px 6px 0 var(--accent-2);
  overflow: hidden;
}

.resume-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #525659;
}

.resume-fallback {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.resume-fallback a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== VIDEO (compact) ========== */
.video-compact {
  max-width: 380px;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: var(--border);
  background: #000;
  box-shadow: 4px 4px 0 var(--accent);
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback-bar {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 380px;
}

.video-hint {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

.video-hint strong { color: var(--fg); }

.tiny-link {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.form-open-tab {
  padding: 0 1rem 1rem;
}

/* ========== HIRE TRI ========== */
.hire-lead {
  font-family: var(--display);
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hire-tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid #000;
  margin-bottom: 1.5rem;
  background: transparent;
}

.hire-cell {
  padding: 1rem;
  border-right: 3px solid #000;
}

.hire-cell:last-child { border-right: 0; }

.hire-cell h3 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hire-cell p {
  font-size: 0.85rem;
  line-height: 1.45;
}

.hl {
  background: #000;
  color: var(--accent);
  padding: 0 0.25em;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border-top: var(--border);
  border-left: var(--border);
  margin-bottom: 1.5rem;
}

.contact-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-right: var(--border);
  border-bottom: var(--border);
  color: var(--fg);
  background: transparent;
  min-height: 5.5rem;
}

.contact-tile:hover {
  background: var(--accent);
  color: #000;
}

.contact-tile:hover .ct-k { color: #000; }

.contact-tile.preferred {
  background: #141a0a;
}

.contact-tile.preferred .ct-k {
  color: var(--accent);
}

.ct-k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.ct-v {
  font-size: 0.88rem;
  font-weight: 600;
  word-break: break-word;
}

.form-details {
  border: var(--border);
  background: var(--panel);
}

.form-details summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  user-select: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.form-details summary::-webkit-details-marker { display: none; }

.form-details summary:hover,
.form-details summary:focus-visible {
  background: var(--accent);
  color: #000;
}

.form-details[open] summary {
  border-bottom: 2px solid #2a2a2a;
}

.form-frame {
  position: relative;
  min-height: 640px;
  background: #fff;
}

.form-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FOOTER ========== */
.footer {
  padding: 1.5rem var(--pad) 2rem;
  border-top: var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer .sep { opacity: 0.5; }

.footer a { color: var(--muted); }
.footer a:hover {
  color: #000;
  background: var(--accent);
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: var(--border);
    border-left: 0;
    z-index: 99;
  }

  .nav.open { display: flex; }

  .nav a {
    border-right: 0;
    border-bottom: 2px solid #2a2a2a;
    padding: 1rem var(--pad);
    font-size: 0.8rem;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-cell {
    border-right: 0;
    border-bottom: 2px solid #2e2e2e;
  }

  .case-cell:last-child { border-bottom: 0; }

  .hire-tri {
    grid-template-columns: 1fr;
  }

  .hire-cell {
    border-right: 0;
    border-bottom: 3px solid #000;
  }

  .hire-cell:last-child { border-bottom: 0; }

  .work-row {
    grid-template-columns: 2.5rem 1fr auto;
    grid-template-areas:
      "id main go"
      "id tech go";
    align-items: start;
  }

  .w-id { grid-area: id; padding-top: 0.15rem; }
  .w-main { grid-area: main; }
  .w-tech {
    grid-area: tech;
    text-align: left;
    max-width: none;
  }
  .w-go { grid-area: go; padding-top: 0.15rem; }

  .hero-name .outline {
    -webkit-text-stroke: 1.5px var(--fg);
  }

  .flagship {
    box-shadow: 4px 4px 0 #000;
  }

  .flagship:first-of-type {
    box-shadow: 4px 4px 0 var(--accent-2);
  }
}

@media (max-width: 520px) {
  .brutal-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .video-compact,
  .video-frame {
    max-width: 100%;
  }

  .resume-frame {
    height: min(65vh, 640px);
    min-height: 360px;
    box-shadow: 4px 4px 0 var(--accent-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .dot { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print: strip chrome, keep content */
@media print {
  .topbar, .marquee, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .block.hire { background: #eee; }
  a { color: #000; text-decoration: underline; }
}
