/* ===== ROOT & GLOBAL ===== */

:root {
  --bg-main: #050806;
  --bg-surface: #111712;
  --bg-soft: #18221a;
  --ink-main: #f8f5ec;
  --ink-muted: #b4b0a2;
  --accent-sun: #f2a451;    /* warm orange */
  --accent-leaf: #3fa585;   /* green */
  --accent-clay: #d9744b;   /* terracotta */
  --border-soft: #293528;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.78);

  --exp-deep: #070a08;
  --exp-leaf: rgba(63,165,133,.22);
  --exp-sun: rgba(242,164,81,.24);
  --exp-amber: rgba(217,116,75,.18);
  --exp-white: rgba(255,255,255,.10);

  --glass: rgba(12,16,12,.72);
  --glass-2: rgba(12,16,12,.52);
  --stroke: rgba(255,255,255,.08);
  --stroke-2: rgba(255,255,255,.12);

  /* scroll-driven vars (JS updates these) */
  --shade: 0;
  --zoom: 1;
  --titleLift: 0px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, #263728 0, transparent 55%),
    radial-gradient(circle at bottom right, #33251d 0, transparent 60%),
    #050806;
  color: var(--ink-main);
  position: relative;
  overflow-x: hidden;
}

/* PAGE WRAP */

.page {
  min-height: 100vh;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 20px 40px;
  position: relative;
  z-index: 1;
}

/* ===== EXPERIENCE LAYER (cinematic background, no images) ===== */

.experience{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.exp-bg{
  position: absolute;
  inset: 0;
  transform: scale(var(--zoom));
  transform-origin: center;
  transition: transform .06s linear;
  background:
    radial-gradient(circle at 18% 12%, var(--exp-sun), transparent 42%),
    radial-gradient(circle at 78% 22%, var(--exp-leaf), transparent 48%),
    radial-gradient(circle at 55% 85%, var(--exp-amber), transparent 55%),
    linear-gradient(135deg, rgba(10,18,12,.95), rgba(5,5,6,.96));
  filter: saturate(1.1) contrast(1.05);
}

.exp-glow{
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 45%),
    radial-gradient(circle at 0% 60%, rgba(63,165,133,.06), transparent 55%),
    radial-gradient(circle at 100% 70%, rgba(242,164,81,.05), transparent 55%);
  mix-blend-mode: screen;
  opacity: .9;
  filter: blur(10px);
  animation: expPulse 7.6s ease-in-out infinite;
  will-change: opacity, transform;
}

.exp-shade{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.88);
  opacity: var(--shade);
  transition: opacity .06s linear;
}

.experience::before{
  content:"";
  position:absolute;
  inset:-6%;
  background: radial-gradient(120% 90% at 50% 18%, rgba(0,0,0,0) 38%, rgba(0,0,0,.42) 72%, rgba(0,0,0,.78) 100%);
  opacity: .9;
}

.experience::after{
  content:"";
  position:absolute;
  inset:-30%;
  opacity:.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  transform: rotate(8deg);
}

.exp-arrow{
  position:absolute;
  left:50%;
  bottom:18px;
  transform: translateX(-50%);
  opacity:.9;
  animation: expBounce 2.6s infinite cubic-bezier(0.175,0.885,0.32,1.275);
  transition: opacity .35s ease, transform .35s ease;
}
@keyframes expBounce{
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(-16px); }
}

@keyframes expPulse{
  0%,100%{ opacity: .86; transform: translate3d(0,0,0) scale(1); }
  50%{ opacity: 1; transform: translate3d(0,-1.1%,0) scale(1.01); }
}

.experience.is-scrolled .exp-arrow{
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}

/* Avoid double arrows: the real cue lives in the hero */
.exp-arrow{ display: none; }

/* ===== NAV ===== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 0;
  background: rgba(10,14,10,.35);
  backdrop-filter: blur(10px) saturate(120%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 40px));
  z-index: 20;
  gap: 18px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav.is-scrolled{
  background: rgba(10,14,10,.72);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-name {
  font-family: "Fraunces", system-ui, serif;
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
}

.template-label {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-sun), var(--accent-leaf));
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--ink-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  background: rgba(17, 23, 18, 0.9);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-social:hover {
  border-color: var(--accent-sun);
  color: var(--ink-main);
  transform: translateY(-1px);
}

.nav-social-ig {
  background: radial-gradient(circle at top left, #f58529, #dd2a7b 50%, #8134af 80%, #515bd4);
}

.nav-social-sc {
  background: linear-gradient(135deg, #ff7700, #ff5500);
}

.nav-social-tw {
  background: #111;
}

.nav-social-yt {
  background: #ff0000;
}

.nav-social-ig,
.nav-social-sc,
.nav-social-tw,
.nav-social-yt {
  color: #f8f5ec;
}

.nav-cta-btn {
  white-space: nowrap;
}

/* ===== BUTTONS ===== */

