/* ============================================================
   Rukman Udyog — Design tokens (see DESIGN-SPEC.md)
   ============================================================ */
:root {
  --ink: #1A1A1A;
  --paper: #FFFFFF;
  --steel: #F3F2F0;
  --line: #E1DFDB;
  --accent: #D51C3E;
  --accent-dim: #B01732;
  --navy: #0B1116;
  --navy-2: #16212A;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--steel);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { color: var(--accent); }
.section-head h2 { color: var(--accent); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.mono { font-family: var(--font-mono); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  border-radius: 3px;
}
.logo .logo-mark {
  height: 34px;
  width: auto;
  display: block;
}
.logo .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
}
nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.primary-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
}
nav.primary-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 2px; background: var(--accent);
  transition: right 0.2s ease;
}
nav.primary-nav a.active::after,
nav.primary-nav a:hover::after { right: 0; }
nav.primary-nav a.active,
nav.primary-nav a:hover { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(11,17,22,0.18); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn-accent:hover { background: var(--accent-dim); border-color: var(--accent-dim); box-shadow: 0 8px 20px rgba(213,28,62,0.35); }

.brand-row {
  border-top: 1px solid var(--line);
  background: var(--steel);
}
.brand-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding: 9px 0;
  scrollbar-width: none;
}
.brand-tabs::-webkit-scrollbar { display: none; }
.brand-tabs .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.brand-tabs a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.brand-tabs a.active,
.brand-tabs a:hover { color: var(--ink); border-color: var(--accent); }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative; transition: transform 0.2s;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.mobile-drawer { display: none; }

@media (max-width: 860px) {
  nav.primary-nav, .header-main .btn-accent { display: none; }
  .menu-toggle { display: flex; }
  .brand-row { display: none; }
  .mobile-drawer.open {
    display: block;
    border-top: 1px solid var(--line);
    background: var(--paper);
    padding: 10px 0 18px;
  }
  .mobile-drawer a.nav-link {
    display: block; padding: 12px 0; border-bottom: 1px solid var(--line);
    font-family: var(--font-display); font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em;
  }
  .mobile-drawer .brand-chip-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 0; }
  .mobile-drawer .brand-chip {
    padding: 8px 14px; border: 1px solid var(--line); border-radius: 20px; font-size: 13px;
    transition: color 0.15s, border-color 0.15s;
  }
  .mobile-drawer .brand-chip.active { border-color: var(--accent); color: var(--accent); }
  .mobile-drawer .btn { width: 100%; justify-content: center; margin-top: 6px; }
}

/* ============================================================
   Hero — entrance animation
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--paper);
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  color: var(--paper);
  max-width: 16ch;
}
.hero p.lede {
  margin-top: 20px;
  max-width: 52ch;
  color: #C7CDD3;
  font-size: 16px;
}
.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.3); color: var(--paper); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero-blueprint {
  position: absolute; right: -40px; bottom: -20px; width: 55%; max-width: 640px;
  opacity: 0.9; z-index: 1;
}
@media (max-width: 860px) {
  .hero-blueprint { display: none; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-eyebrow, .hero h1, .hero p.lede, .hero .cta-row {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero p.lede { animation-delay: 0.28s; }
.hero .cta-row { animation-delay: 0.4s; }

/* ============================================================
   Stat strip
   ============================================================ */
.stat-strip {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 24px;
}
.stat { text-align: left; }
.stat .num {
  font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--ink);
}
.stat .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 4px;
}
@media (max-width: 720px) {
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Section shells
   ============================================================ */
.section { padding: 74px 0; }
.section-steel { background: var(--steel); }
.section-navy { background: var(--navy); color: var(--paper); }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 36px); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 15px; }
.section-navy .section-head p { color: #B9C1C8; }

/* ============================================================
   Scroll-reveal utility (IntersectionObserver driven, see reveal.js)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: none; }
.grid .reveal:nth-child(1) { transition-delay: 0s; }
.grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.process-list .reveal:nth-child(1) { transition-delay: 0s; }
.process-list .reveal:nth-child(2) { transition-delay: 0.1s; }
.process-list .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   Scroll build animation (signature element)
   ============================================================ */
.build-section {
  background: var(--navy);
  position: relative;
  height: 340vh;
}
.build-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.build-sticky .section-head { text-align: center; margin: 0 auto 8px; color: var(--paper); }
.build-sticky .section-head p { color: #9BA6AE; }
.build-stage { width: 100%; max-width: 880px; padding: 0 24px; margin-top: 8px; }
.build-label {
  text-align: center; margin-top: 26px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-2); min-height: 20px;
  transition: color 0.2s;
}
.build-label.on { color: var(--accent); }
.build-rail {
  display: flex; gap: 8px; margin-top: 18px;
}
.build-rail .dot {
  width: 26px; height: 3px; background: rgba(255,255,255,0.15); transition: background 0.2s;
}
.build-rail .dot.on { background: var(--accent); }
.build-part { transition: transform 0.05s linear, opacity 0.15s; opacity: 0.35; }
.build-part.attached { opacity: 1; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-2); opacity: 0.8;
}

