/* ═══════════════════════════════════════════
   OPTION 1: SUPER FUN
   Katharina Garcia — Character Animator
   Candy colors, bubbly shapes, playful vibes
   ═══════════════════════════════════════════ */

:root {
  --bg: #fef7ff;
  --bg-alt: #fff4f9;
  --surface: #ffffff;
  --text: #2d1b4e;
  --text-muted: #7b6b8a;
  --heading: #1a0a3e;
  --accent-pink: #ff6b9d;
  --accent-purple: #a855f7;
  --accent-yellow: #fbbf24;
  --accent-teal: #2dd4bf;
  --accent-blue: #60a5fa;
  --accent-orange: #fb923c;
  --gradient-fun: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  --gradient-warm: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  --border: rgba(168, 85, 247, 0.12);
  --shadow-soft: 0 4px 24px rgba(168, 85, 247, 0.1);
  --shadow-card: 0 8px 32px rgba(168, 85, 247, 0.12);
  --shadow-hover: 0 16px 48px rgba(168, 85, 247, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --font-display: 'Baloo 2', 'Fredoka', cursive;
  --font-body: 'Nunito', sans-serif;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-purple); text-decoration: none; }
ul { list-style: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent-purple);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--accent-pink); color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--accent-purple); color: #fff;
  font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Confetti Canvas */
#confetti-canvas {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254, 247, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--duration);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.navbar {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--heading); text-decoration: none;
  transition: transform var(--duration) var(--ease-bounce);
}
.nav-logo:hover { transform: scale(1.05) rotate(-2deg); }
.logo-k { color: var(--accent-pink); }
.logo-dot { color: var(--accent-yellow); }
.logo-g { color: var(--accent-purple); }

.nav-menu {
  display: flex; gap: 0.25rem; align-items: center;
}
.nav-link {
  padding: 0.5rem 1rem; font-weight: 700; font-size: 0.9rem;
  color: var(--text-muted); border-radius: var(--radius-pill);
  transition: all var(--duration) var(--ease-smooth);
}
.nav-link:hover {
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-2px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px;
  justify-content: center;
}
.hamburger-line {
  width: 22px; height: 2.5px; border-radius: 2px;
  background: var(--heading);
  transition: all var(--duration) var(--ease-smooth);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding: 6rem 1.5rem 3rem;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape-circle { opacity: 0.15; }
.shape-star { font-size: 2rem; opacity: 0.2; }
.shape-1 { width: 200px; height: 200px; background: var(--accent-pink); top: 10%; left: -5%; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 120px; height: 120px; background: var(--accent-purple); top: 20%; right: 5%; animation: float 6s ease-in-out 1s infinite; }
.shape-3 { top: 60%; left: 8%; color: var(--accent-yellow); animation: spin-slow 12s linear infinite; }
.shape-4 { width: 80px; height: 80px; background: var(--accent-teal); bottom: 15%; right: 10%; animation: float 7s ease-in-out 2s infinite; }
.shape-5 { bottom: 30%; left: 15%; color: var(--accent-pink); font-size: 1.5rem; animation: spin-slow 10s linear infinite reverse; }
.shape-6 { width: 60px; height: 60px; background: var(--accent-yellow); top: 40%; right: 20%; animation: float 9s ease-in-out 0.5s infinite; }

.hero-wave {
  font-size: 3rem;
  animation: wave-anim 2.5s ease-in-out infinite;
  display: inline-block; transform-origin: 70% 70%;
  margin-bottom: 0.5rem;
}

.hero-title { margin-bottom: 1rem; }
.hero-greeting {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 0.25rem;
}

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800; line-height: 1.1;
  background: var(--gradient-fun);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.letter-pop {
  display: inline-block;
  transition: transform 0.2s var(--ease-bounce);
}
.letter-pop:hover {
  transform: translateY(-8px) scale(1.15) rotate(-5deg);
}

.hero-subtitle {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.badge {
  padding: 0.35rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700;
  display: inline-block;
}
.badge-pink { background: rgba(255, 107, 157, 0.15); color: var(--accent-pink); }
.badge-purple { background: rgba(168, 85, 247, 0.12); color: var(--accent-purple); }

.hero-studio {
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-studio strong { color: var(--heading); }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.8rem; font-weight: 600;
  opacity: 0.6;
}
.bounce-arrow { animation: bounce 2s ease-in-out infinite; }

/* Hero animations */
.hero-wave     { animation: wave-anim 2.5s ease-in-out infinite, fade-up 0.6s var(--ease-smooth) 0.1s both; }
.hero-title    { animation: fade-up 0.6s var(--ease-smooth) 0.2s both; }
.hero-subtitle { animation: fade-up 0.6s var(--ease-smooth) 0.35s both; }
.hero-studio   { animation: fade-up 0.6s var(--ease-smooth) 0.45s both; }
.hero-cta      { animation: fade-up 0.6s var(--ease-smooth) 0.55s both; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  border: none; border-radius: var(--radius-pill);
  cursor: pointer; text-decoration: none;
  transition: all var(--duration) var(--ease-bounce);
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scaleX(1.04) scaleY(0.94); }

.btn-primary {
  background: var(--gradient-fun); color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 157, 0.45);
  color: #fff;
}
.btn-secondary {
  background: var(--surface); color: var(--accent-purple);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.05);
}