.btn-primary {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  padding: 0.6em 1.5em;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-sun), var(--accent-clay));
  color: #311407;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 20px 50px rgba(0, 0, 0, 0.9);
}

.btn-secondary {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--ink-main);
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 10px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-secondary:hover {
  border-color: rgba(63, 165, 133, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

/* ===== SECTION BASE ===== */

.section {
  padding: clamp(32px, 4.5vw, 68px) 0;
  position: relative;
  z-index: 0;
}

.section::before{
  content:"";
  position:absolute;
  left:-16px; right:-16px;
  top: 10px; bottom: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border: 1px solid var(--stroke);
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,0,0,.2) inset;
  opacity: .6;
  z-index: -1;
}

/* ===== REVEALS ===== */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
}

.reveal.is-visible.delay-1{ transition-delay: .08s; }
.reveal.is-visible.delay-2{ transition-delay: .16s; }
.reveal.is-visible.delay-3{ transition-delay: .24s; }

/* ===== BANNER HERO (HELLO-style, but GROOVE) ===== */

.banner-hero {
  width: 100%;
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 110px; /* keeps content clear of the navbar */
  box-sizing: border-box;
}

.banner-hero::before{
  content:"";
  position:absolute;
  width:min(760px, 92vw);
  height:min(760px, 92vw);
  left:50%;
  top:42%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(242,164,81,.16), transparent 60%);
  filter: blur(10px);
  opacity: .95;
  z-index: 0;
  animation: heroBreath 4.6s ease-in-out infinite;
}

@keyframes heroBreath{
  0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:.85; }
  50%{ transform: translate(-50%,-50%) scale(1.03); opacity:1; }
}

.banner-inner {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.scroll-cue{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 1;
  transition: opacity .2s ease;

  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  appearance: none;

  width: auto;
  height: auto;

  display: grid;
  place-items: center;
  line-height: 0;

  color: rgba(255,255,255,0.72);
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.scroll-cue svg{
  display: block;
  width: 54px;
  height: 30px;
}

.scroll-cue:hover{
  color: rgba(255,255,255,0.95);
}

.scroll-cue:focus,
.scroll-cue:focus-visible{
  outline: none;
}

@keyframes cueBounce{
  0%,100%{
    transform: translateX(-50%) translateY(0);
  }
  50%{
    transform: translateX(-50%) translateY(-14px);
  }
}

.scroll-cue.is-hidden{
  opacity: 0;
  pointer-events: none;
}

#start, #playlist, #about, #contact{
  scroll-margin-top: 110px;
}

/* scroll-reactive title drift (GROOVE + hero heading) */
.banner-inner,
.hero-inner,
.hero-title{
  transform: translateY(calc(var(--titleLift) * -1));
  transition: transform .06s linear;
  will-change: transform;
}

.banner-title {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
  margin: 0 0 10px;
  padding: 0;
}

.banner-title li {
  overflow: hidden;
}

.banner-title li span {
  display: block;
  font-family: "Fraunces", system-ui, serif;
  font-size: clamp(72px, 18vw, 210px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--accent-sun);
  text-transform: uppercase;
  transform: translateY(110%);
  opacity: 0;
}

.banner-title li:nth-child(2) span {
  animation-delay: 0.05s;
}
.banner-title li:nth-child(3) span {
  animation-delay: 0.1s;
}
.banner-title li:nth-child(4) span {
  animation-delay: 0.15s;
}
.banner-title li:nth-child(5) span {
  animation-delay: 0.2s;
}
.banner-title li:nth-child(6) span {
  animation-delay: 0.25s;
}

.banner-tagline {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(0.9rem, 2.4vw, 1.3rem);
  font-weight: 400;
  text-align: center;
  color: var(--ink-main);
  margin: 0;
}

.banner-tagline span {
  display: block;
  overflow: hidden;
  position: relative;
  color: transparent;
  transform: translateY(120%);
  opacity: 0;
}

.banner-tagline span::before {
  content: attr(data-text);
  display: block;
  color: var(--ink-main);
}

.banner-tagline span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82em;
}

