:root {
  --ink: #101217;
  --ink-2: #171a21;
  --ink-3: #232731;
  --paper: #f5f0e8;
  --paper-2: #ebe3d7;
  --white: #fffdf9;
  --muted: #716f72;
  --muted-dark: #b8b5b0;
  --magenta: #dc1f58;
  --magenta-deep: #ae1645;
  --gold: #ead1a4;
  --line: rgba(16, 18, 23, .12);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(16, 18, 23, .12);
  --nav-h: 76px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--magenta); color: white; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--magenta);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 850;
}
.section-copy { margin: 22px 0 0; font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.78; color: #45434a; }
.section-copy p { margin: 0 0 1.15em; }

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(16, 18, 23, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 1px rgba(234,209,164,.25); }
.brand-wordmark { color: white; font-weight: 850; letter-spacing: .12em; font-size: .9rem; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); list-style: none; padding: 0; margin: 0; }
.nav-links a { color: #e9e5df; font-size: .9rem; font-weight: 700; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--magenta); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--magenta); color: white !important; }
.nav-cta:hover { background: #ef2d69; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; cursor: pointer; border-radius: 50%; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { min-height: 760px; padding-top: var(--nav-h); background: var(--paper); overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; left: -240px; bottom: -130px;
  border: 1px solid rgba(220,31,88,.18); border-radius: 50%; box-shadow: 0 0 0 48px rgba(220,31,88,.035), 0 0 0 96px rgba(220,31,88,.025);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background: repeating-linear-gradient(112deg, transparent 0 31px, rgba(16,18,23,.04) 31px 32px);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 48%);
  mask-image: linear-gradient(90deg, black, transparent 48%);
}
.hero-grid { position: relative; z-index: 1; min-height: calc(760px - var(--nav-h)); display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(34px, 5vw, 78px); padding-block: 54px; }
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow::before { display: none; }
.mini-eq { width: 34px; height: 14px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 3px; }
.mini-eq i { display: block; width: 3px; height: 42%; border-radius: 2px; background: currentColor; transform-origin: center bottom; animation: equalize 1.15s ease-in-out infinite alternate; }
.mini-eq i:nth-child(2) { height: 100%; animation-delay: -.35s; }
.mini-eq i:nth-child(3) { height: 68%; animation-delay: -.7s; }
.mini-eq i:nth-child(4) { height: 86%; animation-delay: -.15s; }
@keyframes equalize { from { transform: scaleY(.45); } to { transform: scaleY(1); } }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .88; letter-spacing: -.065em; font-weight: 900; }
.hero h1 span { display: inline-block; color: var(--magenta); text-shadow: 3px 3px 0 rgba(174,22,69,.12); }
.hero-lead { margin: 28px 0 0; max-width: 580px; font-size: clamp(1.12rem, 2vw, 1.45rem); line-height: 1.52; color: #47454a; }
.hero-lead strong { display: block; margin-bottom: 5px; color: var(--ink); font-weight: 900; letter-spacing: -.025em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 800; font-size: .94rem; border: 1px solid transparent; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.hero .btn { border-radius: 14px; }
.btn-primary { background: var(--magenta); color: white; box-shadow: 0 12px 30px rgba(220,31,88,.22); }
.btn-primary:hover { background: #ed2865; }
.btn-secondary { border-color: rgba(16,18,23,.2); background: rgba(255,255,255,.45); }
.btn-secondary:hover { background: white; border-color: rgba(16,18,23,.32); }
.play-mark { font-size: .78em; transform: translateX(1px); }
.hero-soundline { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 22px 0 0; color: #666368; font-size: .7rem; line-height: 1.4; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.hero-soundline span + span::before { content: ""; display: inline-block; width: 4px; height: 4px; margin: 0 18px 2px 0; border-radius: 50%; background: var(--magenta); }
.hero-visual { position: relative; min-width: 0; }
.hero-visual::before { content: ""; position: absolute; z-index: 0; inset: 16px -13px -13px 17px; border: 1px solid rgba(220,31,88,.45); border-radius: 26px 26px 26px 72px; transform: rotate(-.7deg); }
.hero-photo {
  display: block; z-index: 1;
  width: 100%;
  position: relative; overflow: hidden; border-radius: 26px 26px 26px 76px; box-shadow: 0 28px 72px rgba(16,18,23,.19); background: var(--paper-2);
  aspect-ratio: 4 / 3;
}
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(112deg, rgba(16,18,23,.11), transparent 33%, transparent 72%, rgba(220,31,88,.07)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s ease; }
.hero-visual:hover .hero-photo img { transform: scale(1.012); }
.hero-badge {
  position: absolute; z-index: 2; left: -34px; bottom: 34px; width: 132px; height: 132px; padding: 7px; border-radius: 50%; background: var(--ink); box-shadow: 0 16px 40px rgba(16,18,23,.25);
}
.hero-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-stamp { position: absolute; z-index: 2; top: 24px; right: -14px; padding: 12px 16px; border-radius: 9px; background: var(--gold); font-weight: 900; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(16,18,23,.16); transform: rotate(1.5deg); }

/* Sections */
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section-dark { background: var(--ink); color: white; }
.section-dark .section-copy { color: var(--muted-dark); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.about-logo-card { position: relative; min-height: 440px; display: grid; place-items: center; border-radius: var(--radius); overflow: hidden; background: #0b0d11; border: 1px solid rgba(234,209,164,.16); }
.about-logo-card::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(220,31,88,.17), transparent 68%); }
.about-logo-card img { position: relative; width: min(88%, 460px); filter: drop-shadow(0 18px 44px rgba(0,0,0,.28)); }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { border: 1px solid rgba(234,209,164,.24); padding: 9px 13px; border-radius: 999px; color: var(--gold); font-size: .82rem; font-weight: 750; }

/* Gallery */
.gallery-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.gallery-controls { display: flex; gap: 9px; }
.icon-btn { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(16,18,23,.15); background: rgba(255,255,255,.55); border-radius: 50%; cursor: pointer; transition: .2s; }
.icon-btn:hover { background: white; transform: translateY(-2px); }
.gallery-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(360px, 82vw); gap: 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding: 4px calc((100vw - min(var(--max), calc(100vw - 40px))) / 2) 18px; scroll-padding-inline: calc((100vw - min(var(--max), calc(100vw - 40px))) / 2); }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card { margin: 0; scroll-snap-align: start; height: 500px; border-radius: 24px; overflow: hidden; position: relative; background: #ddd; box-shadow: 0 14px 34px rgba(16,18,23,.08); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card.featured { grid-auto-columns: 480px; }

/* Audio */
.audio-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px, 6vw, 86px); align-items: start; }
.player-card { border-radius: var(--radius); border: 1px solid rgba(255,255,255,.09); background: var(--ink-2); padding: clamp(26px, 4vw, 46px); box-shadow: 0 22px 60px rgba(0,0,0,.23); }
.now-label { color: var(--magenta); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.track-title { margin: 9px 0 2px; font-size: clamp(1.55rem, 3vw, 2.5rem); font-weight: 850; letter-spacing: -.03em; }
.track-artist { color: #a9a6aa; }
.progress { width: 100%; margin: 28px 0 8px; accent-color: var(--magenta); cursor: pointer; }
.time-row { display: flex; justify-content: space-between; color: #8f8c91; font-size: .78rem; }
.player-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 24px; }
.player-controls button { width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--ink-3); color: white; display: grid; place-items: center; cursor: pointer; transition: .2s; }
.player-controls button:hover { background: #313642; transform: translateY(-2px); }
.player-controls .play { width: 66px; height: 66px; background: var(--magenta); }
.player-controls .play:hover { background: #ef2d69; }
.playlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.playlist button { width: 100%; border: 0; color: #d9d5d0; background: transparent; cursor: pointer; border-radius: 14px; padding: 15px 16px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 11px; text-align: left; transition: .2s; }
.playlist button:hover { background: rgba(255,255,255,.055); }
.playlist button.active { background: rgba(220,31,88,.12); color: white; box-shadow: inset 3px 0 var(--magenta); }
.track-no { color: #77747a; font-variant-numeric: tabular-nums; }
.track-meta strong { display: block; font-size: .94rem; }
.track-meta span { color: #87848a; font-size: .78rem; }
.track-duration { color: #77747a; font-size: .8rem; }

/* Contact */
.contact-card { position: relative; overflow: hidden; border-radius: 36px; background: var(--magenta); color: white; padding: clamp(38px, 6vw, 72px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.contact-card::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; right: -145px; top: -130px; box-shadow: 0 0 0 44px rgba(255,255,255,.045), 0 0 0 88px rgba(255,255,255,.025); }
.contact-card h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .94; letter-spacing: -.05em; }
.contact-card p { max-width: 600px; margin: 18px 0 0; line-height: 1.65; color: rgba(255,255,255,.86); }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.contact-link { min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 0 20px; font-weight: 850; background: white; color: var(--ink); }
.contact-link.secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,.5); }
.contact-link:hover { transform: translateY(-2px); }

/* Footer */
.footer { background: #0b0d11; color: #ddd9d4; padding: 34px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer small { color: #89878a; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-size: .86rem; color: #b8b5b0; }
.footer-links a:hover { color: var(--magenta); }

/* Legal / subpages */
.subpage { min-height: 100vh; padding: calc(var(--nav-h) + 72px) 0 90px; background: var(--paper); }
.legal-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--magenta); font-weight: 800; font-size: .9rem; margin-bottom: 26px; }
.legal-shell h1 { margin: 0 0 42px; max-width: 760px; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .94; letter-spacing: -.055em; }
.legal-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 5vw, 54px); box-shadow: 0 18px 50px rgba(16,18,23,.06); }
.legal-card section + section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-card h2 { margin: 0 0 14px; font-size: clamp(1.22rem, 2.5vw, 1.6rem); letter-spacing: -.025em; }
.legal-card p, .legal-card li { color: #504d52; line-height: 1.75; }
.legal-card ul { padding-left: 1.25rem; }
.legal-card a { color: var(--magenta-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  :root { --nav-h: 70px; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; width: 100%; height: calc(100dvh - var(--nav-h)); padding: 42px 26px; background: rgba(11,13,17,.985); flex-direction: column; align-items: flex-start; gap: 0; transform: translateX(100%); transition: transform .28s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a { display: block; padding: 20px 4px; width: 100%; font-size: 1.3rem; }
  .nav-links .nav-cta { margin-top: 22px; text-align: center; }
  .menu-toggle { display: block; }
  .hero { min-height: 0; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; padding-block: 48px 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { margin-top: 4px; }
  .hero-visual::before { inset: 14px 4px -11px 14px; }
  .hero-badge { left: 18px; bottom: 18px; width: 102px; height: 102px; }
  .hero-stamp { right: 12px; top: 14px; }
  .about-grid, .audio-grid, .contact-card { grid-template-columns: 1fr; }
  .about-logo-card { min-height: 350px; }
  .contact-actions { max-width: 520px; }
  .gallery-card { height: 460px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-wordmark { display: none; }
  .hero-grid { gap: 30px; padding-top: 36px; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5.1rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-soundline { gap: 6px 12px; font-size: .64rem; letter-spacing: .08em; }
  .hero-soundline span + span::before { margin-right: 12px; }
  .hero-photo { border-radius: 20px 20px 20px 52px; aspect-ratio: 1 / 1.05; }
  .hero-visual::before { border-radius: 18px 18px 18px 48px; }
  .hero-photo img { object-position: 50% 45%; }
  .hero-badge { width: 86px; height: 86px; }
  .hero-stamp { font-size: .64rem; padding: 9px 11px; }
  .section { padding: 68px 0; }
  .section-title { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .about-logo-card { min-height: 290px; }
  .gallery-head { align-items: flex-start; }
  .gallery-controls { display: none; }
  .gallery-track { grid-auto-columns: 82vw; gap: 12px; padding-inline: 14px; scroll-padding-inline: 14px; }
  .gallery-card { height: 410px; }
  .player-card { padding: 22px 18px; }
  .playlist button { grid-template-columns: 28px 1fr auto; padding-inline: 10px; }
  .contact-card { border-radius: 26px; }
  .contact-card h2 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 14px 18px; }
  .legal-shell { width: min(100% - 28px, 900px); }
  .legal-card { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
