/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #491A06;
  color: #d4a853;
  min-height: 100vh;
  position: relative;
}

::selection {
  background: rgba(114, 39, 7, 0.3);
  color: #e8c4a8;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #491A06; }
::-webkit-scrollbar-thumb { background: #722707; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #943d15; }

/* ===== BACKGROUND GRID ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ===== GLOW ===== */
.glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(114, 39, 7, 0.35);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.3; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  background: rgba(73, 26, 6, 0.85);
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: #f3e6c5;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #c4a88a;
  text-decoration: none;
  transition: color 150ms;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4a853;
}

.nav-toggle {
  background: none;
  border: none;
  color: #c4a88a;
  cursor: pointer;
  transition: color 150ms;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover { color: #d4a853; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(12px);
  background: rgba(73, 26, 6, 0.97);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: #c4a88a;
  text-decoration: none;
  transition: color 150ms;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: #d4a853; }

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #c4a88a;
  cursor: pointer;
  transition: color 150ms;
  font-size: 24px;
}

.mobile-menu-close:hover { color: #d4a853; }

/* ===== GLASS PANEL ===== */
.glass-panel {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(to right, #b5764a, #e8c4a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
}

/* ===== WHITE NOISE TEXTURE ===== */
.white-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== MAIN CONTENT ===== */
.main-content {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #c4a88a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
}

.hero h1 {
  font-size: 48px;
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 72px; font-family: 'Alex Brush', cursive; }
}

.hero p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
  color: #c4a88a;
  max-width: 560px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero p { font-size: 18px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #d4a853;
  background: #722707;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms;
}

.btn-primary:hover { background: #943d15; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #d4a853;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.06); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #c4a88a;
  cursor: pointer;
  transition: all 150ms;
  text-decoration: none;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #d4a853;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== SECTION ===== */
.section {
  padding: 96px 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.section-title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title { font-size: 36px; }
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
  color: #c4a88a;
  max-width: 560px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-subtitle { font-size: 18px; }
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 150ms;
}

.card:hover { background: rgba(255, 255, 255, 0.07); }

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(114, 39, 7, 0.25);
  border: 1px solid rgba(114, 39, 7, 0.4);
  color: #d4956a;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625;
  color: #c4a88a;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(73, 26, 6, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms;
}

.gallery-item:hover .overlay { opacity: 1; }

/* ===== MUSIC PLAYER ===== */
.track-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 150ms;
}

.track-item:hover { background: rgba(255, 255, 255, 0.07); }

.track-play-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(114, 39, 7, 0.25);
  border: 1px solid rgba(114, 39, 7, 0.4);
  border-radius: 8px;
  color: #d4956a;
  cursor: pointer;
  transition: all 150ms;
}

.track-play-btn:hover {
  background: rgba(114, 39, 7, 0.4);
  color: #e8c4a8;
}

.track-info { flex: 1; min-width: 0; }

.track-info h4 {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-info span {
  font-size: 12px;
  font-weight: 300;
  color: #a07a5e;
}

.track-duration {
  font-size: 12px;
  font-weight: 400;
  color: #a07a5e;
  font-variant-numeric: tabular-nums;
}

/* ===== NOW PLAYING BAR ===== */
.now-playing {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  background: rgba(50, 18, 4, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 300ms;
}

.now-playing.visible { transform: translateY(0); }

.now-playing .np-title {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing .np-artist {
  font-size: 11px;
  font-weight: 300;
  color: #a07a5e;
}

.now-playing .np-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.now-playing .np-btn {
  background: none;
  border: none;
  color: #c4a88a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms;
}

.now-playing .np-btn:hover { color: #d4a853; }

.now-playing .np-progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.now-playing .np-progress-fill {
  height: 100%;
  background: #b5764a;
  border-radius: 2px;
  width: 0%;
  transition: width 100ms linear;
}

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #c4a88a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  color: #d4a853;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 150ms;
  font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(181, 118, 74, 0.6);
}

.form-textarea { resize: vertical; min-height: 120px; }

/* ===== LEGAL TEXT ===== */
.legal-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #c4a88a;
  max-width: 800px;
}

.legal-text h2 {
  font-size: 20px;
  font-weight: 500;
  color: #d4a853;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-text h3 {
  font-size: 16px;
  font-weight: 500;
  color: #d4a853;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-text p { margin-bottom: 12px; }

.legal-text ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.legal-text li { margin-bottom: 4px; }

.legal-text a {
  color: #d4956a;
  text-decoration: none;
  transition: color 150ms;
}

.legal-text a:hover { color: #e8c4a8; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 300px 1fr; }
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #c4a88a;
}

.about-text p { margin-bottom: 20px; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: #c4a88a;
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover { color: #d4a853; }

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: #a07a5e;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(30, 10, 2, 0.92);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #c4a88a;
  cursor: pointer;
  font-size: 28px;
  transition: color 150ms;
}

.lightbox-close:hover { color: #d4a853; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 70;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(114, 39, 7, 0.2);
  border: 1px solid rgba(114, 39, 7, 0.4);
  color: #e8c4a8;
  opacity: 0;
  transition: all 300ms;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== HERO SPLIT (Start) ===== */
.hero-split {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 64px 24px;
  max-width: 1152px;
  margin: 0 auto;
  gap: 48px;
}

@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    padding: 96px 24px;
    gap: 64px;
  }
}

.hero-split-text {
  order: 2;
}

@media (min-width: 768px) {
  .hero-split-text { order: 1; }
}

.hero-split-image {
  order: 1;
}

@media (min-width: 768px) {
  .hero-split-image { order: 2; }
}

.hero-split-image img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 500ms;
}
.footer-copy a {
  color: #c4a88a;
  text-decoration: none;
  transition: color 150ms;
}

.footer-copy a:hover {
  color: #d4a853;
}