/* ──────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:                     #121315;
  --surface:                #121315;
  --surface-low:            #1a1c1d;
  --surface-container:      #1e2021;
  --surface-container-high: #292a2c;
  --surface-container-top:  #343536;
  --primary-container:      #0d2c40;
  --on-surface:             #e3e2e4;
  --on-surface-v:           #c3c7cd;
  --primary:                #adcae4;
  --secondary:              #ffb5a0;
  --accent:                 #ff5625;
  --outline:                #8d9197;
  --outline-v:              #42474c;

  --f-display: 'Anton', sans-serif;
  --f-body:    'Hanken Grotesk', sans-serif;
  --f-label:   'Space Grotesk', sans-serif;

  --max-w:       1280px;
  --pad-desk:    64px;
  --pad-mob:     20px;
  --gap:         24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--on-surface);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button, input { font-family: inherit; border-radius: 0; }

/* ──────────────────────────────────────────
   TYPOGRAPHY HELPERS
   ────────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.t-headline-lg {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
}
.t-headline-md {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
}
.t-label {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t-body-lg {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 28px;
}

/* ──────────────────────────────────────────
   NAV
   ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--pad-desk);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(227,226,228,.10);
  transition: padding .3s ease, background .3s ease;
}
#navbar.scrolled {
  background: rgba(18,19,21,.90);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--on-surface);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface);
  transition: color .3s;
}
.nav-links a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 4px;
}
.nav-links a:hover { color: var(--secondary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-status {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-v);
  padding: 8px 16px;
  border: 1px solid rgba(141,145,151,.30);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
}
.hamburger .material-symbols-outlined { font-size: 24px; }

/* ──────────────────────────────────────────
   HERO
   ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(66, 51, 0, 0.7) 0%, rgba(0,0,0,.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-mob);
  max-width: 800px;
  width: 100%;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-desc {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 28px;
  color: rgba(227,226,228,.80);
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero-cta-box {
  background: rgba(30,32,33,.40);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 40px;
  border: 1px solid rgba(227,226,228,.10);
  display: inline-block;
  width: 100%;
  max-width: 560px;
}

.hero-cta-title {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-form {
  display: flex;
  gap: 16px;
  opacity: .50;
}

.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(227,226,228,.30);
  padding: 12px 0;
  font-size: 16px;
  color: var(--on-surface);
  cursor: not-allowed;
  outline: none;
}
.hero-input::placeholder { color: rgba(141,145,151,.60); }

.hero-btn {
  background: var(--accent);
  color: var(--bg);
  border: 2px solid #000;
  padding: 12px 40px;
  font-family: var(--f-display);
  font-size: 20px;
  text-transform: uppercase;
  cursor: not-allowed;
  letter-spacing: .02em;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(227,226,228,.50);
}
.scroll-text {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ──────────────────────────────────────────
   EXPERIENCE SECTION
   ────────────────────────────────────────── */
.experience {
  padding: 96px var(--pad-desk);
  background: var(--bg);
  overflow: hidden;
}

.exp-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--gap);
  align-items: start;
}

.exp-label {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
}

.exp-headline {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--on-surface);
}
.exp-headline .hl { color: var(--accent); }

.exp-body {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--on-surface-v);
  margin-bottom: 40px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tag {
  padding: 4px 16px;
  border: 1px solid rgba(141,145,151,.30);
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-v);
}

.exp-img-wrap {
  position: relative;
}
.exp-img-box {
  aspect-ratio: 4/5;
  background: var(--surface-container-high);
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .exp-img-box { aspect-ratio: 16/9; }
}
.exp-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .7s ease;
}
.exp-img-box:hover img { filter: grayscale(0); }
.exp-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,86,37,.10);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.floating-badge {
  display: none;
}
@media (min-width: 900px) {
  .floating-badge {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--accent);
    padding: 32px;
    box-shadow: 4px 4px 0 0 var(--accent);
    max-width: 200px;
    transition: box-shadow .3s;
  }
  .floating-badge:hover { box-shadow: 6px 6px 0 0 var(--secondary); }
  .floating-badge span {
    font-family: var(--f-display);
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    color: var(--bg);
    display: block;
  }
}

