/* ============================================
   YANNIK ACKERMANN — Portfolio
   Light Minimalist ("less is more") Edition
   ============================================ */

:root {
  --paper: #F3F0EA;
  --paper-soft: #EDE9E1;
  --ink: #161513;
  --muted: #6E6A62;
  --accent: #F0C020;          /* warmes Gelb, Port der yellow-400-Kreisfläche */
  --line: rgba(22, 21, 19, 0.16);
  --font-head: "Archivo", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --pad: clamp(20px, 5vw, 72px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

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

:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

em { font-style: italic; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}

.preloader-logo {
  width: clamp(160px, 26vw, 340px);
  max-height: 38svh;
  height: auto;
  object-fit: contain;
}

.preloader-count {
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -100%;
  z-index: 100;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ---------- Progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 90; }

.progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
  z-index: 150;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s, background-color 0.25s;
  opacity: 0;
}

.cursor.on { opacity: 1; }
.cursor.grow { width: 52px; height: 52px; background: var(--accent); mix-blend-mode: multiply; }

@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Header (MinimalistHero-Port) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--pad);
  transition: background-color 0.35s, padding 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: rgba(243, 240, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 0 var(--line);
}

.h-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.h-logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.35s ease;
}

.site-header.scrolled .h-logo-img { height: 60px; }

.h-logo .dot { color: var(--accent); -webkit-text-stroke: 1px var(--ink); }

.h-burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.h-burger span { display: block; height: 2px; width: 24px; background: var(--ink); transition: transform 0.3s, opacity 0.3s, width 0.3s; }
.h-burger span:last-child { width: 19px; }

.h-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.h-burger.open span:nth-child(2) { opacity: 0; }
.h-burger.open span:nth-child(3) { width: 24px; transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile Overlay ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-overlay-nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }

.menu-overlay-nav a {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.menu-overlay-nav a:hover { color: var(--accent); -webkit-text-stroke: 1px var(--ink); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(150px, 18vh, 190px) var(--pad) 36px;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-left { z-index: 20; }

.hero-left-text {
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(22, 21, 19, 0.75);
}

.hero-readmore {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s;
}

.hero-readmore:hover { color: var(--muted); }

.hero-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 380px;
}

.hero-circle {
  position: absolute;
  z-index: 0;
  width: clamp(280px, 34vw, 500px);
  height: clamp(280px, 34vw, 500px);
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.92;
}

.hero-img {
  position: relative;
  z-index: 10;
  width: clamp(210px, 22vw, 310px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  box-shadow: 0 30px 60px rgba(22, 21, 19, 0.28);
}

.hero-right {
  z-index: 20;
  display: flex;
  justify-content: flex-start;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1400px;
  width: 100%;
  margin: 24px auto 0;
}

.hero-socials { display: flex; align-items: center; gap: 20px; }

.hero-socials a { color: rgba(22, 21, 19, 0.55); transition: color 0.25s; display: inline-flex; }
.hero-socials a:hover { color: var(--ink); }

.hero-location { font-size: 0.88rem; font-weight: 500; color: rgba(22, 21, 19, 0.75); text-align: right; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  padding: 20px 0;
}

.marquee-track { display: flex; align-items: center; gap: 40px; width: max-content; will-change: transform; }

.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paper);
  white-space: nowrap;
}

.marquee-track i { color: var(--accent); font-style: normal; font-size: 1.1rem; }

/* ---------- Section tag ---------- */
.section-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(36px, 6vw, 72px);
}

/* ---------- Manifest ---------- */
.manifest { padding: clamp(100px, 15vh, 190px) var(--pad); }

.manifest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.manifest-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.1vw, 2.5rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.manifest-text .w { opacity: 0.14; transition: opacity 0.4s; }
.manifest-text .w.on { opacity: 1; }

.manifest-facts {
  display: flex;
  gap: clamp(32px, 6vw, 90px);
  margin-top: clamp(48px, 8vh, 100px);
  flex-wrap: wrap;
}

.fact { display: flex; flex-direction: column; gap: 8px; }

.fact-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--ink);
  border-bottom: 4px solid var(--accent);
  padding-bottom: 8px;
  width: fit-content;
}

.fact-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Art figures ---------- */
.manifest-art, .exp-art { position: relative; }

.manifest-art img, .exp-art img {
  width: 100%;
  filter: grayscale(1) contrast(1.06);
  box-shadow: 14px 14px 0 var(--accent);
}

