/* ===== TOKENS ===== */
:root {
  --bg: #0d0b09;
  --bg2: #131008;
  --surface: #1a1510;
  --surface2: #221c14;
  --amber: #c8962a;
  --amber-lt: #e4b253;
  --cream: #f0e6cc;
  --cream-dim: #a89070;
  --text: #ede4d3;
  --text-dim: #8a7660;
  --border: rgba(200,150,42,0.15);
  --nav-h: 68px;
  --radius: 4px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--amber);
  color: #0d0b09;
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-lt); border-color: var(--amber-lt); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,230,204,0.3);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline:hover { background: var(--amber); color: #0d0b09; transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.75rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13,11,9,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.nav-cta {
  background: var(--amber);
  color: #0d0b09;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta.active { background: var(--amber-lt); }
.nav-toggle { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,0.25) 0%,
    rgba(13,11,9,0.1) 40%,
    rgba(13,11,9,0.7) 75%,
    rgba(13,11,9,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.scroll-hint span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ===== VIBE STRIP ===== */
.vibe-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2.5rem;
  overflow: hidden;
}
.vibe-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.dot { color: var(--amber); font-size: 1rem; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-image { overflow: hidden; }
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-image:hover img { transform: scale(1.03); }
.split-text {
  background: var(--surface);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--cream);
  border-left: 2px solid var(--amber);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}
.split-text p { color: var(--cream-dim); margin-bottom: 1.5rem; font-size: 0.95rem; }
.split-text .btn { align-self: flex-start; }

/* ===== LISTEN CTA ===== */
.listen-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem;
}
.listen-bg { position: absolute; inset: 0; }
.listen-bg img { object-position: center 30%; }
.listen-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,11,9,0.92) 0%, rgba(13,11,9,0.7) 60%, rgba(13,11,9,0.85) 100%);
}
.listen-content { position: relative; z-index: 2; max-width: 700px; }
.listen-content h2 { margin: 0.5rem 0 2.5rem; }

.platform-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.platform-link:hover { border-color: var(--amber); color: var(--amber); background: rgba(200,150,42,0.08); transform: translateY(-2px); }

/* ===== SOCIAL STRIP ===== */
.social-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.social-strip p { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }
.social-links { display: flex; gap: 1.2rem; }
.social-links a {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 4rem;
  margin-top: var(--nav-h);
}
.page-header-short { height: 40vh; }
.page-header-bg { position: absolute; inset: 0; }
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,0.4) 0%, rgba(13,11,9,0.85) 100%);
}
.page-header-content { position: relative; z-index: 2; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 6rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }
.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.section-intro p { color: var(--cream-dim); margin-top: 1rem; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== PLATFORM CARDS ===== */
.platform-cards { display: flex; flex-direction: column; gap: 1px; }
.platform-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.platform-card:hover { background: var(--surface2); border-color: var(--amber); transform: translateX(4px); }
.platform-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spotify { background: rgba(30,215,96,0.15); color: #1ed760; }
.apple { background: rgba(252,60,68,0.15); color: #fc3c44; }
.youtube { background: rgba(255,0,0,0.15); color: #ff0000; }
.platform-card-info h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; color: var(--cream); }
.platform-card-info p { font-size: 0.82rem; color: var(--text-dim); }
.platform-card-arrow { margin-left: auto; color: var(--text-dim); font-size: 1.2rem; transition: transform var(--transition); }
.platform-card:hover .platform-card-arrow { color: var(--amber); transform: translateX(4px); }

/* ===== VIDEO ===== */
.video-section { padding: 4rem 2.5rem 6rem; background: var(--bg2); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-cta { text-align: center; margin-top: 2rem; }

/* ===== ABOUT ===== */
.about-section { padding: 6rem 2.5rem; background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; }
.about-text .eyebrow { margin-bottom: 0.75rem; }
.about-text p { color: var(--cream-dim); margin-bottom: 1.2rem; font-size: 0.95rem; }
.inline-quote {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--amber-lt);
  padding: 1.2rem 0 1.2rem 1.5rem;
  border-left: 2px solid var(--amber);
  margin: 1.5rem 0;
}
.about-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ===== GALLERY ===== */
.gallery-section { padding: 4rem 0 0; }
.gallery-section .container { padding: 0 2.5rem; margin-bottom: 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item-tall { aspect-ratio: 3/4; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== CONNECT ===== */
.connect-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; }
.connect-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.connect-card:hover { background: var(--surface2); border-color: var(--amber); transform: translateX(4px); }
.connect-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.insta { background: rgba(225,48,108,0.15); color: #e1306c; }
.fb { background: rgba(66,103,178,0.15); color: #4267b2; }
.spot { background: rgba(30,215,96,0.15); color: #1ed760; }
.appl { background: rgba(252,60,68,0.15); color: #fc3c44; }
.yt { background: rgba(255,0,0,0.15); color: #ff0000; }
.connect-info h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--cream); }
.connect-info p { font-size: 0.8rem; color: var(--text-dim); }
.connect-arrow { margin-left: auto; color: var(--text-dim); transition: all var(--transition); }
.connect-card:hover .connect-arrow { color: var(--amber); transform: translateX(4px); }
.booking-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.booking-callout h3 { margin-bottom: 0.75rem; }
.booking-callout p { color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 1.5rem; }

/* ===== SUPPORT / TIP ===== */
.tip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
.tip-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,150,42,0.1); }
.tip-card-inner { padding: 2.5rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
.tip-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.venmo-icon { background: rgba(0,136,243,0.15); color: #0088f3; }
.cash-icon { background: rgba(0,212,60,0.15); color: #00d43c; }
.tip-info h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 500; color: var(--cream); }
.tip-handle { font-size: 1rem; color: var(--amber); margin: 0.3rem 0; }
.tip-action { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.tip-card:hover .tip-action { color: var(--amber); }
.support-note {
  background: var(--surface);
  border-left: 2px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2rem 2rem 2.5rem;
}
.support-note p { color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 1rem; }
.support-note strong { color: var(--cream); }
.support-share-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 4rem 2.5rem 2rem;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-loc { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2rem; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-nav a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); transition: color var(--transition); }
.footer-nav a:hover { color: var(--amber); }
.footer-copy { font-size: 0.72rem; color: var(--text-dim); }

/* Gooseless credit */
.footer-credit { margin-top: 1rem; }
.gooseless-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.gooseless-tag:hover { color: rgba(255,255,255,0.65); }
.gooseless-star {
  color: rgba(255,255,255,0.2);
  transition: color 0.3s ease;
}
.gooseless-tag:hover .gooseless-star { color: rgba(255,255,255,0.4); }
.gooseless-name {
  background: linear-gradient(to right, #f59e0b, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,11,9,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: none; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
  .nav-links a.nav-cta {
    margin: 0.5rem 1.5rem;
    text-align: center;
    border-radius: var(--radius);
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-content { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 300px; }
  .split-text { padding: 3rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-tall { aspect-ratio: 4/3; }
  .tip-cards { grid-template-columns: 1fr; }
  .content-section { padding: 4rem 1.25rem; }
  .about-section { padding: 4rem 1.25rem; }
  .page-header { padding: 0 1.25rem 2.5rem; }
  .listen-cta { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .vibe-inner .dot { display: none; }
  .vibe-inner { flex-direction: column; gap: 0.4rem; }
}