/* ──────────────────────────────────────────
   VIBE SECTION
   ────────────────────────────────────────── */
.vibe {
  padding: 96px var(--pad-desk);
  background: var(--surface);
}

.vibe-header {
  text-align: center;
  margin-bottom: 80px;
}
.vibe-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 16px;
}
.vibe-divider {
  width: 96px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Plain cards */
.vcard {
  background: var(--primary-container);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,181,160,.10);
  min-height: 400px;
  transition: border-color .5s;
}
.vcard:hover { border-color: var(--secondary); }

.vcard-icon {
  font-size: 36px;
  color: var(--accent);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.vcard-title {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 16px;
}
.vcard-text {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--on-surface-v);
}

/* Feature (middle) card */
.vcard-feature {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--surface-container-top);
  border: 1px solid rgba(255,181,160,.10);
  transition: border-color .5s;
}
.vcard-feature:hover { border-color: var(--secondary); }
.vcard-feature img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .50;
  transition: transform 1s ease;
}
.vcard-feature:hover img { transform: scale(1.10); }
.vcard-feature-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 1;
}
.vcard-feature-label h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--on-surface);
}

/* ──────────────────────────────────────────
   MODALS
   ────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--surface-container);
  border: 1px solid var(--outline-v);
  border-top: 3px solid var(--accent);
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--on-surface-v);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}
.modal-close:hover { color: var(--on-surface); }

.modal-title {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--on-surface);
  padding: 32px 40px 16px;
  border-bottom: 1px solid var(--outline-v);
  flex-shrink: 0;
}

.modal-body {
  padding: 24px 40px 32px;
  overflow-y: auto;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 24px;
  color: var(--on-surface-v);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-body h3 {
  font-family: var(--f-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.modal-body p { color: var(--on-surface-v); }

/* ──────────────────────────────────────────
   COOKIE BANNER
   ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 72px;
  left: 16px;
  right: 16px;
  z-index: 45;
  background: var(--surface-container);
  border: 1px solid var(--outline-v);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 760px;
  transition: transform .4s ease, opacity .4s ease;
}
#cookie-banner.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
.ck-text { flex: 1; min-width: 200px; }
.ck-title {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 6px;
}
.ck-desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 20px;
  color: var(--on-surface-v);
}
.ck-desc a {
  color: var(--accent);
  text-decoration: underline;
}
.ck-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.ck-btn {
  font-family: var(--f-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 24px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.ck-btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.ck-btn--primary:hover { background: var(--secondary); border-color: var(--secondary); color: var(--bg); }
.ck-btn--ghost {
  background: transparent;
  color: var(--on-surface-v);
  border-color: var(--outline-v);
}
.ck-btn--ghost:hover { border-color: var(--on-surface-v); color: var(--on-surface); }

/* ──────────────────────────────────────────
   PLAYER IFRAME
   ────────────────────────────────────────── */
#player-frame {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 64px;
  border: none;
  z-index: 40;
  display: block;
}

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
  padding: 48px var(--pad-desk);
  border-top: 1px solid rgba(227,226,228,.10);
  background: var(--surface);
  margin-bottom: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--primary);
}
.footer-tagline {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--on-surface-v);
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-links a {
  font-family: var(--f-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-v);
  transition: color .3s;
}
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 16px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(141,145,151,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-v);
  transition: background .3s, color .3s;
}
.social-btn:hover { background: var(--accent); color: var(--bg); }
.social-btn .material-symbols-outlined { font-size: 18px; }

/* ──────────────────────────────────────────
   SCROLL-IN ANIMATION
   ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { padding: 20px var(--pad-mob); }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .experience { padding: 80px var(--pad-mob); }
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vibe { padding: 80px var(--pad-mob); }
  .vibe-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer {
    padding: 48px var(--pad-mob);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-tagline { text-align: center; }

  .now-playing { padding: 16px var(--pad-mob); }
  .np-controls { display: none; }
}

@media (max-width: 480px) {
  .hero-cta-box { padding: 24px 20px; }
  .hero-form { flex-direction: column; }
  .hero-btn { width: 100%; padding: 14px; }
}
