/* MAELO — brand palette from the discovery workbook:
   deep muted red, royal blue, neon, shiny metallic, on near-black. */
:root{
  --ink:#08060a;
  --ink-2:#0f0c14;
  --paper:#f2ecec;
  --muted:#a09aa6;
  --red:#8e1c26;        /* deep muted red */
  --red-hot:#c4303c;
  --blue:#1b30a8;       /* royal blue */
  --neon:#ff5c7a;       /* neon accent */
  --cream:#fdf6e7;      /* warm white for copy sitting on a photo */
  --metal:linear-gradient(100deg,#cfc6b4,#fff8e6 40%,#9c8f77 70%,#e9dfc8);
  --pad:clamp(20px,5vw,64px);
  --tabh:64px;          /* mobile tab bar height */
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  /* One gradient across the whole document instead of per-section panels —
     the tone drifts, but nothing ever butts up against anything. */
  background:linear-gradient(to bottom,
    var(--ink)   0%,
    var(--ink)   20%,
    var(--ink-2) 44%,
    var(--ink)   70%,
    var(--ink-2) 100%);
  color:var(--paper);
  font:400 17px/1.6 Inter,system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{margin:0;font-family:Anton,Impact,sans-serif;font-weight:400;letter-spacing:.01em;line-height:.92}

/* iOS-safe scroll offset so anchors don't hide under the sticky header */
section{scroll-margin-top:64px}

.skip{position:absolute;left:-9999px}
.skip:focus{left:12px;top:12px;z-index:100;background:var(--neon);color:#000;padding:10px 14px;border-radius:0}

/* ── top bar ───────────────────────────────────────────── */
.topbar{
  position:fixed;inset:0 0 auto 0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  padding:12px var(--pad);
  padding-top:calc(12px + env(safe-area-inset-top));
  background:transparent;
  transition:background .25s ease;
  /* The bar is a full-width fixed strip sitting right on top of the hero's
     social icons, so its empty area was swallowing their clicks. Let pointer
     events fall through the bar itself; its own links opt back in below. */
  pointer-events:none;
}
.topbar a{pointer-events:auto}
.topbar.stuck{
  /* solid rather than backdrop-filter: a live blur pass behind a bar that is
     always on screen re-renders every scroll frame, and on a near-black palette
     it buys almost nothing visually. */
  background:rgba(9,7,12,.94);
}
.mark{
  display:flex;align-items:center;min-height:44px;padding-right:12px;
}
/* Outline artwork loses its counters below roughly 26px, so the bar mark is set
   by height rather than the old 22px type size, and the bar has the room. */
.mark img{display:block;width:auto;height:30px}
/* on the hero the giant wordmark already says MAELO — don't collide with the socials */
.topbar:not(.stuck) .mark{opacity:0;pointer-events:none}
.mark{transition:opacity .25s ease}

.topnav{display:none}

/* ── hero ──────────────────────────────────────────────── */
/* Amma-style: photo owns the whole screen, chrome floats on top of it. */
.hero{
  /* the hero art is a transparent cutout, so it composites straight onto the page
     gradient — no background of its own, and no edge to blend. */
  position:relative;min-height:100svh;
  display:flex;flex-direction:column;justify-content:space-between;
  overflow:hidden;text-align:center;
}
/* take the whole <picture> subtree out of the flex flow — display:contents would
   promote the <source> element to a flex item and shove the chrome down-screen */
.hero>picture{position:absolute;inset:0;overflow:hidden}
/* 118% = just enough overhang for app.js to slide it without exposing an edge.
   Any taller and object-fit:cover zooms the crop in noticeably. */
.parallax-img{
  width:100%;height:118%;
  object-fit:cover;
  will-change:transform;
}
/* contain so the whole figure is visible. Centred, not bottom-anchored: the box
   is 118% tall for parallax headroom, so anchoring to its bottom would push him
   below the fold. */
.hero-img{object-fit:contain;object-position:50% 50%;transform-origin:50% 50%}
/* just enough vignette to guarantee contrast — the photo stays the star */
.hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(to bottom,rgba(8,6,10,.45) 0%,transparent 20%),
    linear-gradient(to top,rgba(8,6,10,.55) 0%,rgba(8,6,10,.25) 14%,transparent 34%);
}
.hero-top,.hero-bottom{position:relative;z-index:2;padding:0 var(--pad)}
.hero-top{padding-top:calc(18px + env(safe-area-inset-top))}
.hero-bottom{padding-bottom:calc(var(--tabh) + 30px)}

.hero-socials{
  list-style:none;display:flex;justify-content:center;gap:6px;margin:0 0 22px;padding:0;
}
.hero-socials a{
  display:grid;place-items:center;width:46px;height:46px;color:var(--paper);
  filter:drop-shadow(0 1px 6px rgba(0,0,0,.6));transition:color .2s;
}
.hero-socials a:hover{color:var(--neon)}
.hero-socials svg{
  width:24px;height:24px;fill:none;stroke:currentColor;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}

/* The wordmark is supplied artwork, not type. The source file is cream-on-alpha
   at 705x333; it is never upscaled past its native width, hence the max-width
   cap below. If a larger export ever lands, raise the cap to match it. */
.wordmark{
  line-height:0;                       /* an <img> in an h1 otherwise sits on a text baseline */
  filter:drop-shadow(0 3px 10px rgba(0,0,0,.9));
}
.wordmark img{
  display:block;margin:0 auto;
  width:min(78vw,560px);height:auto;   /* height:auto or the width/height attrs win */
}
.tagline{
  margin:-4px 0 0;font-size:clamp(12px,3.4vw,17px);
  letter-spacing:.28em;text-transform:uppercase;color:#e2d9d9;
  filter:drop-shadow(0 1px 8px rgba(0,0,0,.8));
}
.tagline span{color:var(--neon)}
.hero-cta{display:flex;justify-content:center;gap:10px}
.hero-cta .btn{flex:0 1 auto;padding:0 clamp(14px,4.5vw,28px);font-size:clamp(13px,3.5vw,15px)}

/* ── buttons ───────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 24px;border-radius:0;
  font-size:15px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  transition:transform .15s ease,filter .15s ease,background .15s;
}
.btn:active{transform:scale(.96)}
.btn-primary{background:var(--red-hot);color:#fff;box-shadow:0 8px 26px -10px var(--red-hot)}
.btn-primary:hover{filter:brightness(1.12)}
.btn-ghost{border:1px solid rgba(255,255,255,.72);color:var(--paper);
  background:rgba(8,6,10,.26)}
.btn-ghost:hover{background:var(--paper);color:var(--ink)}
.btn-wide{display:flex;width:100%;margin-top:28px;border:1px solid rgba(255,255,255,.24)}
.btn-wide:hover{background:rgba(255,255,255,.08)}

/* ── sections ──────────────────────────────────────────── */
.sec{padding:64px var(--pad)}
.sec-title{
  font-size:clamp(38px,11vw,86px);margin-bottom:28px;
  color:transparent;-webkit-text-stroke:1.5px rgba(242,236,236,.85);
}
.sec-title::after{
  content:"";display:block;width:56px;height:4px;margin-top:14px;
  background:linear-gradient(90deg,var(--red-hot),var(--blue));
}

/* ── music (own player, no embeds) ─────────────────────── */
.player{display:grid;gap:20px}
.np-art{
  /* height:auto is load-bearing — the <img> width/height attributes act as a
     presentational height:600px, and aspect-ratio is ignored unless a dimension
     is auto, so without this the art renders 300x600. */
  width:100%;height:auto;max-width:300px;aspect-ratio:1;object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
}
.eyebrow{margin:0 0 6px;font-size:12px;letter-spacing:.24em;text-transform:uppercase;color:var(--neon)}
.np-title{font-size:clamp(26px,7vw,40px)}
.np-album{margin:6px 0 0;font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}

.np-bar{display:flex;align-items:center;gap:14px;margin-top:22px}
.np-play{
  flex:0 0 auto;width:56px;height:56px;padding:0;cursor:pointer;
  display:grid;place-items:center;
  background:var(--red-hot);border:0;color:#fff;
  transition:filter .15s ease,transform .1s ease;
}
.np-play:hover{filter:brightness(1.12)}
.np-play:active{transform:scale(.95)}
.np-play:focus-visible{outline:3px solid var(--neon);outline-offset:3px}
.np-play svg{width:26px;height:26px;fill:currentColor}
/* Toggle the transport icon off aria-pressed. The HTML `hidden` attribute does
   not apply to SVG children, so both glyphs painted on top of each other. */
.np-play .i-pause{display:none}
.np-play[aria-pressed="true"] .i-play{display:none}
.np-play[aria-pressed="true"] .i-pause{display:inline}

/* seek: same look in both engines, big enough to grab with a thumb */
.np-seek{
  flex:1 1 auto;min-width:0;height:44px;margin:0;padding:0;   /* thumb-sized hit area */
  background:none;-webkit-appearance:none;appearance:none;cursor:pointer;
}
.np-seek::-webkit-slider-runnable-track{height:4px;background:rgba(255,255,255,.22)}
.np-seek::-moz-range-track{height:4px;background:rgba(255,255,255,.22)}
.np-seek::-moz-range-progress{height:4px;background:var(--neon)}
.np-seek::-webkit-slider-thumb{
  -webkit-appearance:none;appearance:none;width:14px;height:14px;margin-top:-5px;
  background:var(--cream);border:0;
}
.np-seek::-moz-range-thumb{width:14px;height:14px;border:0;border-radius:0;background:var(--cream)}
.np-seek:focus-visible{outline:2px solid var(--neon);outline-offset:4px}
.np-time{flex:0 0 auto;font-size:13px;color:var(--muted);font-variant-numeric:tabular-nums}
.np-note{margin:14px 0 0;font-size:12px;letter-spacing:.06em;color:#7b7480}

.tracks{list-style:none;margin:34px 0 0;padding:0;border-top:1px solid rgba(255,255,255,.1)}
.track{
  display:flex;align-items:center;gap:16px;width:100%;
  padding:16px 4px;min-height:60px;
  background:none;border:0;border-bottom:1px solid rgba(255,255,255,.1);
  color:var(--paper);font:inherit;text-align:left;cursor:pointer;
  transition:background .15s ease;
}
.track:hover{background:rgba(255,255,255,.05)}
.track:focus-visible{outline:2px solid var(--neon);outline-offset:-2px}
.track-n{flex:0 0 20px;font-size:13px;color:var(--muted);font-variant-numeric:tabular-nums}
.track-name{flex:1 1 auto;min-width:0;font-size:16px;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.track-len{flex:0 0 auto;font-size:13px;color:var(--muted);font-variant-numeric:tabular-nums}
.track[aria-current="true"] .track-name{color:var(--neon);font-weight:700}
.track[aria-current="true"] .track-n::before{content:"▸ ";color:var(--neon)}

.dsps{list-style:none;display:flex;flex-wrap:wrap;gap:10px;margin:32px 0 0;padding:0}
.dsps a{
  display:flex;align-items:center;min-height:52px;padding:0 26px;
  border:1px solid rgba(255,255,255,.24);
  font-size:14px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  transition:background .15s ease,color .15s ease,border-color .15s ease;
}
.dsps a:hover{background:var(--cream);color:var(--ink);border-color:var(--cream)}

/* ── videos rail (vertical YouTube shorts) ────────────── */
.rail{
  display:flex;gap:14px;overflow-x:auto;list-style:none;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  margin:0 calc(var(--pad) * -1);padding:4px var(--pad) 14px;
  scrollbar-width:none;
}
.rail::-webkit-scrollbar{display:none}
.vid{flex:0 0 72%;scroll-snap-align:center;max-width:300px}
.vid iframe,.vid-btn{
  display:block;width:100%;aspect-ratio:9/16;
  border:1px solid rgba(255,255,255,.1);background:#120d18;
}
/* Facade: a thumbnail until you tap it, then app.js swaps in the real player.
   Five live YouTube iframes made the whole page scroll heavy. */
.vid-btn{position:relative;padding:0;cursor:pointer;overflow:hidden}
.vid-btn img{width:100%;height:100%;object-fit:cover}
.vid-play{
  position:absolute;left:50%;top:50%;translate:-50% -50%;
  width:62px;height:44px;border-radius:12px;background:rgba(190,20,26,.92);
  transition:transform .18s ease,background .18s ease;
}
.vid-play::after{
  content:"";position:absolute;left:50%;top:50%;translate:-42% -50%;
  border-style:solid;border-width:9px 0 9px 15px;border-color:transparent transparent transparent #fff;
}
.vid-btn:hover .vid-play{background:#ff0033;transform:scale(1.08)}
.vid-btn:focus-visible{outline:3px solid var(--neon);outline-offset:3px}
.vid-title{
  display:block;margin-top:10px;font-size:14px;letter-spacing:.03em;color:#d6cfd2;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.rail-hint{margin:2px 0 0;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--muted)}

/* ── story (full-bleed, same treatment as the hero) ───── */
.sec-full{
  position:relative;overflow:hidden;
  min-height:100svh;                    /* grows if the copy needs more room */
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:120px var(--pad) calc(var(--tabh) + 54px);
}
/* Fade the PHOTO out at the section edges rather than painting a matching colour
   over it. The body gradient is a different tone at every scroll position, so a
   hardcoded fade-to-var(--ink) left a visible step; masking has nothing to match. */
.sec-full>picture{
  position:absolute;inset:0;overflow:hidden;
  -webkit-mask-image:linear-gradient(to bottom,transparent 0,#000 11%,#000 87%,transparent 100%);
  mask-image:linear-gradient(to bottom,transparent 0,#000 11%,#000 87%,transparent 100%);
}
.sec-full>picture .parallax-img{object-position:50% 28%}
/* fades top and bottom so the photo never meets the page on a hard edge,
   and gives the copy something to sit on — this shot is much brighter than the hero */
.sec-full::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(to top,
    transparent 0%,
    rgba(8,6,10,.3) 13%,
    rgba(8,6,10,.32) 34%,
    rgba(8,6,10,.16) 58%,
    transparent 80%);
}
.sec-full-inner{position:relative;z-index:2;width:100%}

/* Copy sitting directly on a photo carries its own contrast instead of leaning
   on a heavy scrim: warm cream (picked from the string lights) + a tight dark
   halo. Keeps the photo bright and the text readable over both. */
.sec-full .prose{color:var(--cream)}
.sec-full .prose p{
  text-shadow:
    0 1px 2px rgba(6,4,8,.98),
    0 2px 8px rgba(6,4,8,.92),
    0 4px 24px rgba(6,4,8,.72);   /* soft pool under the text only, not the whole photo */
}
.sec-full .lede{font-weight:500}
.sec-full .prose p:not(.lede):not(.pull){color:#efe6d4}
.sec-full .pull{color:var(--cream)}
/* outlined type disappears over a busy photo — fill it here */
.sec-full .sec-title{
  color:var(--cream);-webkit-text-stroke:0;
  filter:drop-shadow(0 2px 4px rgba(6,4,8,.98)) drop-shadow(0 4px 18px rgba(6,4,8,.75));
}

.prose{margin-top:26px;max-width:62ch}
.lede{font-size:clamp(20px,4.6vw,26px);line-height:1.4;margin:0}
.prose p+p{margin-top:16px}
.prose p:not(.lede):not(.pull){color:#d6cfd2}
.pull{
  margin-top:28px;padding-left:18px;border-left:3px solid var(--red-hot);
  font-family:Anton,Impact,sans-serif;font-size:clamp(22px,6vw,34px);
  line-height:1.15;color:var(--paper);
}

/* ── connect ───────────────────────────────────────────── */
.signup label{display:block;font-size:16px;color:#d6cfd2;margin-bottom:14px;max-width:44ch}
.signup-row{display:flex;gap:10px;flex-wrap:wrap}
.signup input{
  flex:1 1 220px;min-height:52px;padding:0 18px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.2);
  border-radius:0;color:var(--paper);font-size:16px; /* 16px = no iOS zoom */
}
.signup input::placeholder{color:#8a8290}
.signup input:focus{outline:2px solid var(--neon);outline-offset:2px;border-color:transparent}
.signup button{
  min-height:52px;padding:0 30px;border:0;border-radius:0;
  background:var(--red-hot);color:#fff;cursor:pointer;
  font:700 15px/1 Inter,sans-serif;letter-spacing:.1em;text-transform:uppercase;
}
.signup button:active{transform:scale(.96)}
.form-msg{margin:12px 0 0;font-size:14px;min-height:20px;color:var(--neon)}

.socials{list-style:none;display:flex;flex-wrap:wrap;gap:10px;margin:36px 0 0;padding:0}
.socials a{
  display:flex;align-items:center;min-height:46px;padding:0 18px;
  border:1px solid rgba(255,255,255,.2);border-radius:0;
  font-size:14px;letter-spacing:.08em;
}
.socials a:hover{background:var(--blue);border-color:var(--blue)}
.booking{margin-top:26px;font-size:14px;color:var(--muted);letter-spacing:.06em}
.booking a{display:inline-flex;align-items:center;min-height:44px;padding:0 18px;margin-left:6px;
  border:1px solid rgba(255,255,255,.2);border-radius:0;color:var(--neon);
  font-size:14px;letter-spacing:.08em;text-transform:uppercase;text-decoration:none}
.booking a:hover{background:var(--neon);color:var(--ink);border-color:var(--neon)}

.foot{
  padding:26px var(--pad) calc(26px + var(--tabh) + env(safe-area-inset-bottom));
  font-size:12px;color:#6f6873;letter-spacing:.1em;text-transform:uppercase;
}

/* ── mobile tab bar ────────────────────────────────────── */
.tabbar{
  position:fixed;z-index:60;inset:auto 0 0 0;
  display:grid;grid-template-columns:repeat(4,1fr);
  height:calc(var(--tabh) + env(safe-area-inset-bottom));
  padding-bottom:env(safe-area-inset-bottom);
  background:rgba(11,8,14,.95);
  border-top:1px solid rgba(255,255,255,.06);
}
.tabbar a{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
  font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:#8f8894;
  -webkit-tap-highlight-color:transparent;transition:color .2s;
}
.tabbar svg{
  width:22px;height:22px;fill:none;stroke:currentColor;
  stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}
.tabbar a[aria-current="true"]{color:var(--neon)}
.tabbar a:active{color:var(--paper)}

/* ── desktop ───────────────────────────────────────────── */
@media (min-width:800px){
  :root{--tabh:0px}
  .tabbar{display:none}
  .topnav{display:flex;gap:30px}
  .topnav a{
    font-size:13px;letter-spacing:.16em;text-transform:uppercase;
    padding:8px 0;border-bottom:2px solid transparent;transition:border-color .2s,color .2s;
  }
  .topnav a:hover,.topnav a[aria-current="true"]{border-bottom-color:var(--neon);color:var(--neon)}
  .mark{font-size:26px}
  .hero-bottom{padding-bottom:56px}
  .hero-top{padding-top:26px}
  .hero-socials{gap:2px}
  .sec{padding:110px var(--pad);max-width:1180px;margin:0 auto}
  .player{grid-template-columns:300px 1fr;gap:40px;align-items:center}
  .tracks{margin-top:44px}
  .sec-full{padding:140px var(--pad) 90px}
  .sec-full-inner{max-width:1180px;margin:0 auto}
  .btn-wide{width:auto;display:inline-flex}
  .vid{flex:0 0 auto;width:250px}
  .rail-hint{display:none}
  .foot{max-width:1180px;margin:0 auto}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{animation:none!important;transition:none!important}
}
