/* =============================================
   public/styles/global.css
   All site-wide styles live here.
   ============================================= */

/* ─── COLORS — change these to retheme the site ─── */
:root {
  --bg:          #faf8f5;
  --bg-card:     #f2eef9;
  --bg-cream:    #fef6e8;
  --purple-pale: #e8e3f5;
  --purple-soft: #cdc4ea;
  --purple-mid:  #9b8dd4;
  --purple-dark: #4a3d7a;
  --navy:        #1c1829;
  --rose:        #e8c0d2;
  --rose-dark:   #b8789a;
  --amber:       #c8855a;
  --text:        #2d2540;
  --text-light:  #7a6a9a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.75; overflow-x: hidden; }

body::before { content: ''; position: fixed; inset: 0; background-image: radial-gradient(circle, var(--purple-soft) 1.5px, transparent 1.5px); background-size: 28px 28px; opacity: 0.18; pointer-events: none; z-index: 0; }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 0.9rem 3rem; display: flex; justify-content: space-between; align-items: center; background: rgba(250,248,245,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--purple-pale); }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--purple-dark); text-decoration: none; letter-spacing: -0.02em; }
nav ul { list-style: none; display: flex; gap: 1.75rem; }
nav ul a { text-decoration: none; color: var(--text-light); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: lowercase; transition: color 0.2s; }
nav ul a:hover { color: var(--purple-dark); }

/* ─── BLOBS ─── */
.blob { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.22; pointer-events: none; z-index: 0; }
.blob-1 { width: 380px; height: 380px; background: var(--purple-soft); top: -80px; right: -60px; }
.blob-2 { width: 250px; height: 250px; background: var(--rose); bottom: 10%; left: -60px; }
.blob-3 { width: 200px; height: 200px; background: #b8e0d4; bottom: 30%; right: 5%; }

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; padding: 6rem 5rem; }
.section-header { display: flex; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.5rem; }
.section-header-text { flex: 1; }
.section-header-img { width: 90px; height: 90px; border-radius: 1.25rem; overflow: hidden; border: 2px solid var(--purple-pale); box-shadow: 4px 4px 0 var(--purple-pale); flex-shrink: 0; opacity: 0.85; }
.section-header-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.section-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.section-eyebrow::after { content: ''; display: block; height: 1px; width: 40px; background: var(--purple-soft); }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; color: var(--navy); letter-spacing: -0.025em; line-height: 1.15; }