.banner-tagline span:first-child::before{
  color: var(--ink-muted);
}

.banner-tagline span:last-child {
  margin-top: 4px;
}

.banner-tagline span:nth-child(1) {
  animation-delay: 0.4s;
}
.banner-tagline span:nth-child(2) {
  animation-delay: 0.55s;
}

/* ===== INTRO STATES ===== */
body[data-ready="false"] .banner-title li span{
  transform: translateY(120%);
  opacity: 0.0;
}

body[data-ready="false"] .banner-tagline span{
  transform: translateY(140%);
  opacity: 0;
}

body[data-ready="false"] .hero-left{
  opacity: 0;
  transform: translateY(10px);
}

body[data-ready="false"] .hero-actions{
  opacity: 0;
  transform: translateY(10px);
}

body[data-ready="false"] .grove-card{
  opacity: 0;
  transform: translateY(12px) scale(.98);
  filter: saturate(.95);
}

/* once ready */
body[data-ready="true"] .banner-title li span{
  animation: bannerSlideUp 0.85s ease-out forwards;
}
body[data-ready="true"] .banner-tagline span{
  animation: bannerFadeUp 0.9s ease-out forwards;
}
body[data-ready="true"] .hero-left,
body[data-ready="true"] .hero-actions,
body[data-ready="true"] .grove-card{
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  transition-delay: .35s;
}
body[data-ready="true"] .hero-actions{ transition-delay: .48s; }
body[data-ready="true"] .grove-card{ transition-delay: .55s; }

@keyframes bannerSlideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bannerFadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== HERO ===== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

/* Hero left */

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 23, 18, 0.9);
  color: var(--ink-muted);
}

.hero-title {
  font-family: "Fraunces", system-ui, serif;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 0.98rem;
  color: var(--ink-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* Hero right: sunset / grove illustration */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-demo-card{
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-demo-card::after{
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 25%,
    rgba(242,164,81,.26),
    rgba(28,140,120,.12) 45%,
    rgba(0,0,0,0) 70%);
  filter: blur(20px);
  pointer-events: none;
  opacity: .9;
}

.hero-demo-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  opacity: .96;
}

.hero-demo-caption{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.86);
}

.grove-card {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #f2a451, #c1593a 40%, #111712 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 16px 14px 18px;
  position: relative;
  overflow: hidden;
}

/* Sun */

.grove-sun {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffe8ba 0, #f2a451 35%, #c1593a 100%);
  box-shadow: 0 0 60px rgba(242, 164, 81, 0.9);
}

/* Horizon */

.grove-horizon {
  position: absolute;
  bottom: 62px;
  left: -20%;
  width: 140%;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(10, 25, 14, 0.9), #050806);
}

/* Palms */

.grove-palms {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 34px;
}

.palm {
  width: 24px;
  height: 72px;
  background: linear-gradient(180deg, #243f2a, #050806);
  border-radius: 999px;
  position: relative;
}

.palm::before,
.palm::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 18px;
  border-radius: 999px;
  background: #345f3d;
}

.palm::before {
  top: 8px;
  left: -10px;
}

.palm::after {
  top: 20px;
  left: -6px;
}

.palm-right {
  transform: scaleX(-1);
}

/* Waves */

.grove-wave {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 10px;
  border-radius: 999px;
  background: rgba(9, 26, 15, 0.9);
}

.grove-wave-1 {
  bottom: 46px;
}

.grove-wave-2 {
  bottom: 34px;
  opacity: 0.85;
}

.grove-wave-3 {
  bottom: 22px;
  opacity: 0.7;
}

.hero-right-caption {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

/* ===== SECTION HEADERS ===== */

.section-header {
  max-width: 640px;
  margin-bottom: 22px;
}

.section-title {
  font-family: "Fraunces", system-ui, serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.section-subtitle {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-muted);
}

/* ===== PLAYLIST SECTION ===== */

.section-playlist {
  padding-top: 40px;
}

.groove-player{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10,16,14,.50);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
}

