:root{
  --bg: #f4feff;        /* single background everywhere */
  --ink:#062a31;
  --muted: rgba(6,42,49,.72);

  --sea:#37c8c1;
  --sky:#5bc0ff;
  --sun:#ffcc75;

  --line: rgba(6,42,49,.12);

  --max: 1120px;
  --pad: clamp(18px, 3vw, 46px);

  --h1: clamp(44px, 6vw, 86px);
  --h2: clamp(26px, 3.2vw, 44px);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--ink);
  line-height:1.5;
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(244,254,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  width:44px;height:44px;
  border-radius:14px;
  border: 2px solid var(--line);
  background:#fff;
  object-fit:cover;
}
.brand strong{
  display:block;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:.05em;
  font-size: 12px;
}
.brand span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.menu{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.menu a{
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.menu a:hover{
  border-color: var(--line);
}

/* Buttons: bold, simple */
.actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid rgba(6,42,49,.16);
  font-weight: 900;
  background: transparent;
}
.btn--solid{
  background: rgba(6,42,49,.92);
  border-color: rgba(6,42,49,.92);
  color:#fff;
}
.btn--sea{
  border-color: rgba(55,200,193,.65);
  background: rgba(55,200,193,.12);
}
.btn--sky{
  border-color: rgba(91,192,255,.60);
  background: rgba(91,192,255,.12);
}

/* Typography */
.kicker{
  display:inline-block;
  font-weight: 950;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 3px solid rgba(6,42,49,.18);
  padding-bottom: 6px;
}
h1{
  margin: 14px 0 12px;
  font-size: var(--h1);
  line-height: .98;
  letter-spacing: -0.02em;
}
h2{
  margin: 0 0 10px;
  font-size: var(--h2);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.lede{
  margin:0;
  font-size: 18px;
  max-width: 70ch;
  color: var(--muted);
}

/* One continuous page – sections just spacing */
.section{
  position: relative;
  padding: clamp(64px, 7vw, 120px) 0;
}

/* Hero layout */
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: end;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-photo{
  position: relative;
  border-radius: 30px;
  overflow:hidden;
  border: 2px solid var(--line);
  min-height: 540px;
  transform: rotate(-1deg);
}
.hero-photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.03);
}

/* “Sticker” graphics */
.sticker{
  position:absolute;
  border-radius: 999px;
  border: 2px solid rgba(6,42,49,.14);
  background: #fff;
  padding: 10px 12px;
  font-weight: 950;
  letter-spacing:.02em;
  box-shadow: 0 18px 45px rgba(6,42,49,.12);
}
.sticker.one{ top: 14px; left: 14px; transform: rotate(2deg); }
.sticker.two{ bottom: 16px; right: 16px; transform: rotate(-3deg); }

.burst{
  position:absolute;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255,204,117,.55);
  border: 2px solid rgba(6,42,49,.14);
  transform: rotate(12deg);
  box-shadow: 0 22px 55px rgba(6,42,49,.10);
}
.burst.a{ top:-18px; right:-18px; }
.burst.b{ bottom:-22px; left:-22px; background: rgba(55,200,193,.28); transform: rotate(-10deg); }

/* Spinnaker “ghost” behind content */
.ghost{
  position:absolute;
  inset: 0;
  pointer-events:none;
  opacity: .10;
  background-repeat: no-repeat;
  background-position: 85% 20%;
  background-size: min(560px, 60vw);
  filter: saturate(0.9);
}
.ghost.spinnaker{
  background-image: url("spinnaker-silhouette.png");
}

/* Release block without a “card” */
.release{
  display:grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items:center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 3px solid rgba(6,42,49,.12);
}
.release img{
  width:84px;height:84px;
  border-radius: 24px;
  border: 2px solid var(--line);
  object-fit: cover;
  background:#fff;
}
.release b{ font-weight: 950; }
.release .meta{ color: var(--muted); }

/* Gigs: strong type, no container */
.giglist{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.gig{
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 2px dashed rgba(6,42,49,.16);
}
.gig strong{ font-weight: 950; }
.gig span{ color: var(--muted); font-weight: 800; }
@media (max-width: 520px){
  .gig{ grid-template-columns: 1fr; }
}

/* Photo pops: cut-out collage */
.collage{
  position: relative;
  min-height: 560px;
  margin-top: 22px;
}
.cut{
  position:absolute;
  width: var(--w);
  height: var(--h);
  left: var(--x);
  top: var(--y);
  border-radius: 34px;
  overflow:hidden;
  border: 2px solid var(--line);
  transform: rotate(var(--r)) translateY(18px);
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.cut img{ width:100%; height:100%; object-fit: cover; display:block; }
.cut.is-in{
  opacity: 1;
  transform: rotate(var(--r)) translateY(0);
}
@media (max-width: 900px){
  .collage{ min-height: 820px; }
  .cut{ left: 7% !important; width: 86% !important; }
  .cut.one{ top: 10px !important; height: 280px !important; }
  .cut.two{ top: 310px !important; height: 240px !important; }
  .cut.three{ top: 570px !important; height: 240px !important; }
}

/* Little doodles that drift */
.doodle{
  position:absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(91,192,255,.55);
  border: 2px solid rgba(6,42,49,.10);
  animation: floaty 6s ease-in-out infinite;
}
.doodle.two{ width: 14px; height: 14px; background: rgba(55,200,193,.55); animation-duration: 7.5s; }
.doodle.three{ width: 10px; height: 10px; background: rgba(255,204,117,.75); animation-duration: 8.5s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* Simple reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in{ opacity:1; transform: translateY(0); }

/* Footer */
footer{
  padding: 54px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}
