/* Easy Rider — prototype styles
   Identity kept from the current site (monochrome, Manrope, client marquee),
   refined: tighter type scale, more whitespace, sticky nav, hover states,
   responsive, blog + data-ready roster/team. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --paper-2: #f4f4f2;
  --line: #e6e6e3;
  --max: 1180px;
  --gap: clamp(1rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }

.label {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
}

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-weight: 800; letter-spacing: .18em; font-size: 1.02rem; display: flex; align-items: center; }
.brand img { height: 26px; width: auto; display: block; }
.brand span { font-weight: 400; }
.nav ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav a { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav .cta { border: 1px solid var(--ink); color: var(--ink); padding: .5rem .9rem; border-radius: 999px; }
.nav .cta:hover { background: var(--ink); color: var(--paper); }
.burger { display: none; background: none; border: 0; font-size: 1.4rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: clamp(4rem, 12vw, 9rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero h1 {
  font-size: clamp(2.3rem, 7vw, 5.4rem); line-height: 1.02; font-weight: 800;
  letter-spacing: -.02em; max-width: 16ch;
}
.hero .sub { margin-top: 1.4rem; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 42ch; }
.hero .former { margin-top: .8rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.hero .actions { margin-top: 2.2rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .9rem; letter-spacing: .02em; transition: all .2s; }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { transform: translateY(-2px); }
.btn.ghost { border: 1px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; overflow: hidden; background: var(--ink); color: var(--paper); }
.marquee .track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: scroll 42s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .item { font-weight: 700; letter-spacing: .04em; font-size: 1.05rem; opacity: .9; }
.marquee .dot { opacity: .4; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: clamp(3.5rem, 9vw, 7rem) 0; }
section.tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.sec-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2.2rem; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 60ch; color: var(--ink); }
.lead + .lead { margin-top: 1.1rem; color: var(--ink-soft); }

/* services */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.5rem; }
.services .card { background: var(--paper); padding: 1.6rem; }
.services .card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.services .card p { font-size: .92rem; color: var(--ink-soft); }

/* roster / team grids */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid.roster { grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); }
.grid.team { grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }
.cell { background: var(--paper); padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; transition: background .15s; }
.cell:hover { background: var(--paper-2); }
.cell .name { font-weight: 700; font-size: 1.02rem; }
.cell .tag { font-size: .7rem; letter-spacing: .1em; font-weight: 700; color: var(--ink-soft); border: 1px solid var(--line); padding: .12rem .45rem; border-radius: 4px; }
.cell .role { font-size: .8rem; color: var(--ink-soft); white-space: nowrap; flex: none; padding-left: .6rem; text-align: right; }

