/* ============================================================
   Hidden Mint Records — Full-screen Scroll Design
   ============================================================ */

:root {
  --mint:    #1FDFBE;
  --mint-d:  #0fbfa0;
  --white:   #ffffff;
  --black:   #0e0e0e;
  --gray:    #888;
  --light:   #f6f6f4;
  --nav-h:   54px;
  --f:       'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }
button, input, select, textarea { font-family: var(--f); }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-box {
  background: var(--mint);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 6px 9px 5px;
  line-height: 1;
  flex-shrink: 0;
}
/* Nav hover mint icon */
.nav-mint-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-44%) scale(0.7);
  width: 30px;
  height: 26px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 4px rgba(15,191,160,0.5));
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1;
}
.nav-mint-hover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-link:hover .nav-mint-hover,
.nav-link-drop:hover .nav-mint-hover {
  opacity: 0.88;
  transform: translateX(-50%) translateY(-52%) scale(0.7);
}

/* Mint fragrance particles */
@keyframes mintFloat {
  0%   { opacity: 0;    transform: translateX(var(--x, 0)) translateY(0)     scale(1);   }
  20%  { opacity: 0.85; }
  100% { opacity: 0;    transform: translateX(var(--x, 0)) translateY(-28px) scale(0.1); }
}
.mint-p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3ff0d2, #0fbfa0);
  box-shadow: 0 0 5px rgba(31,223,190,0.7);
  pointer-events: none;
  opacity: 0;
}
.nav-link:hover .mint-p,
.nav-link-drop:hover .mint-p {
  animation: mintFloat 1.4s ease-out infinite;
  animation-delay: var(--d, 0s);
}
/* Nav goose walking mascot */
@keyframes gooseWalk {
  0%            { transform: translateX(0px)  translateY(0px)   scaleX(1); }
  8%            { transform: translateX(3px)  translateY(-2px)  scaleX(1); }
  16%           { transform: translateX(7px)  translateY(0px)   scaleX(1); }
  24%           { transform: translateX(11px) translateY(-2px)  scaleX(1); }
  32%           { transform: translateX(15px) translateY(0px)   scaleX(1); }
  40%           { transform: translateX(19px) translateY(-2px)  scaleX(1); }
  47%           { transform: translateX(22px) translateY(0px)   scaleX(1); }
  50%           { transform: translateX(22px) translateY(0px)   scaleX(-1); }
  58%           { transform: translateX(19px) translateY(-2px)  scaleX(-1); }
  66%           { transform: translateX(15px) translateY(0px)   scaleX(-1); }
  74%           { transform: translateX(11px) translateY(-2px)  scaleX(-1); }
  82%           { transform: translateX(7px)  translateY(0px)   scaleX(-1); }
  90%           { transform: translateX(3px)  translateY(-2px)  scaleX(-1); }
  97%           { transform: translateX(0px)  translateY(0px)   scaleX(-1); }
  99%, 100%     { transform: translateX(0px)  translateY(0px)   scaleX(1); }
}
.nav-goose {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  pointer-events: none;
  animation: gooseWalk 5s ease-in-out infinite;
  transform-origin: center bottom;
  margin-left: 2px;
}

.logo-word {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

/* Nav links */
.nav-right {
  display: flex;
  align-items: stretch;
  height: var(--nav-h);
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link.active { color: var(--black); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--black); }

/* Social icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--mint); }
.nav-icon svg { width: 16px; height: 16px; }

/* Artist Nav Dropdown */
.nav-drop-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-link-drop {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.drop-arrow {
  transition: transform 0.2s;
  opacity: 0.45;
}
.nav-drop-wrap.open .drop-arrow { transform: rotate(180deg); }
.nav-dropmenu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  min-width: 170px;
  overflow: hidden;
  z-index: 300;
}
.nav-drop-wrap.open .nav-dropmenu { display: block; }
.nav-dropmenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gray);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nav-dropmenu-item:hover { background: rgba(31,223,190,0.07); color: var(--black); }
.nav-dropmenu-item.active { color: var(--mint-d); }
.nav-dropmenu-ava {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
/* Mobile artist sub-links */
.m-artist-link {
  display: block;
  padding: 8px 20px 8px 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.m-artist-link.active, .m-artist-link:hover { color: var(--mint-d); }

/* ════════════════════════════════
   PAGE INDICATOR (right, fixed)
════════════════════════════════ */
#indicator {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ind-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: row-reverse;
}
.ind-item span {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.2);
  width: 14px;
  text-align: right;
  transition: color 0.25s;
}
.ind-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.25s, transform 0.25s;
}
.ind-item.active span  { color: var(--mint); }
.ind-item.active .ind-dot { background: var(--mint); transform: scale(1.4); }
/* On dark sections */
.ind-light .ind-item span { color: rgba(255,255,255,0.25); }
.ind-light .ind-item.active span { color: var(--mint); }
.ind-light .ind-dot { background: rgba(255,255,255,0.2); }
.ind-light .ind-item.active .ind-dot { background: var(--mint); }

/* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
.sec {
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* ── Shared left panel ── */
.s-panel {
  width: 46%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.s-panel.dark {
  background: var(--black);
}
.s-panel.photo {
  background: #d8d8d8;
}
.s-panel.photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.photo-ph {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: #bbb;
}

/* Section number watermark */
.panel-num {
  position: absolute;
  top: var(--nav-h);
  left: 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}
.panel-num.light { color: rgba(255,255,255,0.18); }

/* Panel body (text inside dark panels) */
.panel-body {
  padding: 48px 44px;
  position: relative;
  z-index: 1;
}

/* Large watermark number on dark panel */
.s-panel.dark::before {
  content: attr(data-num);
  position: absolute;
  bottom: -40px; right: -20px;
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ── Shared right content ── */
.s-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 60px 64px;
  background: var(--white);
  overflow-y: auto;
}
.s-content.dark-content {
  background: #111;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Shared typography ── */
.eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--mint);
  flex-shrink: 0;
}
.eyebrow.light-ey { }
.eyebrow-mint {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.s-heading {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.panel-heading {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.panel-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--mint);
}
.s-desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #4a4a4a;
  margin-bottom: 18px;
  max-width: 440px;
}
.s-desc-em {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--mint);
  max-width: 440px;
  margin-top: 8px;
}
/* Company section specific */
.company-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #6a6a6a;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.company-statement {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
  border-left: 2px solid var(--mint);
  padding-left: 16px;
  margin-top: 12px;
  color: var(--black);
}

.s-desc-en {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #aaa;
  text-transform: uppercase;
  max-width: 400px;
  margin-bottom: 36px;
}
.s-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-list li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-list li::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--mint);
  flex-shrink: 0;
}
.s-divider {
  width: 36px; height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 28px 0;
}

/* ════════════════════════════════
   02 — ARTIST
════════════════════════════════ */
.artist-name {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 8px;
}
.artist-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.artist-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artist-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}
.artist-link:last-child { border-bottom: none; }
.artist-link:hover { color: var(--mint); padding-left: 6px; }
.artist-link svg { flex-shrink: 0; }

/* ════════════════════════════════
   03 — DISCOGRAPHY
════════════════════════════════ */
.sec-music {
  background: var(--light);
  flex-direction: column;
  height: auto;
  min-height: 100vh;
}
.music-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 56px) 80px 80px;
  gap: 64px;
}
.disco-block { display: flex; flex-direction: column; }
.disco-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.music-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 8px;
}
.music-secnum {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
}
.music-loading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  padding: 24px 0;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}
.music-empty {
  padding: 40px 0;
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
}

/* Album image grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 16px;
}
.album-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
  cursor: default;
}
.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.album-card:hover img { transform: scale(1.05); }
.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.album-overlay-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.05em;
}
.album-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: #e5e5e3;
}

/* Concert list */
/* Concert grid — same structure as album-grid but 3:4 portrait cards */
#concertList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.concert-row {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: #e0e0de;
  cursor: default;
}
.concert-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.concert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.concert-row:hover .concert-thumb img { transform: scale(1.05); }
.concert-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.concert-row:hover .concert-info { opacity: 1; }
.concert-date  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; margin-bottom: 5px; }
.concert-name  { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; letter-spacing: 0.01em; }
.concert-venue { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.03em; }

/* Music Video grid */
#mvList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.mv-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.mv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
  opacity: 0.85;
}
.mv-card:hover img { transform: scale(1.05); opacity: 0.6; }
.mv-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mv-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.mv-card:hover .mv-play-btn { background: var(--mint); border-color: var(--mint); transform: scale(1.1); }
.mv-play-btn svg { margin-left: 3px; }
.mv-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 14px 14px 12px;
}
.mv-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.mv-date  { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 3px; letter-spacing: 0.06em; }

/* ════════════════════════════════
   04 — CONTACT
════════════════════════════════ */
.sec-dark { background: var(--black); }

/* Contact info block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
}
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
}
.contact-info-val {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
a.contact-info-link {
  transition: color 0.2s;
}
a.contact-info-link:hover { color: var(--white); }

/* Form */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
}
.cf-field { margin-bottom: 22px; }
.cf-field label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 13px;
  font-family: var(--f);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus { border-bottom-color: var(--mint); }