/* ─── HERO ─── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; padding: 9rem 5rem 5rem; }
.hero-text { position: relative; z-index: 2; }
.hero-kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-kicker span { display: inline-block; width: 28px; height: 1.5px; background: var(--rose); }
.hero-name { font-family: 'Nunito', sans-serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; color: var(--navy); line-height: 1.05; margin-bottom: 1.75rem; letter-spacing: -0.04em; }
.hero-name .accent { color: var(--purple-mid); }
.hero-sub { font-size: 1.1rem; color: var(--text-light); font-weight: 300; max-width: 400px; margin-bottom: 2.25rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.tag { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 1rem; border-radius: 999px; font-size: 0.78rem; font-weight: 500; background: var(--bg-card); color: var(--purple-dark); border: 1.5px solid var(--purple-pale); transition: all 0.2s; }
.tag:hover { border-color: var(--purple-soft); background: var(--purple-pale); }
.tag.rose-tag { background: #fdf0f5; color: var(--rose-dark); border-color: var(--rose); }
.tag.rose-tag:hover { background: var(--rose); color: white; }
.tag.hs { font-family: 'Courier New', Courier, monospace; font-weight: 700; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 2rem; border-radius: 999px; background: var(--purple-dark); color: white; text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: all 0.25s; box-shadow: 0 4px 20px rgba(74,61,122,0.25); }
.hero-cta:hover { background: var(--purple-mid); transform: translateY(-2px); }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-ring { position: relative; width: 440px; height: 440px; }
.ring-deco { position: absolute; inset: -12px; border-radius: 50%; border: 2px dashed var(--purple-soft); animation: spin 30s linear infinite; opacity: 0.6; contain: strict; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-img-frame { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: linear-gradient(145deg, var(--purple-soft), var(--rose)); box-shadow: 0 0 0 6px white, 0 0 0 8px var(--purple-pale), 0 24px 60px rgba(74,61,122,0.18); animation: float 6s ease-in-out infinite; }
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.spot { position: absolute; border-radius: 50%; background: var(--purple-soft); opacity: 0.35; }
.spot-1 { width: 18px; height: 18px; top: 8%; left: 60%; }
.spot-2 { width: 10px; height: 10px; top: 22%; left: 4%; }
.spot-3 { width: 14px; height: 14px; bottom: 18%; right: 4%; }
.spot-4 { width: 8px; height: 8px; bottom: 10%; left: 30%; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: translateY(0); } }
.hero-kicker { animation: fadeUp 0.6s ease 0.05s both; }
.hero-name   { animation: fadeUp 0.7s ease 0.15s both; }
.hero-sub    { animation: fadeUp 0.7s ease 0.28s both; }
.hero-tags   { animation: fadeUp 0.7s ease 0.4s both; }
.hero-cta    { animation: fadeUp 0.7s ease 0.52s both; }
.hero-visual { animation: fadeUp 0.9s ease 0.2s both; }

/* ─── ABOUT ─── */
.about { background: var(--bg-card); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; border-radius: 2rem; overflow: hidden; background: linear-gradient(160deg, var(--purple-soft), #b0a8e0); box-shadow: 10px 10px 0 var(--purple-pale), 10px 10px 0 1px var(--purple-soft); }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-img-label { position: absolute; bottom: -1rem; right: -1rem; background: var(--purple-dark); color: white; font-size: 0.72rem; font-weight: 500; padding: 0.45rem 1rem; border-radius: 999px; }
.about-content p { color: var(--text); font-weight: 300; font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-content p strong { color: var(--purple-dark); font-weight: 600; }
.about-content .hs { font-family: 'Courier New', Courier, monospace; font-weight: 700; color: var(--purple-dark); }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.fact-card { background: white; border: 1.5px solid var(--purple-pale); border-radius: 1rem; padding: 0.9rem 1.1rem; transition: border-color 0.2s; }
.fact-card:hover { border-color: var(--purple-soft); }
.fact-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple-mid); font-weight: 600; margin-bottom: 0.2rem; }
.fact-value { font-size: 0.92rem; color: var(--text); }

/* ─── NOW PLAYING ─── */
.nowplaying { background: var(--navy); }
.nowplaying .section-eyebrow { color: var(--purple-soft); }
.nowplaying .section-eyebrow::after { background: var(--purple-dark); }
.nowplaying .section-title { color: white; margin-bottom: 2rem; }
.np-widget { max-width: 520px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 1.5rem; padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: 1.25rem; backdrop-filter: blur(8px); }
.np-album-art { width: 72px; height: 72px; border-radius: 0.75rem; background: var(--purple-dark); flex-shrink: 0; overflow: hidden; }
.np-album-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.np-info { flex: 1; min-width: 0; }
.np-status { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.4rem; }
.np-status.playing { color: #a8e6a3; }
.np-status.recent  { color: rgba(255,255,255,0.35); }
.np-dot { width: 7px; height: 7px; border-radius: 50%; background: #a8e6a3; animation: pulse 1.5s ease-in-out infinite; }
.np-status.recent .np-dot { background: rgba(255,255,255,0.25); animation: none; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.np-track { font-size: 1rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-artist { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 300; }
.np-album { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.15rem; }
.np-lastfm-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.np-lastfm-link:hover { color: var(--purple-soft); }

/* ─── MUSIC ─── */
.music { background: var(--bg-cream); overflow: hidden; }

.music-featured { background: white; border: 2px solid var(--purple-pale); border-radius: 1.75rem; padding: 2rem 2.25rem; max-width: 640px; box-shadow: 6px 6px 0 var(--purple-pale); overflow: hidden; }
.music-featured-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--purple-mid); margin-bottom: 1rem; }
.artist-feature { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; }
.artist-feature:last-of-type { margin-bottom: 0; }
.artist-icon { width: 52px; height: 52px; border-radius: 1rem; background: linear-gradient(145deg, var(--purple-soft), var(--rose)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.artist-name { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--navy); font-weight: 600; margin-bottom: 0.2rem; }
.artist-note { font-size: 0.88rem; color: var(--text-light); font-weight: 300; line-height: 1.55; }
.fav-songs { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1.5px solid var(--purple-pale); }
.fav-songs-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--purple-mid); margin-bottom: 0.85rem; }
.song-entry { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.85rem; border-radius: 0.85rem; background: var(--bg-card); margin-bottom: 0.5rem; }
.song-num { font-size: 0.7rem; font-weight: 700; color: var(--purple-soft); width: 1.2rem; text-align: center; flex-shrink: 0; }
.song-title { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.song-artist { font-size: 0.78rem; color: var(--text-light); }

/* ─── GAMES ─── */
.games { background: var(--bg); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.game-card { background: white; border: 2px solid var(--purple-pale); border-radius: 1.25rem; padding: 1.25rem 1.4rem; transition: all 0.2s; box-shadow: 3px 3px 0 var(--purple-pale); }
.game-card:hover { border-color: var(--purple-mid); box-shadow: 5px 5px 0 var(--purple-soft); transform: translate(-2px,-2px); }
.game-title { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.game-note { font-size: 0.82rem; color: var(--text-light); font-weight: 300; line-height: 1.5; }
.game-tag { display: inline-block; margin-top: 0.6rem; padding: 0.18rem 0.7rem; border-radius: 999px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; text-transform: lowercase; }
.game-tag.current   { background: #e8f5e9; color: #388e3c; border: 1px solid #c8e6c9; }
.game-tag.love      { background: var(--bg-card); color: var(--purple-mid); border: 1px solid var(--purple-pale); }
.game-tag.completed { background: #fdf0f5; color: var(--rose-dark); border: 1px solid var(--rose); }
.steam-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; padding: 0.7rem 1.4rem; border-radius: 999px; background: #1b2838; color: #c6d4df; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.steam-link:hover { background: #2a475e; transform: translateY(-2px); }

/* ─── SOCIALS ─── */
.socials { background: var(--bg-card); }
.socials-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.socials-preferred-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple-mid); font-weight: 600; margin-bottom: 1rem; }
.contact-list { list-style: none; counter-reset: contact-counter; }
.contact-list li { counter-increment: contact-counter; display: flex; align-items: center; padding: 0.9rem 1.2rem; border-radius: 1rem; background: white; border: 1.5px solid var(--purple-pale); margin-bottom: 0.65rem; transition: border-color 0.2s; }
.contact-list li:hover { border-color: var(--purple-soft); }
.contact-list a { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 1rem; width: 100%; }
.contact-num { font-size: 0.7rem; font-weight: 700; color: var(--purple-soft); width: 1.4rem; text-align: center; flex-shrink: 0; }
.contact-num::before { content: counter(contact-counter); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-platform { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; margin-bottom: 0.1rem; }
.contact-handle { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.also-find { display: flex; flex-direction: column; gap: 0.65rem; }
.find-card { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.2rem; border-radius: 1rem; background: white; border: 1.5px solid var(--purple-pale); text-decoration: none; color: var(--text); transition: border-color 0.2s; }
.find-card:hover { border-color: var(--purple-soft); }
.find-icon { font-size: 1.1rem; }
.find-platform { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; margin-bottom: 0.1rem; }
.find-handle { font-size: 0.92rem; font-weight: 500; color: var(--navy); }

/* ─── SONA ─── */
.sona { background: var(--bg-cream); }
.sona-grid { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }
.sona-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.sona-tab { padding: 0.45rem 1.25rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; border: 2px solid var(--purple-soft); background: white; color: var(--purple-dark); cursor: pointer; transition: all 0.2s; }
.sona-tab.active { background: var(--purple-dark); border-color: var(--purple-dark); color: white; }
.sona-tab.amber-tab { border-color: #d4a96a; color: var(--amber); background: #fdf6ec; }
.sona-tab.amber-tab.active { background: var(--amber); border-color: var(--amber); color: white; }
.sona-panel { display: none; }
.sona-panel.active { display: block; }
.sona-species { display: inline-block; padding: 0.25rem 0.85rem; border-radius: 999px; background: var(--bg-card); border: 1.5px solid var(--purple-soft); font-size: 0.78rem; color: var(--purple-dark); font-weight: 600; margin-bottom: 1.5rem; text-transform: lowercase; }
.sona-species.amber { background: #fdf6ec; border-color: #d4a96a; color: var(--amber); }
.sona-desc p { font-size: 1rem; font-weight: 300; color: var(--text); margin-bottom: 1rem; }
.sona-desc strong { color: var(--purple-dark); font-weight: 600; }
.palette-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.75rem; }
.palette-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); font-weight: 600; margin-right: 0.5rem; }
.swatch { width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.2s; }
.swatch:hover { transform: scale(1.2); }
.sona-ref-wrap { position: relative; }
.sona-ref { border-radius: 1.75rem; overflow: hidden; box-shadow: 12px 12px 0 var(--purple-pale), 12px 12px 0 1px var(--purple-soft); border: 2px solid var(--purple-soft); }
.sona-ref.amber-ref { box-shadow: 12px 12px 0 #f5e8d0, 12px 12px 0 1px #d4a96a; border-color: #d4a96a; }
.sona-ref img { width: 100%; display: block; }
.wip-badge { position: absolute; top: 1rem; right: 1rem; background: var(--amber); color: white; font-size: 0.68rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 999px; text-transform: uppercase; }

/* ─── GALLERY ─── */
.gallery { background: var(--bg-card); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item { border-radius: 1.25rem; overflow: hidden; position: relative; cursor: pointer; background: var(--purple-pale); transition: transform 0.25s, box-shadow 0.25s; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,61,122,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,24,41,0.5) 0%, transparent 50%); opacity: 0; transition: opacity 0.25s; display: flex; align-items: flex-end; padding: 1rem; }
.gallery-item:hover .g-overlay { opacity: 1; }
.artist-chip { background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 0.68rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 999px; text-transform: lowercase; }

/* ─── CONTACT ─── */
.contact { background: var(--bg-cream); text-align: center; }
.contact .section-eyebrow { justify-content: center; }
.contact .section-eyebrow::after { display: none; }
.contact .section-eyebrow::before { content: ''; display: block; height: 1px; width: 40px; background: var(--purple-soft); }
.contact-sub { font-size: 1.05rem; color: var(--text-light); font-weight: 300; max-width: 480px; margin: 0 auto 2.75rem; }
.contact-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 999px; background: var(--purple-dark); color: white; text-decoration: none; font-weight: 500; font-size: 0.88rem; transition: all 0.2s; box-shadow: 0 4px 18px rgba(74,61,122,0.25); }
.btn-primary:hover { background: var(--purple-mid); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 999px; background: white; color: var(--purple-dark); text-decoration: none; font-weight: 500; font-size: 0.88rem; border: 2px solid var(--purple-soft); transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--purple-mid); transform: translateY(-2px); }

/* ─── LIGHTBOX ─── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(28,24,41,0.92); align-items: center; justify-content: center; padding: 2rem; cursor: zoom-out; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 1rem; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.5); cursor: default; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.5rem; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.4); text-align: center; padding: 2.25rem; font-size: 0.82rem; position: relative; z-index: 1; }
footer a { color: var(--purple-soft); text-decoration: none; }
footer a:hover { color: white; }
.footer-inner { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-inner .sep { opacity: 0.25; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  section { padding: 4rem 2rem; }
  nav { padding: 0.9rem 1.5rem; }
  nav ul { gap: 1.25rem; }
  .hero { grid-template-columns: 1fr; padding: 8rem 2rem 3rem; text-align: center; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-img-ring { width: 280px; height: 280px; margin: 0 auto; }
  .hero-kicker, .hero-tags { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 280px; margin: 0 auto; }
  .sona-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .section-header-img { display: none; }
  .socials-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav ul { display: none; }
  .hero-name { font-size: 4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
}

/* ─── ACCESSIBILITY ADDITIONS ─── */

/* skip link */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--purple-dark); color: white; padding: 0.5rem 1rem; border-radius: 0 0 0.5rem 0.5rem; text-decoration: none; font-size: 0.9rem; z-index: 999; }
.skip-link:focus { top: 0; }

/* sr-only — visually hidden but readable by screenreaders */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* hero kicker — decorative line via ::before instead of empty span */
.hero-kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; animation: fadeUp 0.6s ease 0.05s both; }
.hero-kicker::before { content: ''; display: inline-block; width: 28px; height: 1.5px; background: var(--rose); flex-shrink: 0; }

/* hero-name: em for emphasis instead of .accent span */
.hero-name em { color: var(--purple-mid); font-style: normal; }

/* hero-tags as ul */
.hero-tags { list-style: none; padding: 0; }

/* facts-grid as ul */
.facts-grid { list-style: none; padding: 0; }
.fact-card { display: flex; flex-direction: column; }
.fact-label { display: block; }
.fact-value { display: block; }

/* games-grid as ul */
.games-grid { list-style: none; padding: 0; }

/* artist-list as ul */
.artist-list { list-style: none; padding: 0; }
.music-featured-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--purple-mid); margin-bottom: 1rem; }
.fav-songs-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--purple-mid); margin-bottom: 0.85rem; }
.fav-songs-list { padding-left: 0; list-style: decimal inside; }
.fav-songs-list .song-entry { display: flex; flex-direction: column; padding: 0.6rem 0.85rem; border-radius: 0.85rem; background: var(--bg-card); margin-bottom: 0.5rem; }

/* palette as ul */
.palette-list { list-style: none; padding: 0; display: flex; gap: 0.5rem; }
.palette-list .swatch { background: var(--color); width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.2s; flex-shrink: 0; }
.palette-list .swatch:hover { transform: scale(1.2); }

/* contact list — use ::marker, remove fake counter */
.contact-list { list-style: decimal; padding-left: 1.5rem; }
.contact-list li { display: flex; }
.contact-list li::marker { color: var(--purple-soft); font-size: 0.75rem; font-weight: 700; }

/* also-find as ul */
.also-find { list-style: none; padding: 0; }

/* gallery as ul */
.gallery-grid { list-style: none; padding: 0; }
.gallery-item figure { margin: 0; height: 100%; position: relative; }
.gallery-item figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* sona tabs as buttons */
.sona-tab { font-family: 'Nunito', sans-serif; font-size: 0.8rem; cursor: pointer; }

/* fix mobile horizontal overflow — caused by blobs/animations */
html, body { overflow-x: hidden; max-width: 100%; }

/* improve last.fm link contrast */
.np-lastfm-link { color: rgba(255,255,255,0.55); }
.np-lastfm-link:hover { color: white; }