.gp-left, .gp-right{
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.gp-left{ padding: 16px; }
.gp-head{ margin-bottom: 14px; }
.gp-kicker{
  display: inline-block;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: .8;
}
.gp-title{
  margin: 6px 0 6px;
  font-family: var(--font-title);
  font-size: 22px;
}
.gp-sub{ margin: 0; opacity: .82; line-height: 1.4; }

.gp-list{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.gp-track{
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gp-track:hover{
  transform: translateY(-1px);
  border-color: rgba(242,164,81,.25);
  background: rgba(0,0,0,.30);
}

.gp-track.is-active{
  border-color: rgba(242,164,81,.55);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(242,164,81,.12) inset;
}

.gp-num{
  font-family: var(--font-title);
  font-size: 18px;
  opacity: .85;
}

.gp-meta{ display: grid; gap: 2px; }
.gp-name{
  font-weight: 700;
  letter-spacing: .02em;
}
.gp-artist{
  font-size: 12px;
  opacity: .75;
}

.gp-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(242,164,81,.10);
  color: rgba(242,164,81,.95);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-right{ padding: 16px; }

.gp-now{
  display: grid;
  gap: 14px;
}

.gp-cover-wrap{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}

.gp-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  transform: scale(1.02);
}

.gp-glow{
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 30%,
    rgba(242,164,81,.35),
    rgba(28,140,120,.20) 45%,
    rgba(0,0,0,.0) 70%);
  filter: blur(22px);
  pointer-events: none;
}

.gp-now-title{
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.1;
}
.gp-now-artist{
  opacity: .78;
  margin-top: 4px;
}

.gp-controls{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.gp-btn{
  width: 54px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(242,164,81,.16);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.gp-btn:hover{
  transform: translateY(-1px);
  background: rgba(242,164,81,.22);
  border-color: rgba(242,164,81,.30);
}

.gp-icon{
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

.gp-time{
  font-size: 12px;
  opacity: .85;
  letter-spacing: .06em;
}

.gp-sep{ opacity: .55; margin: 0 6px; }

.gp-bar{
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  cursor: pointer;
}

.gp-bar-fill{
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(242,164,81,.85), rgba(28,140,120,.65));
}

.gp-bar-knob{
  position: absolute;
  top: 50%;
  left: 0%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  pointer-events: none;
}

@media (max-width: 860px){
  .groove-player{
    grid-template-columns: 1fr;
  }
  .gp-cover-wrap{ height: 200px; }
}

.playlist-shell {
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(120%);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid var(--stroke-2);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.playlist-body{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px){
  .playlist-body{ grid-template-columns: 1fr; }
}

.playlist-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.playlist-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-sun);
}

.playlist-note {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.track-list {
  display: grid;
  gap: 10px;
}

.playlist-helper{
  margin: 12px 4px 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  opacity: 0.9;
}

.track-row {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 46px 1fr auto;
  gap: 12px;
  align-items: center;

  padding: 14px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.demo-row{
  cursor: default;
  pointer-events: none;
}

.track-row:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

.track-row.is-active{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,200,120,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.track-number {
  font-family: "Fraunces", system-ui, serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.track-thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.track-text{ display: grid; gap: 2px; }
.track-title{ font-weight: 700; }
.track-meta{ opacity: 0.75; font-size: 0.9em; }

.track-chip{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
  border: 1px solid rgba(255,200,120,0.22);
  background: rgba(255,200,120,0.08);
}

/* Player panel */
.player-panel{
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  display: grid;
  gap: 14px;
}

.player-label{
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}

.player-cover{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

.player-cover img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block; /* prevents weird baseline gaps */
}

.player-info h3{ margin: 0; }
.player-info p{ margin: 0; opacity: 0.75; }

.player-controls{
  display: flex;
  gap: 10px;
  align-items: center;
}

.ctl{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: inherit;
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.ctl:disabled,
.ctl[aria-disabled="true"]{
  opacity: 0.45;
  cursor: not-allowed;
  filter: saturate(0.85);
}

.ctl.primary{
  padding: 10px 14px;
  border-color: rgba(255,200,120,0.22);
  background: rgba(255,200,120,0.10);
}

.player-progress{
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
  align-items: center;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

#seek{
  width: 100%;
  accent-color: rgba(255,200,120,0.8);
}

#seek:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}

/* ===== FEATURES ===== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--glass-2);
  backdrop-filter: blur(12px) saturate(120%);
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 16px 40px rgba(0,0,0,.40);
}

.feature-title {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.feature-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ===== DATES / SESSIONS ===== */

.dates-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.date-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--glass-2);
  backdrop-filter: blur(12px) saturate(120%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
}

.date-block {
  width: 44px;
  height: 56px;
  border-radius: 12px;
  background: radial-gradient(circle at top, #f2a451, #c1593a 65%, #3b2115 100%);
  color: #311407;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", system-ui, serif;
}

.date-day {
  font-size: 1.1rem;
  font-weight: 700;
}

.date-month {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.date-info {
  display: flex;
  flex-direction: column;
}

.date-title {
  margin: 0 0 2px;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.date-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* ===== PROJECT GRID ===== */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--glass-2);
  backdrop-filter: blur(14px) saturate(120%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.project-thumb {
  height: 110px;
  position: relative;
}

/* Different moods per project */

.project-thumb-a {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("../../assets/img/demo-image-3.webp");
  background-size: cover;
  background-position: center;
}

.project-thumb-b {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("../../assets/img/demo-image-4.webp");
  background-size: cover;
  background-position: center;
}

.project-thumb-c {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("../../assets/img/demo-image-5.webp");
  background-size: cover;
  background-position: center;
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.2;
  mix-blend-mode: soft-light;
}

.project-body {
  padding: 10px 12px 14px;
}

.project-title {
  margin: 0 0 4px;
  font-family: "Fraunces", system-ui, serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-caption{
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}

.project-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* ===== SPLIT ABOUT ===== */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 24px;
}

.body-text {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* ===== CTA ===== */

.section-cta {
  padding: 40px 0 32px;
}

.cta-inner {
  background: radial-gradient(circle at top left, #253628, #1a261d 60%, #0b120c 100%);
  border-radius: 20px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(12px) saturate(120%);
}

.cta-actions {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-note {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* ===== FOOTER ===== */

.footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}

/* shared hover life (cards + shells) */
.card, .feature-card, .project-card, .playlist-shell, .date-card{
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  border-color: rgba(255,255,255,.07);
}

@media (hover:hover) and (pointer:fine){
  .card:hover, .feature-card:hover, .project-card:hover, .playlist-shell:hover, .date-card:hover{
    transform: translateY(-3px);
    border-color: rgba(242,164,81,.22);
    box-shadow: 0 22px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(242,164,81,.10) inset;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .nav {
    gap: 10px;
  }

  .nav-links {
    display: none; /* optional: add mobile nav later */
  }

  .nav-right {
    margin-left: auto;
  }

  .banner-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100svh;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .hero-demo-img{ height: 240px; }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dates-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px 14px 32px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .feature-grid,
  .dates-list,
  .project-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .playlist-shell {
    padding: 14px 12px;
  }

  .nav-socials {
    gap: 4px;
  }

  .nav-social {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }

  .nav-cta-btn {
    padding-inline: 1.1em;
  }

  .banner-hero{ padding-top: 110px; }
  .scroll-cue{ bottom: 18px; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .experience::after{ opacity: 0.03; }
}

/* EV nav badge (scoped) */
.ev-navhome{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ev-navhome__badge{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .4px;

  background: var(--ev-brand-purple-soft);
  border: 1px solid var(--ev-brand-purple-border);
  color: var(--ev-brand-purple);
  box-shadow: 0 0 0 transparent;
}

.ev-navhome:hover .ev-navhome__badge{
  background: var(--ev-brand-purple-soft);
  border-color: var(--ev-brand-purple-border);
  box-shadow: 0 0 24px rgba(164, 155, 255, 0.35);
}

:root{
  --ev-brand-purple: #a49bff;
  --ev-brand-purple-soft: rgba(164, 155, 255, 0.16);
  --ev-brand-purple-border: rgba(164, 155, 255, 0.35);
}

.ev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1rem 1.5rem;
  margin-top: 4rem;

  font-size: 0.85rem;
  opacity: 0.8;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #7c4dff;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  text-decoration: none;
}

.ev-footer__center {
  text-align: center;
  opacity: 0.7;
}

.ev-footer__cta {
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.ev-footer__cta:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .ev-footer {
    flex-direction: column;
    text-align: center;
  }
}

.ev-copyright {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.demo-safe-link { cursor: pointer; }

.btn-template-primary {
  /* inherits base primary button styling */
}

.btn-template-secondary {
  opacity: 0.85;
}

.btn-template-secondary:hover {
  opacity: 1;
}


/* Footer layout */
.site-footer {
  margin-top: 60px;
  padding: 20px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  color: var(--muted, var(--ink-muted, rgba(255, 255, 255, 0.78)));
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-left {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-right a:hover {
  color: var(--text, var(--ink-main, #ffffff));
}

@media (max-width: 720px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