.btn-wiggle { animation: wiggle-idle 4s ease-in-out infinite; }
.btn-wiggle:nth-child(2) { animation-delay: 2s; }

/* ── SECTIONS COMMON ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--heading);
  margin-bottom: 0.5rem;
}
.title-icon { margin-right: 0.3rem; }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted); font-weight: 600;
}

/* ── REEL ── */
.reel-section { background: var(--bg-alt); }
.reel-wrapper { max-width: 880px; margin: 0 auto; }
.reel-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--border);
  background: #000;
}
.video-container {
  position: relative; width: 100%; padding-top: 56.25%;
}
.video-container iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ── WORKS ── */
.works-section { background: var(--bg); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all var(--duration) var(--ease-bounce);
}
.work-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-pink);
}
.work-card:active {
  transform: translateY(-2px) scaleX(1.03) scaleY(0.96);
}

.work-card-btn {
  display: block; width: 100%;
  background: none; border: none;
  cursor: pointer; text-align: left;
  color: inherit; font-family: inherit;
}
a.work-card-btn { text-decoration: none; }

.work-card-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden; position: relative;
}
.work-card-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.work-card:hover .work-card-poster img { transform: scale(1.06); }

.work-card-overlay {
  position: absolute; inset: 0;
  background: rgba(168, 85, 247, 0.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; color: #fff; font-weight: 700;
  font-size: 0.9rem;
  opacity: 0; transition: opacity var(--duration);
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-overlay i { font-size: 1.5rem; }

.work-card-info { padding: 0.85rem 1rem; }
.work-card-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--heading);
}
.work-card-role { font-size: 0.8rem; color: var(--text-muted); }

/* Wild Side placeholder */
.work-card-placeholder {
  background: linear-gradient(135deg, #fef3c7, #fde68a, #fbbf24);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.placeholder-content { position: relative; }
.placeholder-icon { font-size: 3.5rem; color: rgba(120, 53, 15, 0.3); }
.placeholder-sparkle {
  position: absolute; font-size: 1.2rem;
  color: var(--accent-orange);
  animation: sparkle 2s ease-in-out infinite;
}
.placeholder-sparkle-1 { top: -10px; right: -20px; animation-delay: 0s; }
.placeholder-sparkle-2 { bottom: -5px; left: -15px; animation-delay: 0.7s; }
.placeholder-sparkle-3 { top: 5px; left: -25px; animation-delay: 1.3s; }

/* ── ABOUT ── */
.about-section { background: var(--bg-alt); }
.about-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 3rem; align-items: start;
}

.about-photo-frame {
  position: relative; width: 220px; margin: 0 auto;
}
.about-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-pink);
  box-shadow: var(--shadow-card);
}
.photo-deco {
  position: absolute; font-size: 1.5rem;
  animation: sparkle 3s ease-in-out infinite;
}
.photo-deco-1 { top: -10px; right: -5px; color: var(--accent-yellow); }
.photo-deco-2 { bottom: 10px; left: -15px; color: var(--accent-pink); animation-delay: 1s; }
.photo-deco-3 { top: 40%; right: -25px; color: var(--accent-purple); animation-delay: 2s; }

.about-education {
  margin-top: 2rem; padding: 1rem;
  background: var(--surface); border-radius: var(--radius-sm);
  border: 2px solid var(--border);
}
.education-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--heading); margin-bottom: 0.75rem;
}
.education-item {
  display: flex; align-items: center; gap: 0.75rem;
}
.education-logo { border-radius: 10px; }
.education-item strong { display: block; color: var(--heading); font-size: 0.9rem; }
.education-item p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.about-bio p {
  margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7;
}
.about-bio strong { color: var(--heading); }

