/* ============================================================
   PLONKI — STYLES
   Palette pulled from the logo (orange) and press photo
   (olive green, cream, denim).
   ============================================================ */

:root{
  --cream: #f6f0e4;
  --cream-2: #efe6d4;
  --ink: #1c1914;
  --ink-soft: #38332b;
  --orange: #f0a15a;
  --orange-dark: #d97f34;
  --olive: #4c5a3a;
  --olive-dark: #333f28;
  --denim: #364355;
  --line: rgba(28,25,20,0.12);

  --font-display: "Anton", sans-serif;
  --font-body: "Space Grotesk", sans-serif;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  margin: 0;
}

a{ color: inherit; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section{ padding: 96px 0; position: relative; }
.section-dark{
  background: var(--ink);
  color: var(--cream);
}
.section-dark .badge{ color: var(--ink); }

.section-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.section-head h2{
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--orange);
}
.section-lede{
  max-width: 60ch;
  margin: -20px 0 36px;
  opacity: .85;
  font-size: 1.05rem;
}

.badge{
  display:inline-block;
  background: var(--orange);
  color: var(--ink);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

/* subtle grain overlay for texture */
#grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- HEADER / NAV ---------- */
#site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
#site-header.scrolled{
  background: rgba(28,25,20,0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(0,0,0,.2);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.nav-logo img{ height: 34px; width:auto; }

.nav-links{
  list-style:none;
  display:flex;
  gap: 30px;
  margin:0; padding:0;
}
.nav-links a{
  color: var(--cream);
  text-decoration:none;
  font-size: .92rem;
  text-transform: lowercase;
  letter-spacing: .03em;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

#nav-toggle{
  display:none;
  flex-direction: column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
#nav-toggle span{
  width: 24px; height: 2px;
  background: var(--cream);
  display:block;
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  /* biased low: the band's faces sit in the lower half of this photo
     (the top is mostly tree canopy), so crop from the top first */
  object-position: center 85%;
}
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,17,12,.35) 0%, rgba(20,17,12,.25) 40%, rgba(20,17,12,.92) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px 90px;
  text-align:center;
  color: var(--cream);
}
.hero-logo{
  width: min(520px, 78vw);
  margin: 0 auto 18px;
  transform-origin: 50% 50%;
  animation: logo-wobble 8s ease-in-out infinite;
  filter: url(#underwater-warp);
  will-change: transform, filter;
}
@keyframes logo-wobble{
  0%   { transform: rotate(0deg)      skew(0deg, 0deg)     scale(1); }
  15%  { transform: rotate(-3deg)     skew(-1.5deg, 0.8deg) scale(1.07); }
  32%  { transform: rotate(2.2deg)    skew(1.3deg, -1.1deg) scale(0.91); }
  50%  { transform: rotate(-1.7deg)   skew(-1deg, 1.3deg)   scale(1.06); }
  68%  { transform: rotate(2.6deg)    skew(1.5deg, -0.6deg) scale(0.93); }
  85%  { transform: rotate(-1.3deg)   skew(-0.8deg, 0.5deg) scale(1.04); }
  100% { transform: rotate(0deg)      skew(0deg, 0deg)     scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .hero-logo{ animation: none; filter: none; }
}
.hero-tagline{
  text-transform: lowercase;
  letter-spacing: .06em;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  opacity: .9;
  margin: 0 0 30px;
}
.hero-cta{
  display:flex;
  gap: 16px;
  justify-content:center;
  flex-wrap: wrap;
}
.scroll-hint{
  position:absolute;
  bottom: 26px; left:50%;
  transform: translateX(-50%);
  z-index:2;
  color: var(--cream);
  text-decoration:none;
  font-size: 1.4rem;
  animation: bob 2s ease-in-out infinite;
  opacity: .8;
}
@keyframes bob{
  0%,100%{ transform: translate(-50%,0); }
  50%{ transform: translate(-50%,8px); }
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  text-transform: lowercase;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-solid{
  background: var(--orange);
  color: var(--ink);
}
.btn-solid:hover{ background: var(--orange-dark); }
.btn-outline{
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover{ background: var(--cream); color: var(--ink); }
.btn-small{
  padding: 8px 18px;
  font-size: .8rem;
}

/* ---------- BIO ---------- */
.bio-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:start;
}
.bio-photo img{
  border-radius: 14px;
  filter: sepia(.15) saturate(1.05);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.bio-text .section-head{ margin-bottom: 18px; }
.bio-text p{ margin: 0 0 16px; }
.bio-text em{ font-style: normal; color: var(--orange-dark); }

.lang-toggle{
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 58% 42% 61% 39% / 47% 53% 47% 53%;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle:hover{ background: var(--ink); color: var(--cream); }

.text-link{
  background:none;
  border:none;
  padding:0;
  color: var(--orange-dark);
  font-weight: 600;
  cursor:pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- STUDIO NOTE (hand-drawn doodle box) ---------- */
.studio-note-wrap{
  position: relative;
  max-width: var(--container);
  margin: -20px auto 64px;
  padding: 0 28px;
  display:flex;
  justify-content:center;
}

/* ---------- GUITAR PICK EASTER EGG ---------- */
.guitar-pick-btn{
  position: absolute;
  top: 50%;
  right: 6%;
  width: 78px;
  height: 91px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transform: translateY(-50%) rotate(-9deg);
  transition: transform .25s ease;
}
.guitar-pick-btn:hover{
  transform: translateY(-50%) rotate(-4deg) scale(1.06);
}
.guitar-pick-btn img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;
  pointer-events:none;
}
.guitar-pick-text{
  position:relative;
  z-index:1;
  color: var(--ink);
  font-weight: 800;
  font-size: .56rem;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-align:center;
  text-transform:lowercase;
  padding: 4px 14px 12px;
  pointer-events:none;
}
.guitar-pick-btn.is-dropping{
  transition: transform 1.1s cubic-bezier(.55,0,.85,.3), opacity .5s ease .6s;
  transform: translateY(calc(-50% + 140vh)) rotate(430deg);
  opacity: 0;
  pointer-events:none;
}
@media (max-width: 900px){
  .guitar-pick-btn{ display:none; }
}

/* second pick — sits on the right, level with the "for bookings..."
   line in the contact section, once the first one has been dropped */
.contact-lede-wrap{
  position: relative;
}
.guitar-pick-btn-contact{
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(-9deg) scale(0);
  opacity: 0;
}
/* holds the resting "visible" look once the pop-in animation has
   finished, so :hover can take over the transform again — a still-
   running forwards-filled animation would otherwise keep overriding it */
.guitar-pick-btn-contact.is-visible{
  transform: translateY(-50%) rotate(-9deg) scale(1);
  opacity: 1;
}
.guitar-pick-btn-contact:hover{
  transform: translateY(-50%) rotate(-4deg) scale(1.06);
}
.guitar-pick-btn-contact .guitar-pick-text{
  color: var(--ink);
}
.guitar-pick-btn-contact.is-revealed{
  animation: pick-pop-in-contact .6s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes pick-pop-in-contact{
  0%{ transform: translateY(-50%) rotate(-9deg) scale(0); opacity: 0; }
  60%{ transform: translateY(-50%) rotate(-9deg) scale(1.15); opacity: 1; }
  100%{ transform: translateY(-50%) rotate(-9deg) scale(1); opacity: 1; }
}
@media (max-width: 900px){
  .guitar-pick-btn-contact{ display: none; }
}
.studio-note{
  position: relative;
  max-width: 560px;
  background: var(--cream-2);
  padding: 26px 34px;
  transform: rotate(-1.6deg);
  text-align:center;
  border: 2px solid var(--line);
  /* organic, slightly wobbly rounded corners for a hand-drawn feel */
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}
.studio-note::before{
  /* a second, offset outline — like the shape got sketched twice */
  content:"";
  position:absolute;
  inset: -7px;
  border: 2px solid var(--ink);
  border-radius: 15px 225px 15px 255px / 225px 15px 255px 15px;
  opacity: .3;
  transform: rotate(1.4deg);
  pointer-events: none;
  z-index: -1;
}
.studio-note p{
  position: relative;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}
.studio-note strong{ color: var(--orange-dark); }
.studio-note-link{
  text-decoration: none;
  border-bottom: 1.5px dashed var(--orange-dark);
  transition: color .18s ease;
}
.studio-note-link:hover strong{ color: var(--ink); }

/* ---------- SHOWS ---------- */
.shows-tabs{
  display:flex;
  gap: 10px;
  margin-bottom: 30px;
}
.tab-btn{
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  opacity: .55;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  text-transform: lowercase;
  cursor:pointer;
}
.tab-btn.active{
  opacity: 1;
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}

.shows-list{
  list-style:none;
  margin:0; padding:0;
  border-top: 1px solid rgba(246,240,228,.15);
}
.show-row{
  display:flex;
  align-items:center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(246,240,228,.15);
  flex-wrap: wrap;
}
.show-date{
  font-family: var(--font-display);
  color: var(--orange);
  min-width: 130px;
  font-size: 1.05rem;
  text-transform: lowercase;
}
.show-info{ flex: 1; min-width: 220px; }
.show-title{ font-weight: 700; margin: 0 0 3px; }
.show-venue{ opacity: .75; font-size: .92rem; margin:0; }
.show-empty{
  padding: 30px 0;
  opacity: .6;
  font-style: italic;
}
.show-more-tba{
  padding: 18px 0 4px;
  opacity: .55;
  font-style: italic;
  font-size: .9rem;
  list-style:none;
}

.show-title-link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: color .18s ease, border-color .18s ease;
}
.show-title-link:hover{
  color: var(--orange);
  border-color: var(--orange);
}

.show-gallery-btn{
  display:inline-block;
  margin-left: 10px;
  padding: 2px 12px;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  text-transform: lowercase;
  text-decoration:none;
  color: var(--ink);
  background: var(--orange);
  border: 1.5px solid var(--orange);
  vertical-align: middle;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.show-gallery-btn:hover{
  background: transparent;
  color: var(--orange);
}

/* past shows, grouped by year and collapsible */
.shows-past .year-group{
  border-bottom: 1px solid rgba(246,240,228,.15);
}
.shows-past .year-group summary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--orange);
  text-transform: lowercase;
}
.shows-past .year-group summary::-webkit-details-marker{ display:none; }
.shows-past .year-group summary::before{
  content: "+";
  display:inline-block;
  width: 14px;
  font-family: var(--font-body);
  opacity: .8;
}
.shows-past .year-group[open] summary::before{ content: "–"; }
.shows-past .year-count{
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  opacity: .5;
  text-transform: lowercase;
}
.shows-past .year-group .shows-list{ border-top: none; }
.shows-past .year-group .show-row:last-child{ border-bottom: none; }

/* ---------- DOODLE (wobbly hand-drawn edges, used on cards) ----------
   Applied via a "doodle" class alongside a card's own class, so it
   must be defined AFTER those base card styles to win the cascade. */

/* ---------- SPOTIFY SHOWCASE ---------- */
.spotify-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.spotify-card{
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  padding: 16px 16px 4px;
  overflow: hidden;
}
.spotify-card-title{
  margin: 0 0 12px;
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.02rem;
  color: var(--ink);
}
.spotify-card iframe{ border-radius: 10px; display:block; }

/* ---------- MERCH ---------- */
#merch{ padding-top: 40px; }
.merch-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.merch-card{
  display:block;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 20px;
  text-decoration:none;
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease;
}
.merch-card:hover{
  transform: translateY(-3px);
  border-color: var(--orange);
}
.merch-card img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.merch-card-title{
  margin: 0 0 2px;
  font-weight: 700;
  text-transform: lowercase;
}
.merch-card-sub{
  margin: 0 0 10px;
  font-size: .82rem;
  opacity: .65;
}
.merch-card-buy{
  display:inline-block;
  font-weight: 700;
  color: var(--orange-dark);
}
.merch-note-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 100%;
}
.merch-note-card p{
  margin:0;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  text-align:center;
}

/* ---------- MUSIC ---------- */
.platform-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 16px;
}
.platform-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 22px 18px;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  text-decoration:none;
  color: var(--ink);
  font-weight: 700;
  text-transform: lowercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.platform-card:hover{
  transform: translateY(-3px);
  border-color: var(--orange);
  background: var(--cream);
}
.platform-card.is-placeholder{
  opacity: .5;
  border-style: dashed;
  cursor: default;
  pointer-events: none;
}

/* ---------- VIDEOS ---------- */
.video-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}
.video-slot{
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.video-slot iframe{
  width:100%; height:100%; border:0;
}
.video-placeholder{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  flex-direction: column;
  gap: 8px;
  border: 1.5px dashed rgba(246,240,228,.35);
  border-radius: 12px;
  color: rgba(246,240,228,.55);
  text-align: center;
  padding: 20px;
  font-size: .88rem;
}
.video-placeholder .plus{ font-size: 1.8rem; line-height:1; color: var(--orange); }
.video-caption{
  display:block;
  margin: 10px 2px 0;
  font-size: .88rem;
  opacity: .75;
}
.video-caption-link{
  text-decoration: none;
  color: var(--cream);
  transition: opacity .18s ease;
}
.video-caption-link:hover{ opacity: 1; text-decoration: underline; }

/* ---------- PHOTOS ---------- */
.gallery-grid{
  column-count: 3;
  column-gap: 18px;
}
.gallery-item{
  position: relative;
  display:block;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item img{
  width:100%;
  display:block;
  transition: transform .3s ease, filter .3s ease;
}
.gallery-item:hover img{
  transform: scale(1.03);
  filter: saturate(1.1);
}

/* photographer credit overlay */
.photo-credit{
  position:absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(20,17,12,.55);
  color: var(--cream);
  font-size: .7rem;
  letter-spacing: .03em;
  padding: 4px 9px;
  border-radius: 6px;
  pointer-events:none;
}
.photo-credit-hero{
  z-index: 2;
  bottom: 22px;
  right: 22px;
}
@media (max-width: 860px){
  .gallery-grid{ column-count: 2; }
}
@media (max-width: 540px){
  .gallery-grid{ column-count: 1; }
}

/* ---------- PHOTO SLIDESHOW ---------- */
.photo-slideshow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
}
.slideshow-track{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  min-width: 0;
}
.slideshow-current{
  position:relative;
  flex: 0 0 auto;
  width: min(560px, 56vw);
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow:hidden;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.slideshow-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 1;
}
/* outgoing photo shrinks away with a little wobble, incoming photo
   pops back up — same wonky spirit as the hero logo warp, dialled
   down a lot so it stays subtle */
.slideshow-img.is-out{
  animation: slideshow-shrink-out .2s ease-in both;
}
.slideshow-img.is-in{
  animation: slideshow-pop-in .5s cubic-bezier(.32,1.5,.5,1) both;
}
@keyframes slideshow-shrink-out{
  from{ transform: scale(1) rotate(0deg); opacity: 1; }
  to{ transform: scale(.8) rotate(3deg); opacity: 0; }
}
@keyframes slideshow-pop-in{
  0%{ transform: scale(.8) rotate(-3deg); opacity: 0; }
  60%{ transform: scale(1.04) rotate(1.5deg); opacity: 1; }
  100%{ transform: scale(1) rotate(0deg); }
}
.slideshow-peek{
  flex: 0 0 auto;
  width: min(110px, 12vw);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow:hidden;
  padding: 0;
  border: none;
  cursor:pointer;
  opacity: .45;
  transition: opacity .2s ease, transform .2s ease;
}
.slideshow-peek:hover{ opacity: .8; transform: scale(1.04); }
.slideshow-peek img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.slideshow-nav{
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: none;
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 1.2rem;
  cursor:pointer;
  transition: background .2s ease;
}
.slideshow-nav:hover{ background: var(--orange-dark); }
.slideshow-counter{
  text-align:center;
  font-size: .8rem;
  opacity: .6;
  margin-top: 14px;
}
@media (max-width: 720px){
  .slideshow-peek{ display:none; }
  .slideshow-current{ width: min(560px, 78vw); }
}
@media (max-width: 640px){
  .photo-slideshow{ gap: 8px; }
  .slideshow-nav{ width: 36px; height: 36px; font-size: 1rem; }
}

/* ---------- INSTAGRAM CTA (lightweight strip) ---------- */
.insta-cta-wrap{
  max-width: var(--container);
  margin: -12px auto 0;
  padding: 0 28px 64px;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.insta-cta{
  text-align:center;
}
.insta-cta p{
  margin: 0 0 16px;
  font-weight: 600;
  opacity: .8;
}

/* ---------- CONTACT ---------- */
.contact-inner{ text-align:center; }
.contact-inner .section-head{ justify-content:center; }
.contact-inner .section-lede{ margin-left:auto; margin-right:auto; }

.contact-list{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 22px;
  margin-bottom: 44px;
}
.contact-row{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 2px;
  text-decoration:none;
  color: inherit;
}
.contact-label{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .55;
}
.contact-row .contact-email{
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--orange);
  word-break: break-word;
  transition: color .18s ease;
}
.contact-row:hover .contact-email{ color: var(--cream); }

.social-grid{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 14px;
}
.social-pill{
  border: 1.5px solid rgba(246,240,228,.35);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  text-transform: lowercase;
  font-size: .9rem;
  transition: background .18s ease, border-color .18s ease;
}
.social-pill:hover{ background: var(--orange); border-color: var(--orange); color: var(--ink); }
.social-pill.is-placeholder{
  opacity: .4;
  border-style: dashed;
  pointer-events: none;
}

/* ---------- FOOTER ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(246,240,228,.55);
  text-align:center;
  padding: 40px 20px 50px;
  font-size: .82rem;
}
.mailinglist-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mailinglist-btn .envelope-icon{ flex-shrink: 0; }
.footer-epk{
  display: block;
  margin: 0 0 20px;
  color: rgba(246,240,228,.45);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .18s ease;
}
.footer-epk:hover{ color: rgba(246,240,228,.8); }
.footer-logo{
  height: 64px;
  width:auto;
  margin: 0 auto 18px;
  opacity: .85;
}
.footer-logo-secondary{
  height: auto;
  margin: 0 auto 22px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px){
  .bio-grid{ grid-template-columns: 1fr; }
  .bio-photo{ order: -1; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 720px){
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(280px, 75vw);
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.1rem; }
  #nav-toggle{ display:flex; }
  .section{ padding: 68px 0; }
}

/* ---------- GALLERY MODAL ---------- */
.gallery-modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,17,12,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
}
.gallery-modal[hidden]{
  display: none;
}
.gallery-modal-inner{
  position: relative;
  width: min(900px, 100%);
  height: min(85vh, 720px);
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display:flex;
  flex-direction: column;
}
.gallery-modal-body{
  overflow-y: auto;
  padding: 60px 20px 20px;
}
.gallery-modal-grid{
  column-count: 3;
  column-gap: 10px;
}
.gallery-modal-grid a{
  display:block;
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow:hidden;
}
.gallery-modal-grid img{
  width:100%;
  display:block;
  transition: transform .25s ease;
}
.gallery-modal-grid a:hover img{ transform: scale(1.04); }
.gallery-modal-credit{
  text-align:center;
  font-size: .8rem;
  opacity: .6;
  margin: 10px 0 0;
}
@media (max-width: 640px){
  .gallery-modal-grid{ column-count: 2; }
}
.gallery-modal-close{
  position:absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-modal-close:hover{ background: var(--orange-dark); }

/* ---------- PRIZE MODAL (guitar pick easter egg reward) ---------- */
.prize-modal-inner{
  width: min(460px, 100%);
  height: auto;
  padding: 52px 32px 40px;
  text-align: center;
}
.prize-modal-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.prize-modal-title{
  margin: 0;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
}
.prize-arrows{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.prize-arrow{
  position: absolute;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.prize-arrow-1{ top: -38px; left: -38px; animation: nudge-dr 1.1s ease-in-out infinite; }
.prize-arrow-2{ top: -38px; right: -38px; animation: nudge-dl 1.1s ease-in-out infinite .15s; }
.prize-arrow-3{ bottom: -38px; left: -38px; animation: nudge-ur 1.1s ease-in-out infinite .3s; }
.prize-arrow-4{ bottom: -38px; right: -38px; animation: nudge-ul 1.1s ease-in-out infinite .45s; }
.prize-arrow-5{ top: -38px; left: 50%; transform: translateX(-50%); animation: nudge-d 1s ease-in-out infinite .6s; }
.prize-arrow-6{ bottom: -38px; left: 50%; transform: translateX(-50%); animation: nudge-u 1s ease-in-out infinite .75s; }
.prize-arrow-7{ left: -38px; top: 50%; transform: translateY(-50%); animation: nudge-r 1s ease-in-out infinite .9s; }
.prize-arrow-8{ right: -38px; top: 50%; transform: translateY(-50%); animation: nudge-l 1s ease-in-out infinite 1.05s; }
@keyframes nudge-dr{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(7px,7px); } }
@keyframes nudge-dl{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-7px,7px); } }
@keyframes nudge-ur{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(7px,-7px); } }
@keyframes nudge-ul{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-7px,-7px); } }
@keyframes nudge-d{ 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(7px); } }
@keyframes nudge-u{ 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(-7px); } }
@keyframes nudge-r{ 0%,100%{ transform: translateY(-50%) translateX(0); } 50%{ transform: translateY(-50%) translateX(7px); } }
@keyframes nudge-l{ 0%,100%{ transform: translateY(-50%) translateX(0); } 50%{ transform: translateY(-50%) translateX(-7px); } }
@media (max-width: 640px){
  .prize-arrow{ font-size: 1.5rem; }
  .prize-arrow-1{ top: -24px; left: -12px; }
  .prize-arrow-2{ top: -24px; right: -12px; }
  .prize-arrow-3{ bottom: -24px; left: -12px; }
  .prize-arrow-4{ bottom: -24px; right: -12px; }
  .prize-arrow-5,
  .prize-arrow-6,
  .prize-arrow-7,
  .prize-arrow-8{ display: none; }
}

/* ---------- DOODLE (wobbly hand-drawn edges) ----------
   Defined last so it wins over each card's own border-radius. */
.doodle{
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}
.doodle:nth-child(even){
  border-radius: 15px 225px 15px 255px / 225px 15px 255px 15px;
}
