/* ==========================================================================
   Richard Sedellke – Portfolio
   style.css  ·  Amber design system
   ========================================================================== */

/* ===== TOKENS ===== */
:root {
  --ink:           #1b1613;
  --ink-2:         #241d18;
  --paper:         #f7f3ec;
  --bg:            #ffffff;
  --text:          #241f1b;
  --muted:         #6f655c;
  --on-dark:       #f3ede3;
  --on-dark-muted: #a99e90;
  --accent:        #c77d2a;
  --accent-deep:   #a2631e;
  --accent-label:  #8f561a; /* AA on paper */
  --border:        #e8e1d6;
  --line-dark:     rgba(243, 237, 227, 0.10);

  --f-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:   'Space Mono', ui-monospace, monospace;
  --f-script: 'Caveat', cursive;

  --container:  1160px;
  --nav-height: 62px;
  --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--f-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }
.section--alt { background: var(--paper); }

/* ===== SIGNATURE SQUARE ===== */
.sq {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex: none;
}
.sq--sm { width: 6px; height: 6px; }
.sq--ink { background: var(--ink); }

/* ===== TYPOGRAPHY UTILITIES ===== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-label);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 1.4rem;
}

.lede {
  font-size: 1.06rem;
  color: var(--on-dark-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin: 0 0 1.1rem;
}

.script {
  font-family: var(--f-script);
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 1.9rem;
}

.sec-head { margin-bottom: 2.6rem; }
.sec-head .label { margin-bottom: 0.9rem; }

.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 24ch;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn--solid {
  background: var(--accent);
  color: var(--ink);
}
.btn--solid:hover { background: var(--accent-deep); }

.btn--ghost {
  border: 1px solid var(--line-dark);
  color: var(--on-dark);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 22, 19, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--nav-height);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--on-dark);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 18% 12%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 90% at 18% 12%, #000 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 50px;
  padding-bottom: 60px;
  min-height: calc(100vh - var(--nav-height));
}

.hero__content {
  align-self: start;
  padding-top: 74px;
}

.hero__h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
}
.hero__h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* founder card — aligned to center of content area */
.hero__aside { align-self: center; }

.card-dark {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 1.6rem 1.5rem;
}

.card-dark__head {
  margin: 0 0 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  font-weight: 700;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.founder a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem 0;
  border-top: 1px solid var(--line-dark);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--on-dark);
  transition: color var(--transition), padding-left var(--transition);
}
.founder a:first-of-type { border-top: 0; }
.founder a:hover { color: var(--accent); padding-left: 6px; }

.founder__tag {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--on-dark-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}

.founder__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.founder__icon--img {
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity var(--transition);
}
.founder a:hover .founder__icon--img { opacity: 1; }
.founder__icon--lg {
  width: 2.75rem;
  height: 2.75rem;
  position: relative;
  left: -10px;
  margin-right: -22px;
  margin-top: -6px;
}

/* ==========================================================================
   PROCESS PIPELINE
   ========================================================================== */
.pipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.pipe__step {
  padding: 1.5rem 1.4rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
}
.section--alt .pipe__step { background: var(--paper); }
.pipe__step:last-child { border-right: 0; }

.pipe__n {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent-label);
  margin-bottom: 0.7rem;
}

.pipe__step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.pipe__step p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   PROJECTS — FILTER PILLS + moTimeline theming
   ========================================================================== */
.projects__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.filter-btn {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}
.filter-btn.active {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}

/* moTimeline card theming */
#projectsTimeline {
  --mo-line-color: var(--border);
  --mo-badge-bg: var(--ink);
  --mo-badge-color: var(--on-dark);
  --mo-badge-size: 28px;
  margin-top: 2rem;
}

#projectsTimeline .mo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
#projectsTimeline .mo-item:hover .mo-card {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(27, 22, 19, 0.10);
}

#projectsTimeline .mo-card-body { padding: 1.4rem 1.5rem; }

#projectsTimeline .mo-meta {
  font-family: var(--f-mono) !important;
  font-size: 0.70rem !important;
  letter-spacing: 0.05em;
  color: var(--muted) !important;
  margin-bottom: 0.7rem !important;
}

#projectsTimeline .mo-card-body h3 {
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.25;
}

#projectsTimeline .tl-role {
  font-family: var(--f-mono) !important;
  font-size: 0.70rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text) !important;
  font-weight: 400 !important;
  margin: 0 0 0.2rem !important;
}

#projectsTimeline .tl-client {
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-bottom: 0.9rem !important;
}

#projectsTimeline .mo-card-body > p:not(.mo-meta):not(.tl-role):not(.tl-client) {
  font-size: 0.9rem !important;
  color: var(--text) !important;
  line-height: 1.6 !important;
  margin: 0 0 1rem !important;
}

#projectsTimeline .tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-top: 0;
}

#projectsTimeline .tl-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
#projectsTimeline .tl-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

/* badge pill */
#projectsTimeline .tl-featured {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   MID-CTA
   ========================================================================== */
.midcta {
  background: var(--ink);
  color: var(--on-dark);
  padding: 38px 0;
}

.midcta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.midcta__row .label { color: var(--accent); margin-bottom: 0.5rem; }
.midcta__row p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   SKILLS
   ========================================================================== */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.skill-group {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 1.3rem 1.4rem;
}

.section--alt .skill-group { background: var(--paper); }

.skgroup--ai {
  border-color: var(--accent);
  grid-column: 1 / -1;
}

.skgroup__h {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 1rem;
  font-weight: 700;
}
.skgroup--ai .skgroup__h { color: var(--accent-deep); }