/* artist photo grid */
.artgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1rem; }
.art { position: relative; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: #111; }
.art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.art:hover img { transform: scale(1.05); }
.art .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0)); display: flex; align-items: baseline; justify-content: space-between; gap: .4rem; }
.art .cap .n { font-weight: 700; font-size: .98rem; line-height: 1.15; }
.art .cap .c { font-size: .68rem; font-weight: 700; letter-spacing: .08em; opacity: .8; }
.art.noimg { background: linear-gradient(135deg,#1a1a1a,#333); display: flex; align-items: center; justify-content: center; }
.art.noimg .cap { background: none; position: static; padding: 1rem; text-align: center; }

/* sticker accent */
.sticker { position: absolute; width: clamp(170px, 24vw, 300px); }
.hero { position: relative; }
.hero .sticker { top: clamp(1rem, 4vw, 3rem); right: clamp(1rem, 5vw, 4rem); }
@media (max-width: 820px){ .hero .sticker { display: none; } }

/* blog */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.6rem; }
.post-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.07); }
.post-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg,#111,#333); }
.post-card .body { padding: 1.3rem; }
.post-card .meta { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.post-card h3 { font-size: 1.2rem; font-weight: 800; margin: .5rem 0 .5rem; letter-spacing: -.01em; }
.post-card p { font-size: .92rem; color: var(--ink-soft); }
.post-card .more { margin-top: 1rem; font-weight: 700; font-size: .85rem; }

/* article */
.article { max-width: 720px; margin: 0 auto; }
.article .meta { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.article h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; margin: .6rem 0 1.4rem; line-height: 1.05; }
.article .heroimg { aspect-ratio: 16/8; border-radius: 12px; background: linear-gradient(135deg,#111,#3a3a3a); margin-bottom: 2rem; }
.article p { font-size: 1.08rem; margin: 1.1rem 0; }
.article h2 { font-size: 1.5rem; margin: 2rem 0 .6rem; }

/* contact */
.contact { background: var(--ink); color: var(--paper); }
.contact h2 { color: var(--paper); }
.contact a.mail { font-size: clamp(1.4rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; border-bottom: 2px solid rgba(255,255,255,.3); }
.contact a.mail:hover { border-color: var(--paper); }
.contact .row { margin-top: 2rem; display: flex; gap: 2rem; flex-wrap: wrap; font-size: .95rem; color: rgba(255,255,255,.7); }
.contact .row a:hover { color: #fff; }

/* footer */
footer.foot { border-top: 1px solid var(--line); padding: 2.5rem 0; }
footer.foot .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
footer.foot .tagline { font-weight: 800; letter-spacing: -.01em; }
footer.foot .small { font-size: .8rem; color: var(--ink-soft); }

/* page header */
.page-head { padding: clamp(3rem,8vw,6rem) 0 clamp(1.5rem,4vw,3rem); }
.page-head h1 { font-size: clamp(2.2rem,6vw,4rem); font-weight: 800; letter-spacing: -.02em; }
.page-head p { margin-top: .8rem; color: var(--ink-soft); max-width: 52ch; }

/* proto ribbon */
.ribbon { background: #ffd400; color:#111; text-align:center; font-size:.78rem; font-weight:700; letter-spacing:.08em; padding:.4rem; text-transform:uppercase; }

@media (max-width: 720px) {
  .nav ul { display: none; }
  .burger { display: block; }
}

/* ---------- Home: map teaser ---------- */
#map-home { width: 100%; height: clamp(300px, 42vw, 470px); }
#map-home path.jvm-region { transition: fill 1.2s cubic-bezier(.4, 0, .2, 1); }
.map-stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 5vw, 3rem); margin: .4rem 0 1.4rem; }
.map-stats .num { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; line-height: 1; }
.map-stats .cap { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- People behind the tours ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1.4rem 1.2rem; }
.person { text-align: center; }
.person .avatar { aspect-ratio: 1/1; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.person .avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .35s; }
.person:hover .avatar img { filter: none; }
.person .avatar span { font-weight: 800; font-size: 1.5rem; color: var(--ink-soft); letter-spacing: .04em; }
.person .pname { display: block; font-weight: 700; margin-top: .7rem; font-size: .92rem; }
.person .prole { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .1rem; }

/* ---------- Van rental ---------- */
.vans { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.van { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.van:hover { box-shadow: 0 14px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.van .vphoto { aspect-ratio: 16/10; background: var(--paper-2); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.van .vphoto img { width: 100%; height: 100%; object-fit: cover; }
.van .vbody { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.van h3 { font-size: 1.15rem; }
.van .vdesc { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
.van .vspecs { display: flex; flex-wrap: wrap; gap: .35rem .9rem; font-size: .75rem; color: var(--ink-soft);
  border-top: 1px solid var(--line); padding-top: .8rem; margin-top: .2rem; }
.van .vspecs b { color: var(--ink); font-weight: 700; }
.van .vprice { font-size: 1.5rem; font-weight: 800; margin-top: .3rem; }
.van .vprice small { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.van .vkm { font-size: .72rem; color: var(--ink-soft); margin-top: -.3rem; }
.van .vbtn { margin-top: auto; display: inline-block; text-align: center; background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: .72rem 1rem; font-weight: 700; font-size: .84rem; letter-spacing: .02em; }
.van .vbtn:hover { opacity: .88; }

/* ---------- Artist card hover: bio + Spotify ---------- */
.art .hoverinfo { position: absolute; inset: 0; padding: 1rem .95rem; color: #fff;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.86) 55%, rgba(10,10,10,.94) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transition: opacity .3s ease; }
.art:hover .hoverinfo, .art.force-hover .hoverinfo { opacity: 1; }
.art:hover .cap, .art.force-hover .cap { opacity: 0; }
.art .hoverinfo .hn { font-weight: 800; font-size: 1rem; line-height: 1.15; }
.art .hoverinfo .btm { display: flex; flex-direction: column; gap: .7rem; }
.art .hoverinfo .bio { font-size: .78rem; line-height: 1.45; color: rgba(255,255,255,.9);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; }
.art .hoverinfo .spotify { align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem;
  background: #1DB954; color: #05240f; font-weight: 700; font-size: .76rem; letter-spacing: .02em;
  padding: .48rem .8rem; border-radius: 999px; }
.art .hoverinfo .spotify:hover { filter: brightness(1.06); }

/* Founder accent in People section */
.person .prole.founder { color: var(--ink); font-weight: 800; }

/* Team page cells: TM photo avatar */
.cell .who { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.cell .tavatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none;
  background: var(--paper-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cell .tavatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .35s; }
.cell:hover .tavatar img { filter: none; }
.cell .tavatar span { font-weight: 800; font-size: .82rem; color: var(--ink-soft); }
.cell .role.founder { color: var(--ink); font-weight: 800; }

/* ---------- Merch / webshop ---------- */
.merch { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.4rem; }
.mcard { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper);
  display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.mcard:hover { box-shadow: 0 14px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.mcard .mphoto { aspect-ratio: 1/1; background: var(--paper-2); }
.mcard .mphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mcard .mbody { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.mcard h3 { font-size: 1.02rem; font-weight: 700; }
.mcard .mmeta { font-size: .76rem; color: var(--ink-soft); letter-spacing: .02em; }
.mcard .mprice { font-size: 1.15rem; font-weight: 800; margin-top: .2rem; }
.mcard .mbtn { margin-top: auto; display: inline-block; text-align: center; background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: .62rem 1rem; font-weight: 700; font-size: .82rem; margin-top: .8rem; }
.mcard .mbtn:hover { opacity: .88; }