.cf-field select { cursor: pointer; color: rgba(255,255,255,0.4); }
.cf-field select option { background: #1a1a1a; }
.cf-field textarea { resize: none; height: 80px; }
#contactForm button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
  padding: 13px 32px;
  background: var(--mint);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
#contactForm button[type="submit"]:hover { opacity: 0.82; }
#contactForm button[type="submit"]:disabled { opacity: 0.4; cursor: not-allowed; }
.cf-msg { display: none; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; padding: 10px 0; }
.cf-msg.ok  { display: block; color: var(--mint); }
.cf-msg.err { display: block; color: #f87171; }

/* Contact panel image */
.contact-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45;
}

/* Goose mascot */
@keyframes contactGooseFloat {
  0%   { transform: translateX(0px)   translateY(0px)   rotate(0deg); }
  15%  { transform: translateX(14px)  translateY(-8px)  rotate(2deg); }
  30%  { transform: translateX(28px)  translateY(-3px)  rotate(0deg); }
  45%  { transform: translateX(18px)  translateY(-12px) rotate(-2deg); }
  60%  { transform: translateX(6px)   translateY(-6px)  rotate(0deg); }
  75%  { transform: translateX(-10px) translateY(-10px) rotate(2deg); }
  90%  { transform: translateX(-4px)  translateY(-3px)  rotate(-1deg); }
  100% { transform: translateX(0px)   translateY(0px)   rotate(0deg); }
}
.contact-goose {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: clamp(120px, 22vw, 220px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: contactGooseFloat 6s ease-in-out infinite;
  opacity: 0.92;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

/* Section footer bar (inside sec-04) */
.sec-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 44px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.sec-footer a { color: rgba(255,255,255,0.18); transition: color 0.2s; }
.sec-footer a:hover { color: var(--mint); }

/* ════════════════════════════════
   TOAST
════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 3px solid var(--mint);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 999;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════
   HAMBURGER BUTTON
════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 4px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ════════════════════════════════
   MOBILE NAV OVERLAY
════════════════════════════════ */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-nav.open { transform: translateX(0); }
.m-close {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.m-close:hover { color: var(--mint); }
.m-nav-link {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.m-nav-link:hover { color: var(--white); }
.m-nav-icons {
  display: flex;
  gap: 28px;
  margin-top: 4px;
}
.m-nav-icons a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.m-nav-icons a:hover { color: var(--mint); }
.m-nav-icons svg { width: 22px; height: 22px; }

/* ════════════════════════════════
   ARTIST SLIDESHOW
════════════════════════════════ */
.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
/* Album cover in sec-01 keeps full coverage */
.cover-fit {
  object-fit: cover !important;
  object-position: center center !important;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 26px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 2px;
}
.slide-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }
.slide-btn.prev { left: 14px; }
.slide-btn.next { right: 14px; }
.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.slide-dot.active {
  background: var(--mint);
  transform: scale(1.35);
}

/* ════════════════════════════════
   MOBILE
════════════════════════════════ */
@media (max-width: 860px) {
  .sec { flex-direction: column; height: auto; min-height: unset; }
  .s-panel { width: 100%; min-height: 80vw; flex-shrink: 0; }
  .s-panel.dark { min-height: 56vw; }
  .s-panel.photo img { object-position: center center; }
  .s-content { padding: 40px 28px 56px; overflow: visible; }
  .s-content.dark-content { padding: 40px 28px 80px; }
  .sec-music { height: auto; min-height: unset; padding-bottom: 60px; }
  .music-inner { padding: calc(var(--nav-h) + 40px) 24px 40px; gap: 48px; }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  #concertList { grid-template-columns: repeat(2, 1fr); }
  #mvList { grid-template-columns: repeat(2, 1fr); }
  .concert-info { opacity: 1; }
  .concert-venue { display: none; }
  #indicator { display: none; }
  #nav { padding: 0 18px; }
  .logo-word { display: block; font-size: 10px; }
  .nav-link { display: none; }
  .nav-icons { display: none; }
  .hamburger { display: flex; }
  .sec-footer { padding: 14px 24px; flex-wrap: wrap; gap: 4px; }
  .artist-name { font-size: clamp(2.4rem, 8vw, 4rem); }
  .s-heading { font-size: clamp(2.6rem, 10vw, 5rem); }
  .slide-btn { width: 36px; height: 36px; font-size: 22px; }
  .panel-num { display: none; }
}