/* ============================================================
   Category / product grids — premium hover
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.category-card, .product-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.category-card:hover, .product-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(11,17,22,0.12);
}
.category-card {
  padding: 22px;
  gap: 10px;
}
.category-card .count {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted-2);
}
.category-card h3 { font-size: 17px; }
.category-card .go {
  margin-top: auto; font-size: 13px; color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.category-card .go::after { content: "→"; transition: transform 0.2s; display: inline-block; }
.category-card:hover .go::after { transform: translateX(4px); }

.product-media {
  aspect-ratio: 4 / 3;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-media svg { width: 40%; opacity: 0.85; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-media svg { transform: scale(1.12); }
.product-media .cat-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: #C7CDD3; background: rgba(255,255,255,0.08);
  padding: 4px 8px; border-radius: 20px;
}
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body .platform {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent);
}
.product-body h3 { font-size: 16px; line-height: 1.25; }
.product-body .sku { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.product-body .enquire {
  margin-top: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.product-body .enquire:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }

/* ============================================================
   Filter bar (products page)
   ============================================================ */
.filter-bar {
  position: sticky; top: 84px; z-index: 30;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chip {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 20px;
  font-size: 13px; color: var(--muted); background: var(--paper);
  transition: border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { border-color: var(--accent); color: var(--accent); }
.search-input {
  margin-left: auto; padding: 9px 12px; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-body); font-size: 13px; min-width: 200px;
}
.category-select {
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-body); font-size: 13px; background: var(--paper);
}
.result-count { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin: 16px 0; }

/* ============================================================
   Capability band — bold diagonal red section (Ruan-style)
   ============================================================ */
.capability-band {
  position: relative;
  background: var(--accent);
  color: var(--paper);
  padding: 118px 0 84px;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  margin-top: -46px;
}
.capability-band .section-head { color: var(--paper); }
.capability-band .eyebrow { color: rgba(255,255,255,0.85); }
.capability-band .section-head h2 { color: var(--paper); }
.capability-band .section-head p { color: rgba(255,255,255,0.85); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-item { border-top: 2px solid var(--ink); padding-top: 16px; }
.capability-band .process-item { border-top-color: rgba(255,255,255,0.55); }
.process-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-icon svg { width: 22px; height: 22px; }
.process-item .idx { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }
.capability-band .process-item .idx { color: rgba(255,255,255,0.7); }
.process-item h3 { font-size: 17px; margin-top: 8px; }
.capability-band .process-item h3 { color: var(--paper); }
.process-item p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.capability-band .process-item p { color: rgba(255,255,255,0.85); }
@media (max-width: 720px) {
  .process-list { grid-template-columns: 1fr; }
  .capability-band { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); padding-top: 84px; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--navy); color: var(--paper);
  padding: 60px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); }
.cta-band p { color: #B9C1C8; margin-top: 12px; }
.cta-band .btn-accent { margin-top: 26px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: #C7CDD3; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 32px; padding: 60px 0 40px;
}
.footer-grid h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8B98A3; margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--paper); }
.footer-grid p.blurb { font-size: 14px; line-height: 1.6; max-width: 34ch; color: #9BA6AE; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0; text-align: center;
  font-family: var(--font-mono); font-size: 12px; color: #7C8891;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 3px;
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 18px 34px rgba(11,17,22,0.1); }
.contact-card .icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--accent);
}
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 15px; }
.contact-card p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.contact-card .icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-card a.card-link { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 500; color: var(--accent); }

.enquiry-form {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 3px;
  padding: 32px;
  max-width: 620px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted-2);
}
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--paper); resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent);
}
.enquiry-form .btn { width: 100%; justify-content: center; margin-top: 4px; border: none; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-band { background: var(--paper); }
.location-band .map-frame { height: 340px; }

.footer-logo-badge {
  width: 44px; height: 44px;
  background: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.footer-logo-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ============================================================
   Blog / Events & Achievements page
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 18px 34px rgba(11,17,22,0.12); }
.blog-media {
  aspect-ratio: 16 / 10;
  background: var(--steel);
  overflow: hidden;
  position: relative;
}
.blog-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--paper); background: var(--accent);
  padding: 5px 10px; border-radius: 20px;
}
.blog-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); }
.blog-body h3 { font-size: 17px; line-height: 1.3; }
.blog-body p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   About page extras
   ============================================================ */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.timeline-item .year { font-family: var(--font-mono); font-size: 15px; color: var(--accent); }
.timeline-item h3 { font-size: 16px; }
.timeline-item p { font-size: 14px; color: var(--muted); margin-top: 6px; }