/* ============================================================
   Gregg Wahhab — style.css
   Design: quiet slate/charcoal canvas, one confident blue accent.
   Signature motif: "data → object" (analytics meets making).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --bg: #f6f8fb;
  --bg-elev: #ffffff;
  --ink: #0f172a;          /* charcoal */
  --ink-soft: #334155;     /* slate */
  --ink-mute: #64748b;     /* muted slate */
  --line: rgba(15, 23, 42, 0.08);
  --accent: #2563eb;       /* confident blue */
  --accent-soft: #3b82f6;
  --accent-tint: rgba(37, 99, 235, 0.10);
  --good: #16a34a;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-brd: rgba(255, 255, 255, 0.7);
  --glass-blur: 14px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1120px;
  --radius: 18px;
  --radius-lg: 26px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg: #0b1120;
  --bg-elev: #111a2e;
  --ink: #f1f5f9;
  --ink-soft: #cbd5e1;
  --ink-mute: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #60a5fa;
  --accent-soft: #93c5fd;
  --accent-tint: rgba(96, 165, 250, 0.14);

  --glass-bg: rgba(17, 26, 46, 0.55);
  --glass-brd: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Background shapes ---------- */
.bg-shapes { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.5;
  animation: float 22s ease-in-out infinite;
}
.shape-1 { width: 420px; height: 420px; top: -120px; left: -100px; background: radial-gradient(circle, var(--accent-tint), transparent 70%); }
.shape-2 { width: 360px; height: 360px; top: 30%; right: -120px; background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%); animation-delay: -7s; }
.shape-3 { width: 300px; height: 300px; bottom: 8%; left: 6%; background: radial-gradient(circle, rgba(14,165,233,0.10), transparent 70%); animation-delay: -13s; }
.shape-4 { width: 240px; height: 240px; top: 60%; left: 45%; background: radial-gradient(circle, var(--accent-tint), transparent 70%); animation-delay: -4s; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.5;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.06); }
  66% { transform: translate(-20px, 24px) scale(0.96); }
}

/* ---------- Glass helper ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
header { position: sticky; top: 0; z-index: 100; }
.nav {
  height: var(--nav-h);
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0 1.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--line);
}
header { background: transparent; }
.nav { border-radius: 0; }

.nav-logo { display: flex; align-items: center; }
.logo-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.03em;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: var(--bg);
  transition: transform 0.3s var(--ease);
}
.nav-logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.nav-links { display: flex; gap: 0.35rem; align-items: center; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.45rem 0.7rem; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--ink); background: var(--accent-tint); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle, .hamburger {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink-soft); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.theme-toggle:hover, .hamburger:hover { color: var(--accent); border-color: var(--accent); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.hamburger { display: none; flex-direction: column; gap: 4px; }
.hamburger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.4rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px var(--accent-tint); }
.btn-primary:hover { background: var(--accent-soft); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--bg-elev); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Layout / sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.eyebrow, .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent);
  margin-bottom: 1rem;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.8rem; }
.section-lead { color: var(--ink-mute); font-size: 1.05rem; max-width: 600px; }

.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--good);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(22,163,74,0.5);} 70%{box-shadow:0 0 0 8px rgba(22,163,74,0);} 100%{box-shadow:0 0 0 0 rgba(22,163,74,0);} }

/* ---------- Hero ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem 4rem; min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; }
.hero-inner { max-width: 760px; }
.hero-title { font-size: clamp(2.8rem, 8vw, 5rem); margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1.1rem, 2.4vw, 1.4rem); color: var(--ink-soft); max-width: 580px; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 3.5rem; }

.hero-motif {
  display: flex; align-items: flex-end; gap: 1.2rem;
  padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--accent-tint); width: fit-content;
}
.motif-bars { display: flex; align-items: flex-end; gap: 5px; height: 54px; }
.motif-bars span {
  width: 9px; height: var(--h); background: var(--accent); border-radius: 3px;
  transform-origin: bottom; animation: grow 1.6s var(--ease) backwards;
}
.motif-bars span:nth-child(1){animation-delay:.1s} .motif-bars span:nth-child(2){animation-delay:.2s}
.motif-bars span:nth-child(3){animation-delay:.3s} .motif-bars span:nth-child(4){animation-delay:.4s}
.motif-bars span:nth-child(5){animation-delay:.5s} .motif-bars span:nth-child(6){animation-delay:.6s}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.motif-arrow { font-size: 1.4rem; color: var(--ink-mute); padding-bottom: 0.4rem; }
.motif-cube {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: var(--shadow-md); align-self: center;
  animation: spin 6s linear infinite; transform-style: preserve-3d;
}
@keyframes spin { to { transform: rotate(360deg); } }
.motif-caption { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-mute); align-self: center; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.about-copy p { color: var(--ink-soft); }
.about-card { border-radius: var(--radius); padding: 1.8rem; align-self: start; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.about-card h3 { font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-facts li { padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink); }
.about-facts li:last-child { border-bottom: 0; }
.about-facts span { display: block; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin-bottom: 2px; }

/* Skills */
.skills-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7rem; }
.skill-card {
  padding: 0.85rem 1rem; border-radius: 12px;
  background: var(--bg-elev); border: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  display: flex; align-items: center; gap: 0.6rem;
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.skill-card:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--ink); box-shadow: var(--shadow-md); }
.skill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }

/* ---------- Experience ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.exp-card { border-radius: var(--radius); padding: 1.8rem; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.exp-card p { color: var(--ink-soft); font-size: 0.95rem; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.exp-tags li { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); background: var(--accent-tint); padding: 0.25rem 0.6rem; border-radius: 999px; }

/* ---------- Projects ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.project-card { border-radius: var(--radius-lg); padding: 2rem; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-featured { grid-column: 1 / -1; border: 1px solid var(--accent); }
.project-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); margin-bottom: 1.2rem;
}
.project-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.project-card p { color: var(--ink-soft); }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.project-tags li { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-mute); border: 1px solid var(--line); padding: 0.25rem 0.6rem; border-radius: 999px; }

/* ---------- Resume ---------- */
.resume-cta { margin-top: 1.4rem; }
.resume-doc { border-radius: var(--radius-lg); padding: 2.6rem; }
.resume-block { margin-bottom: 1.8rem; }
.resume-block:last-child { margin-bottom: 0; }
.resume-block h3 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-mono); color: var(--accent); margin-bottom: 0.7rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--line);
}
.resume-block p { color: var(--ink-soft); margin-bottom: 0; }
.resume-block ul li { color: var(--ink-soft); padding: 0.35rem 0 0.35rem 1.4rem; position: relative; }
.resume-block ul li::before { content: "▹"; position: absolute; left: 0; color: var(--accent); }
.resume-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.8rem; }
.resume-line { font-size: 1rem; margin-bottom: 0.2rem !important; color: var(--ink) !important; }
.resume-muted { color: var(--ink-mute) !important; font-size: 0.92rem; }

/* ---------- Life ---------- */
.life-card { border-radius: var(--radius-lg); padding: 2.6rem; max-width: 820px; }
.life-card p { color: var(--ink-soft); font-size: 1.05rem; }
.life-card p:last-child { margin-bottom: 0; }

/* ---------- Hobbies ---------- */
.hobbies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }
.hobby-card {
  border-radius: var(--radius); padding: 1.8rem; text-align: center;
  background: var(--bg-elev); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.hobby-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.hobby-card:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.hobby-ic {
  width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 16px;
  display: grid; place-items: center; background: var(--accent-tint); color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.hobby-card:hover .hobby-ic, .hobby-card:focus-visible .hobby-ic { transform: scale(1.08) rotate(-4deg); }
.hobby-card h3 { font-size: 1.05rem; }
.hobby-desc {
  margin: 0; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55;
  /* collapsed by default; revealed on hover / focus */
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin-top 0.45s var(--ease);
}
.hobby-card:hover .hobby-desc,
.hobby-card:focus .hobby-desc,
.hobby-card:focus-within .hobby-desc,
.hobby-card:focus-visible .hobby-desc {
  max-height: 220px; opacity: 1; margin-top: 0.7rem;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.6rem; }
.contact-form-wrap { border-radius: var(--radius-lg); padding: 2.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg-elev); color: var(--ink);
  font-family: var(--font-body); font-size: 0.95rem; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.hp-field { position: absolute; left: -9999px; }
.form-note { margin: 0.9rem 0 0; font-size: 0.9rem; }
.form-note.ok { color: var(--good); }
.form-note.err { color: #dc2626; }

.contact-side { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-cards { display: grid; gap: 0.8rem; }
.contact-card { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.2rem; border-radius: 14px; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.cc-icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); }
.cc-text strong { display: block; font-size: 0.95rem; }
.cc-text small { color: var(--ink-mute); font-size: 0.82rem; }

.availability { border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.availability h3 { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.availability ul li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--ink-soft); font-size: 0.92rem; }
.availability ul li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }

.contact-closer { text-align: center; max-width: 640px; margin: 3rem auto 0; color: var(--ink-mute); font-size: 1.02rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 4rem; position: relative; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-copy { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); color: var(--ink-soft); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-built { margin: 0; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-mute); }

.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 14px; cursor: pointer;
  background: var(--accent); color: #fff; border: none;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-soft); transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--line);
    padding: 1rem; box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.9rem 1rem; border-radius: 10px; }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--accent-tint); }
  .hamburger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .resume-columns { grid-template-columns: 1fr; gap: 1.4rem; }
  .section { padding: 4rem 1.5rem; }
  .hero { min-height: auto; padding-top: 4rem; }
  .hero-motif { flex-wrap: wrap; }
}

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

/* ---------- Print (resume-friendly) ---------- */
@media print {
  .bg-shapes, header, .hero-buttons, .hero-motif, .nav, .footer-social,
  .back-to-top, .contact-form-wrap, .contact-side, .skills-wrap,
  .hobbies-grid, .theme-toggle, .hamburger, .resume-cta { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 1rem 0; }
  #resume { display: block; }
  .resume-doc { box-shadow: none; border: 1px solid #ccc; background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  a { color: #000; }
}