.manifest-art figcaption, .exp-art figcaption {
  margin-top: 26px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Projects (horizontal) ---------- */
.projects { position: relative; }

.projects-pin {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 90px var(--pad) 0;
}

.projects-head .section-tag { margin-bottom: 0; }

.projects-counter {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.projects-current { color: var(--ink); }

.projects-track {
  display: flex;
  align-items: stretch;
  height: min(64svh, 600px);
  margin-top: 28px;
  padding-left: var(--pad);
  width: max-content;
  will-change: transform;
}

.panel {
  width: min(78vw, 720px);
  flex-shrink: 0;
  margin-right: clamp(24px, 4vw, 64px);
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.panel:hover { box-shadow: 10px 10px 0 var(--accent); transform: translate(-3px, -3px); }

.panel-intro {
  background: transparent;
  border: none;
  padding: 0;
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  width: min(82vw, 820px);
}

.panel-intro:hover { box-shadow: none; transform: none; }

.panel-intro-art { flex: 0 0 42%; }

.panel-intro-art img {
  width: 100%;
  max-height: 56svh;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  box-shadow: 14px 14px 0 var(--accent);
}

.panel-intro-title {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.panel-intro-sub {
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

.panel-intro-sub em { color: var(--ink); font-weight: 500; }

.panel-num {
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4.6rem, 10vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(22, 21, 19, 0.2);
}

.panel-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--accent);
  padding: 4px 10px;
  margin-bottom: 16px;
  width: fit-content;
}

.panel-title {
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.panel-desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 26px;
}

.panel-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.panel-tags li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

/* ---------- Experience ---------- */
.exp { padding: clamp(100px, 15vh, 190px) var(--pad); }

.exp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.exp-art { position: sticky; top: 110px; }

.exp-item {
  display: grid;
  grid-template-columns: minmax(90px, 170px) 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(32px, 5vh, 56px) 0;
  border-top: 1px solid var(--line);
}

.exp-item:last-child { border-bottom: 1px solid var(--line); }

.exp-year {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}

.exp-title { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }

.exp-desc { color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 14px; }

.exp-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  padding: 4px 10px;
  width: fit-content;
  display: inline-block;
}

/* ---------- Skills ---------- */
.skills {
  padding: clamp(100px, 15vh, 190px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}

.skills .section-tag { color: var(--paper); }

.skills-list { max-width: 1400px; margin: 0 auto; }

.skills-row {
  display: grid;
  grid-template-columns: minmax(140px, 380px) 1fr;
  gap: 24px;
  align-items: baseline;
  padding: clamp(22px, 4vh, 38px) 0;
  border-top: 1px solid rgba(243, 240, 234, 0.2);
  transition: padding-left 0.35s ease;
}

.skills-list .skills-row:last-child { border-bottom: 1px solid rgba(243, 240, 234, 0.2); }

.skills-row:hover { padding-left: 18px; }

.skills-domain {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.skills-row:hover .skills-domain { color: var(--accent); }

.skills-items { color: rgba(243, 240, 234, 0.6); font-size: clamp(0.9rem, 1.4vw, 1.05rem); }

.edu { margin: clamp(48px, 8vh, 90px) auto 0; max-width: 1400px; }

.edu p { color: rgba(243, 240, 234, 0.6); line-height: 1.8; max-width: 720px; }
.edu strong { color: var(--paper); font-weight: 600; }

/* ---------- Statement (Vollbild-Hintergrund) ---------- */
.statement {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-bg {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  will-change: transform;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 12, 12, 0.35), rgba(12, 12, 12, 0.5));
}

.statement-text {
  position: relative;
  z-index: 1;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.4;
  color: #F5F3EE;
  text-align: center;
  max-width: 1000px;
  padding: 0 var(--pad);
}

.statement-text em { font-style: italic; }

/* ---------- Contact ---------- */
.contact {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 14vh, 150px) var(--pad) 40px;
}

.contact-stage { position: relative; width: fit-content; margin-bottom: clamp(28px, 5vh, 56px); }

.contact-circle {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 30vw, 460px);
  height: clamp(220px, 30vw, 460px);
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  z-index: 0;
}

.contact-giant {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: letter-spacing 0.4s;
}

.contact-giant:hover { letter-spacing: 0; }

.contact-giant-line { display: block; overflow: hidden; }
.contact-giant-line > span { display: inline-block; }
.contact-giant-line .ch { display: inline-block; }

.contact-sub { font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--muted); margin-bottom: 36px; }
.contact-sub strong { color: var(--ink); }

.contact-links { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px); margin-bottom: 26px; }

.contact-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: background-color 0.25s;
}

.contact-links a:hover { background: var(--accent); }

.contact-refs { color: var(--muted); font-size: 0.92rem; }
.contact-refs strong { color: var(--ink); font-weight: 600; }

.footer {
  margin-top: clamp(56px, 9vh, 100px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* Übergrosser, am Rand auslaufender Wortmarken-Block */
.footer-mark {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  margin-bottom: clamp(28px, 5vh, 56px);
  user-select: none;
}

.footer-mark-line {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 15vw, 13rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Erste Zeile: nur Konturschrift */
.footer-mark-line:not(.footer-mark-line--fill) {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
}

/* Zweite Zeile: eingerückt + Akzent-Unterstreichung als schlichter Twist */
.footer-mark-line--fill {
  align-self: flex-end;
  color: var(--ink);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 0.12em;
  transition: background-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer:hover .footer-mark-line--fill {
  background-size: 100% 0.12em;
}

/* Schlichte Meta-Zeile */
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Pulsierender „Verfügbar"-Indikator */
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: footer-pulse 2.4s ease-out infinite;
}

@keyframes footer-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240, 192, 32, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(240, 192, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 192, 32, 0); }
}

.footer-copy { flex: 1 1 auto; text-align: center; }

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.footer-top-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-top:hover .footer-top-arrow { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .footer-status-dot { animation: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {

  .hero { padding-top: 96px; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-center { order: 1; min-height: 320px; }
  .hero-right { order: 2; justify-content: center; }
  .hero-left { order: 3; display: flex; flex-direction: column; align-items: center; }

  .hero-footer { flex-direction: column; align-items: center; gap: 14px; }
  .hero-location { text-align: center; }

  .manifest-grid, .exp-grid { grid-template-columns: 1fr; }
  .manifest-art { max-width: 480px; }
  .exp-art { position: static; max-width: 480px; }

  .panel { width: 86vw; }
  .panel-intro { flex-direction: column; align-items: flex-start; width: 86vw; }
  .panel-intro-art { flex: none; width: 60%; max-width: 300px; }

  .exp-item { grid-template-columns: 1fr; gap: 10px; }
  .skills-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none !important; }
  .marquee-track { transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}
