:root {
    --bordeaux: #8B1A47; --bordeaux-light: #A8235A; --bordeaux-dim: rgba(139,26,71,0.13);
    --bordeaux-border: rgba(139,26,71,0.28);
    --amber: #F0A830; --amber-light: #F5C060; --amber-dim: rgba(240,168,48,0.13);
    --amber-border: rgba(240,168,48,0.3);
    --dark: #100B0E; --dark-2: #180F13; --dark-3: #20141A; --dark-4: #281820;
    --cream: #F5EDD8; --cream-dim: rgba(245,237,216,0.72); --cream-muted: rgba(245,237,216,0.42);
    --white: #FDFAF4;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background-color: var(--dark); color: var(--cream); font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.7; overflow-x: hidden; }
  body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); background-size: 200px 200px; pointer-events: none; z-index: 0; opacity: 0.5; }
  section, nav, footer { position: relative; z-index: 1; }

  /* NAV */
  nav { display: flex; justify-content: space-between; align-items: stretch; border-bottom: 1px solid var(--bordeaux-border); }
  .nav-logo-wrap { display: flex; align-items: center; background: var(--dark); padding: 14px 36px; border-right: 1px solid var(--bordeaux-border); text-decoration: none; flex-shrink: 0; transition: opacity 0.25s; }
  .nav-logo-wrap:hover { opacity: 0.75; }
  .nav-logo-wrap img {
    height: 60px;
    width: auto;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; padding: 0 24px; }
  .nav-link { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-muted); text-decoration: none; padding: 8px 12px; transition: color 0.2s; }
  .nav-link:hover, .nav-link.active { color: var(--amber); }
  .nav-right { display: flex; align-items: center; padding: 0 32px; }
  .nav-cta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); text-decoration: none; border: 1px solid var(--amber-border); padding: 10px 22px; transition: all 0.3s ease; white-space: nowrap; }
  .nav-cta:hover { background: var(--amber-dim); border-color: var(--amber); }

  /* HERO */
  .hero { padding: 100px 32px 80px; text-align: center; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(139,26,71,0.07) 0%, transparent 70%); pointer-events: none; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; animation: fadeUp 1s ease both; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 0.95; color: var(--white); animation: fadeUp 1s ease 0.15s both; }
  .hero-title em { font-style: italic; color: var(--amber-light); }
  .hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-style: italic; color: var(--cream-dim); max-width: 600px; margin: 24px auto 48px; animation: fadeUp 1s ease 0.3s both; }

  /* BUTTONS */
  .btn-spotify { display: inline-flex; align-items: center; gap: 12px; background: #1DB954; color: #000; padding: 18px 40px; font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; animation: fadeUp 1s ease 0.45s both; }
  .btn-spotify:hover { background: #1ed760; }
  .btn-spotify svg { width: 22px; height: 22px; }
  .btn-primary { display: inline-block; background: var(--bordeaux); color: var(--white); padding: 18px 48px; font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; position: relative; overflow: hidden; }
  .btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--bordeaux-light); transform: translateX(-100%); transition: transform 0.4s ease; }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  /* SECTIONS */
  .section { max-width: 860px; margin: 0 auto; padding: 80px 32px; }
  .section-wide { max-width: 1100px; margin: 0 auto; padding: 80px 32px; }
  .section-label { font-size: 0.63rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 32px; }
  .section-title em { font-style: italic; color: var(--amber-light); }
  .section-body { font-size: 1.05rem; color: var(--cream-dim); line-height: 1.85; }
  .section-body p { margin-bottom: 20px; }
  .dark-section { background: var(--dark-2); border-top: 1px solid var(--bordeaux-border); border-bottom: 1px solid var(--bordeaux-border); }

  /* THEMEN GRID */
  .topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; margin-top: 48px; background: var(--bordeaux-border); }
  .topic-card { background: var(--dark-2); padding: 32px 28px; transition: background 0.3s; }
  .topic-card:hover { background: var(--dark-3); }
  .topic-icon { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: rgba(240,168,48,0.3); line-height: 1; margin-bottom: 12px; }
  .topic-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--amber-light); margin-bottom: 8px; }
  .topic-desc { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.65; }

  /* EMBED PLACEHOLDER */
  .spotify-embed { background: var(--dark-3); border: 1px solid var(--bordeaux-border); padding: 48px; text-align: center; margin-top: 48px; }
  .spotify-embed p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--cream-dim); margin-bottom: 28px; }

  /* QUOTE */
  .quote-box { background: var(--dark-3); border: 1px solid var(--bordeaux-border); padding: 52px 48px; margin-top: 48px; position: relative; text-align: center; }
  .quote-box::before { content: '?'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--dark-3); padding: 0 16px; color: var(--amber); font-size: 1.1rem; }
  .quote-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--cream); line-height: 1.7; }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--bordeaux-border);
    padding: 48px 32px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-logo img {
    height: 80px;
    width: auto;
    display: block;
    opacity: 1;
    mix-blend-mode: normal;
  }
  .footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--cream-muted); margin-bottom: 32px; }
  .footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .footer-links a { color: var(--cream-muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--amber); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    nav { flex-wrap: wrap; }
    .nav-links { order: 3; width: 100%; padding: 12px 16px; border-top: 1px solid var(--bordeaux-border); justify-content: center; flex-wrap: wrap; }
    .nav-right { padding: 0 20px; }
  }