.strengths-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-bottom: 1.5rem;
}
.strength-card {
  padding: 1.25rem; background: var(--surface);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  transition: all var(--duration) var(--ease-bounce);
}
.strength-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-soft);
}
.strength-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-fun); color: #fff;
  font-size: 1.1rem; margin-bottom: 0.75rem;
  transition: transform var(--duration) var(--ease-bounce);
}
.strength-card:hover .strength-icon {
  transform: scale(1.15) rotate(-8deg);
}
.strength-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--heading); margin-bottom: 0.25rem;
}
.strength-desc { font-size: 0.85rem; color: var(--text-muted); }

.about-cta { margin-top: 1.5rem; }

/* ── FOOTER ── */
.footer {
  background: var(--heading); color: #fff;
  padding: 4rem 0 1.5rem; position: relative;
  overflow: hidden;
}
.footer-shapes { position: absolute; inset: 0; pointer-events: none; }
.footer-shape-1 {
  width: 200px; height: 200px;
  background: rgba(255, 107, 157, 0.08);
  border-radius: 50%;
  position: absolute; top: -50px; right: -50px;
}
.footer-shape-2 {
  width: 120px; height: 120px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 50%;
  position: absolute; bottom: -30px; left: -30px;
}

.footer-content { text-align: center; margin-bottom: 2.5rem; position: relative; }
.footer-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; margin-bottom: 1rem;
}
.footer-text {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

.footer-socials {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.social-link {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.85rem;
  color: #fff; border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration) var(--ease-bounce);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}
.social-email:hover { background: var(--accent-pink); border-color: var(--accent-pink); }
.social-linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link:active { transform: translateY(0) scaleX(1.04) scaleY(0.94); }

.footer-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem; margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem; text-align: center;
  color: rgba(255, 255, 255, 0.4); font-size: 0.85rem;
  position: relative;
}
.heart-beat { display: inline-block; animation: heart-pulse 1.5s ease-in-out infinite; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 10, 62, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}
.modal-overlay[hidden] { display: flex; pointer-events: none; }
.modal-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.modal-content {
  width: 100%; max-width: 800px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem; position: relative;
  border: 3px solid var(--border);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-bounce);
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); border: 2px solid var(--border);
  border-radius: 50%; font-size: 1.1rem; cursor: pointer;
  color: var(--text);
  transition: all var(--duration) var(--ease-bounce);
}
.modal-close:hover { background: var(--accent-pink); color: #fff; transform: scale(1.1) rotate(90deg); }

.modal-body { position: relative; }
.modal-show-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--heading); margin-bottom: 0.25rem;
  padding-right: 3rem;
}
.modal-show-role { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

.modal-video-container { border-radius: var(--radius-sm); overflow: hidden; }
.modal-video-container .video-container { padding-top: 56.25%; position: relative; }
.modal-video-container .video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.modal-no-video {
  text-align: center; padding: 3rem 1rem;
  display: none;
}
.modal-no-video.active { display: block; }
.modal-no-video-icon { font-size: 3rem; color: var(--accent-purple); margin-bottom: 1rem; }
.modal-reel-link { font-weight: 700; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* stagger */
.works-grid .reveal:nth-child(1) { transition-delay: 0s; }
.works-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.works-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.works-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.works-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.works-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
@keyframes wave-anim {
  0% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0); }
}
@keyframes wiggle-idle {
  0%, 90%, 100% { transform: translateY(0) rotate(0); }
  92% { transform: translateY(-2px) rotate(-1deg); }
  94% { transform: translateY(0) rotate(1deg); }
  96% { transform: translateY(-1px) rotate(-0.5deg); }
  98% { transform: translateY(0) rotate(0.5deg); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
}

/* ── RESPONSIVE: Tablet ── */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .about-text-col { text-align: left; }
}

/* ── RESPONSIVE: Mobile ── */
@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(254, 247, 255, 0.97);
    border-bottom: 2px solid var(--border);
    padding: 1rem 1.5rem;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 0; font-size: 1rem; }

  .hero { min-height: 90vh; padding: 6rem 1rem 4rem; }
  .hero-name { font-size: 2.5rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }

  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .section { padding: 3.5rem 0; }
  .about-photo { width: 160px; height: 160px; }

  .footer-socials { flex-direction: column; align-items: center; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