.skgroup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ==========================================================================
   ABOUT — spec block (photo-less)
   ========================================================================== */
.about__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.spec {
  border: 1px solid var(--border);
  background: var(--bg);
}

.spec__row {
  display: flex;
  gap: 1.2rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.spec__row:last-child { border-bottom: 0; }

.spec__k {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 120px;
  flex: none;
  padding-top: 2px;
}

.spec__v {
  font-weight: 600;
  font-size: 0.95rem;
}
.spec__v small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.about__body .label { margin-bottom: 0.9rem; }

.about__body .sec-title {
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.about__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.xp { }

.xp__item {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 1.6rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--border);
}
.xp__item:first-child { border-top: 0; }

.xp__period {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-top: 3px;
}

.xp__body h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.xp__loc {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
  display: block;
}

.xp__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   AWARDS & CERTIFICATIONS
   ========================================================================== */
.awards {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.aw {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 1.4rem;
}

.aw--hl { border-left: 3px solid var(--accent); }

.aw h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 700;
}

.aw__big {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

.aw__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.aw ul { list-style: none; margin: 0; padding: 0; }

.aw li {
  display: flex;
  gap: 0.7rem;
  padding: 0.42rem 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}
.aw li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex: none;
  margin-top: 0.55em;
}

/* ==========================================================================
   CONTACT / CLOSING
   ========================================================================== */
.closing {
  background: var(--ink);
  color: var(--on-dark);
  text-align: center;
  padding: 88px 0;
}

.closing__inner { }

.closing__label {
  justify-content: center;
  color: var(--accent) !important;
  margin-bottom: 1rem;
}

.closing__title {
  color: #fff;
  margin: 0 auto 1rem;
  max-width: 32ch;
}

.sign {
  font-family: var(--f-script);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin: 1.6rem 0 0.3rem;
}

.closing__contact {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
}
.closing__contact a { transition: color var(--transition); }
.closing__contact a:hover { color: var(--accent); }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE — 880px
   ========================================================================== */
@media (max-width: 880px) {
  /* nav */
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--line-dark);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.9rem 28px; font-size: 0.85rem; }
  .nav__hamburger { display: flex; }

  /* hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
    min-height: auto;
  }

  /* process */
  .pipe {
    grid-template-columns: 1fr 1fr;
  }
  .pipe__step:nth-child(2) { border-right: 0; }
  .pipe__step:nth-child(3) { border-top: 1px solid var(--border); }
  .pipe__step:nth-child(4) { border-top: 1px solid var(--border); border-right: 0; }

  /* projects */
  .mo-timeline.mo-twocol > .mo-item {
    float: none !important;
    width: 100% !important;
  }

  /* skills */
  .skills__grid { grid-template-columns: 1fr; }
  .skgroup--ai { grid-column: auto; }

  /* about */
  .about__wrap { grid-template-columns: 1fr; gap: 32px; }

  /* experience */
  .xp__item { grid-template-columns: 1fr; gap: 0.4rem; }

  /* awards */
  .awards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE — 520px
   ========================================================================== */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .pipe { grid-template-columns: 1fr; }
  .pipe__step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .pipe__step:nth-child(n) { border-top: none; }
  .pipe__step:last-child { border-bottom: 0; }

  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .midcta__row { flex-direction: column; align-items: flex-start; }

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

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   PRINT HEADER — hidden on screen
   ========================================================================== */
.print-header { display: none; }

/* ==========================================================================
   PRINT / CV
   ========================================================================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 1.5cm 2cm;
  }

  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .fade-in,
  .mo-timeline.mo-animate > .mo-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nav, .hero, .midcta, .closing, .projects__filters { display: none !important; }

  .print-header {
    display: block;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid var(--ink);
  }
  .print-header__name {
    font-size: 22pt;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 0.2rem;
    letter-spacing: -0.02em;
  }
  .print-header__title {
    font-size: 10pt;
    color: var(--muted);
    margin: 0 0 0.6rem;
  }
  .print-header__contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 8.5pt;
    color: var(--muted);
  }

  body   { font-size: 10pt; color: var(--ink); background: #fff; }
  .container { max-width: 100%; padding: 0; }
  .section { padding: 1rem 0; }
  .section--alt { background: #fff; }
  .sec-title { font-size: 14pt; margin-bottom: 0.6rem; }

  /* process */
  #process { display: none !important; }

  /* about */
  .about__wrap { grid-template-columns: 1fr; gap: 0.75rem; }

  /* skills */
  .skills__grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .skill-group { padding: 0.6rem; }
  .skgroup--ai { grid-column: 1 / -1; }

  /* moTimeline single col */
  .mo-timeline.mo-twocol::before { display: none !important; }
  .mo-timeline > .mo-item {
    float: none !important;
    width: 100% !important;
    clear: both;
  }
  .mo-filtered-out { display: block !important; }
  .mo-badge, .mo-arrow { display: none !important; }
  #projectsTimeline .mo-card {
    margin: 0.2rem 0 !important;
    box-shadow: none !important;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    page-break-inside: avoid;
  }
  #projectsTimeline .mo-card-body { padding: 0.6rem 0.75rem !important; }

  /* experience */
  .xp__item { page-break-inside: avoid; }

  /* awards */
  .awards { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .aw--hl { grid-column: 1 / -1; padding: 1rem; }

  /* page breaks */
  #skills     { page-break-before: always; }
  #projects   { page-break-before: always; }
  #experience { page-break-before: always; }
}
