/* ============================================
   Andreas Bölian — Landing Page
   ============================================ */

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

:root {
  --bg-deep: #0a0e1a;
  --bg-mid: #111832;
  --bg-light: #1a2444;
  --accent: #e89a78;
  --accent-soft: rgba(232, 154, 120, 0.12);
  --accent-glow: rgba(232, 154, 120, 0.3);
  --text-primary: #f2f2f7;
  --text-secondary: rgba(242, 242, 247, 0.6);
  --text-muted: rgba(242, 242, 247, 0.35);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.3);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Caveat', cursive;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max: 1000px;
  --section-pad: clamp(4rem, 10vh, 7rem);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Shared Section Styles */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.4s ease, background 0.4s ease;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.nav--visible {
  transform: translateY(0);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.nav-burger span:first-child { top: 0; }
.nav-burger span:last-child { bottom: 0; }

.nav-burger.open span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-burger.open span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li {
  margin: 1.5rem 0;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu-links a:hover {
  color: var(--accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 36, 68, 0.6) 0%, transparent 60%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow--top {
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.35;
}

.hero-glow--bottom {
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 120, 220, 0.12) 0%, transparent 70%);
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes glowFloat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}

.avatar-ring--large {
  display: inline-block;
  padding: 4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), #c97a5a, #d4836a, var(--accent));
  margin-bottom: 1.5rem;
  position: relative;
}

.avatar-ring--large::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent-glow), transparent, var(--accent-glow));
  z-index: -1;
  filter: blur(14px);
  animation: ringRotate 6s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid var(--bg-deep);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-claim {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--accent);
  border-radius: 3rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  animation: ctaBounce 2s ease-in-out infinite;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(232, 154, 120, 0.3);
}

@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.8; height: 56px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  position: relative;
}

.about-content {
  max-width: 700px;
}

.about-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlight {
  color: var(--accent) !important;
  font-weight: 500 !important;
  font-style: italic;
  font-size: 1.1rem !important;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.45rem 1rem;
  border-radius: 3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.tag:hover {
  border-color: rgba(232, 154, 120, 0.3);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(232, 154, 120, 0.1);
}

/* ============================================
   WTF MUSIC
   ============================================ */
.wtf {
  position: relative;
  background: #060a14;
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
}

.wtf::before,
.wtf::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}

.wtf::before {
  top: -1px;
  background: linear-gradient(to bottom, var(--bg-deep), transparent);
}

.wtf::after {
  bottom: -1px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
}

.wtf-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, rgba(232, 154, 120, 0.3) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(232, 154, 120, 0.3) 0px, transparent 1px, transparent 60px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  to { background-position: 60px 60px; }
}

.wtf-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glowFloat 10s ease-in-out infinite;
}

.wtf-glow--left {
  left: -10%;
  top: 20%;
  background: radial-gradient(circle, rgba(232, 154, 120, 0.2) 0%, transparent 70%);
}

.wtf-glow--right {
  right: -10%;
  bottom: 20%;
  background: radial-gradient(circle, rgba(100, 120, 220, 0.15) 0%, transparent 70%);
  animation-delay: -5s;
}

.wtf .section-inner {
  position: relative;
  z-index: 3;
}

.wtf-title {
  margin-bottom: 1rem;
}

.wtf-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  text-shadow: none;
}

.wtf-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Stats */
.wtf-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.wtf-stat {
  text-align: center;
}

.wtf-stat-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(232, 154, 120, 0.3);
}

.wtf-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* Feature Cards */
.wtf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.wtf-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 154, 120, 0.1);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.wtf-feature:hover {
  border-color: rgba(232, 154, 120, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232, 154, 120, 0.08);
}

.wtf-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--accent-soft);
  color: var(--accent);
}

.wtf-feature-icon svg {
  width: 24px;
  height: 24px;
}

.wtf-feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wtf-feature p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: var(--section-pad) 0;
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  text-decoration: none;
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(232, 154, 120, 0.25);
  box-shadow: 0 8px 32px rgba(232, 154, 120, 0.1);
}

.project-logo {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 0.875rem;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.project-card:hover .project-logo {
  transform: scale(1.08);
}

.project-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.project-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.875rem;
}

.project-content {
  flex: 1;
  min-width: 0;
}

.project-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
  line-height: 1.5;
}

.project-arrow {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  flex-shrink: 0;
}

.project-arrow svg {
  width: 18px;
  height: 18px;
}

.project-card:hover .project-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ============================================
   MUSIC PLAYER
   ============================================ */
.music {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

.music-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.player-wrap {
  max-width: 440px;
  margin: 0 auto;
}

.player-carousel {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin: 0 auto 1rem;
  width: 100%;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-track.dragging {
  transition: none;
}

.carousel-slide {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 6px;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
  opacity: 0.4;
  transform: scale(0.82);
  filter: blur(1.5px) brightness(0.6);
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
  z-index: 2;
}

.cover-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.carousel-slide.active .cover-art {
  box-shadow: 0 12px 48px rgba(232, 154, 120, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.player-info {
  margin-bottom: 0.8rem;
  text-align: center;
}

.player-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.player-artist {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.player-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.player-btn:active {
  transform: scale(0.95);
}

.player-btn--prev svg,
.player-btn--next svg {
  width: 22px;
  height: 22px;
}

.player-btn--play {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(232, 154, 120, 0.35);
}

.player-btn--play:hover {
  color: var(--bg-deep);
  background: #f0a888;
  box-shadow: 0 6px 28px rgba(232, 154, 120, 0.5);
}

.player-btn--play svg {
  width: 24px;
  height: 24px;
}

.player-btn--play .icon-play {
  margin-left: 2px;
}

.progress-bar {
  width: 70%;
  max-width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin: 0 auto 0.4rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease;
}

.progress-bar:hover {
  height: 6px;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.15s linear;
}

.player-time {
  display: flex;
  justify-content: space-between;
  width: 70%;
  max-width: 280px;
  margin: 0 auto;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  text-align: center;
}

.contact-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateY(-4px);
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all var(--transition);
}

.social-icon svg {
  width: 26px;
  height: 26px;
}

.social-link:hover .social-icon {
  border-color: rgba(232, 154, 120, 0.3);
  box-shadow: 0 4px 20px rgba(232, 154, 120, 0.15);
}

.social-name {
  font-size: 0.72rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 1.5rem;
  border-radius: 1px;
}

.footer-text {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card.fade-in,
.wtf-feature.fade-in {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .wtf-features {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

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

  .wtf-stats {
    gap: 1.5rem;
  }

  .social-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 769px) {
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
}

@media (min-width: 640px) {
  .avatar {
    width: 180px;
    height: 180px;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .section-inner {
    padding: 0 2rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
