/* Studio 411 — static rebuild
   - designed to match the EasyFunnels/Webflow look you showed
   - includes the "overhanging logo that shrinks into navbar" effect
*/

/* ============================================
   BASE / GLOBAL STYLES
   ============================================ */

@font-face {
  font-family: 'Coolvetica';
  src: url('../assets/coolvetica-rg-cond.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kenyan Coffee';
  src: url('../assets/kenyan-coffee-rg.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #ffffff;
  --text: #000000;
  --muted: #000;
  --line: #000;

  --orange: #cf6a45;
  --orange2: #cf6a45;
  --ink: #0c1247;

  --max: 1100px;
  --radius: 18px;
  --shadow: 0 12px 32px #000;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{
  scroll-padding-top: 60px;
}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

p{ 
  box-sizing: content-box;
  margin-top: 0px; 
  margin-bottom: 15px;
  padding-bottom: 0px;
}

a{ color: inherit; text-decoration-color: #000000; text-underline-offset: 3px; }
a:hover{ text-decoration-color: #000000; }

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

.headline{
  font-size: 53px;
  letter-spacing: 0px;
  margin: 0 0 0;
  font-family: 'Kenyan Coffee', serif;
}

h1, h2, h3{
  font-family: 'Kenyan Coffee', serif;
}

h3{
  font-size: 30px;
}

.subhead{
  color: var(--text);
  margin-top: -0.4rem;
  margin-bottom: 15px;
}

.muted{ color: var(--text); }
.small{ font-size: .92rem; }
.lead{ margin-top: 1.25rem; }

/* Lists */
ul{
  list-style: none;
  padding-left: 1.2rem;
}

ul li{
  position: relative;
  padding-left: 1.2rem;
  margin: .4rem 0;
}

ul li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.4em;
  line-height: 1;
}

.bullets{
  padding-left: 1.2rem;
}
.bullets li{ margin: .4rem 0; }

/* ============================================
   DESKTOP STYLES (default)
   ============================================ */

/* Header / Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
}

.brand-logo{
  width: 46px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .2s ease, transform .2s ease;
  margin-top: 5px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 1.4rem;
  margin-right: 20px;
  font-weight: 600;
  font-size: 22px;
  font-family: 'Coolvetica', Arial, sans-serif;
}

.nav a{
  text-decoration: none;
  opacity: 1;
  position: relative;
  letter-spacing: 0.05em;
  transition: none;
}

.nav a.btn-contact{
  opacity: 1;
  transition: none;
}

.nav a:not(.btn-contact)::after{
  content: '|';
  position: absolute;
  right: -0.85rem;
  color: var(--orange);
  pointer-events: none;
}

.nav a:last-child::after,
.nav a.btn-contact::after{
  display: none;
}

.nav-toggle{
  display:none;
  width:50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  padding: 10px;
  margin-top: 19px;
  margin-right: 19px;
}

.nav-toggle span{
  display:block;
  height: 2px;
  background: #1a1a1a;
  margin: 6px 0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 20px;
  padding: .65rem 1.2rem;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 700;
  font-family: 'Coolvetica', sans-serif;
  background: var(--orange2);
  color: white;
  border-color: transparent;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}

.btn-contact{
  opacity: 1;
}

.btn-contact:hover,
.nav a.btn-contact:hover,
a.btn-contact:hover{ 
  background: var(--orange2) !important;
  opacity: 1 !important;
  transform: none !important;
  text-decoration: none !important;
  text-decoration-color: transparent !important;
  transition: none !important;
}

.btn-primary{
  background: var(--orange);
  color:#fff;
  border-color: transparent;
  width: 100%;
  padding: .85rem 1.15rem;
  font-size: 2rem;
}

.btn-primary:hover{ background: var(--orange2); }

/* Hero */
.hero{
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero-media{
  position: relative;
  z-index: 0;
  height: min(650px, 65vw);
  min-height: 450px;
  background-color: #080a12;
  background-image: url("../img/hero1.webp");
  background-size: cover;
  background-position: center;
}

.overhang-logo{
  position: fixed;
  left: 18px;
  top: -90px;
  width: 200px;
  height: 200px;
  z-index: 99999;
  border-radius: 999px;
  display:grid;
  place-items:center;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.overhang-logo img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}

.hero-content{
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 2rem;
  text-align:center;
}

.hero h1 {
  margin: 0;
  color: white;
  font-weight: normal;
  letter-spacing: 0px;
  font-size: 64px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, .55);
  font-family: 'Kenyan Coffee', serif;
  line-height: normal;
}

/* Sections */
.section{
  padding: 40px 0;
}

.section.alt{
  background: rgba(0,0,0,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#what{
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}

#what .headline{
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

#what .two-col{
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.two-col{
  display:grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 2rem;
  margin-top: 0px;
}

#about .two-col{
  grid-template-columns: 1fr;
}

.two-col p{
  margin-top: 0px;
  margin-bottom: 0px;
}

#about h3{
  margin-top: 0.5em;
  margin-bottom: 0.1em;
}

#listen h3{
  margin-top: 5px;
  margin-bottom: 0px;
  font-size: 30px;
  line-height: 34px;
}

/* About section */
#about{
  position: relative;
  /* padding: 4rem 0; */
  background: rgb(228 228 228);
}

.about-content-wrapper{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

.about-text-container{
  max-width: 100%;
  min-width: 0;
}

.about-text-inner{
  background: white;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.about-photo{
  width: 340px;
  max-width: 46%;
  aspect-ratio: 3 / 4;
  height: auto;
  display: block;
  float: right;
  shape-outside: inset(0 round var(--radius));
  shape-margin: 12px;
  /* margin: 0.4rem 0 1rem 1.25rem; */
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transition: transform 0.3s ease;
  will-change: transform;
  cursor: pointer;
  object-fit: cover;
  object-position: 75% 50%;
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px){
  .about-photo:hover{
    transform: scale(1.05);
  }
}

.sig{
  font-weight: 700;
  margin-top: 1.5rem;
  margin-left: 10px;
}

.sig img{
  display: block;
  width: 145px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine){
  .sig img:hover{
    transform: scale(1.05);
  }
}

/* Services section */
#services{
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  background-color: #000;
  background-image: url("../img/services_bg.webp");
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#services .headline,
#services h2,
#services h3{
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.8);
}

#services p{
  color: rgba(255, 255, 255, 0.88);
}

#services a{
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

#services a:hover{
  color: #fff;
  text-decoration-color: #fff;
}

#services ul li::before{
  color: var(--orange);
}

#services h3{
  margin-top: 1.5rem;
  margin-bottom: 0px;
  font-size: 30px;
}

#services h3:first-of-type{
  margin-top: 1.4rem;
}

#services ul{
  margin-bottom: 1rem;
  margin-top: 0px;
}

/* Listen carousel */
.listen-carousel-wrapper{
  position: relative;
  margin-top: 1.5rem;
}

.listen-carousel{
  overflow: hidden;
  border-radius: var(--radius);
}

.listen-track{
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 1.2rem;
}

.listen-track .listen-card{
  flex: 0 0 calc(33.333% - 0.8rem);
  min-width: 0;
}

.listen-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: white;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  transition: box-shadow 0.2s ease;
  max-width: 400px;
}

.listen-card.expanded{
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}

.cover-wrapper{
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.cover{
  width: 100%;
  height: 338px;
  background-size: 102%;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.3s ease, opacity 0.2s ease;
  will-change: transform;
}

.cover-wrapper:hover .cover{
  transform: scale(1.05);
  opacity: 0.85;
}

.play-button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.cover-wrapper:hover .play-button,
.listen-card.playing .play-button{
  opacity: 1;
  pointer-events: auto;
}

.play-button:hover{
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-button:active{
  transform: translate(-50%, -50%) scale(0.95);
}

@media (hover: none) and (pointer: coarse) {
  .play-button{
    opacity: 1;
    pointer-events: auto;
  }
}

.listen-meta{
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.2rem;
  padding-top: 0;
}

.listen-meta h3{ 
  margin: 0 0 .2rem; 
  font-size: 1.4rem;
}

.player audio{ width: 100%; margin-top: .8rem; }

/* Track list */
.tracks-list{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.track-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  margin: 0.25rem 0;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
  z-index: 1;
  --progress-width: 0%;
}

.track-item::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width, 0%);
  background: rgba(207, 106, 69, 0.15);
  transition: width 0.1s linear;
  z-index: -1;
}

.track-item:hover{
  background: rgba(0, 0, 0, 0.06);
}

.track-item.active{
  border: 1px dotted rgba(205, 86, 11, 0.4);
}

.track-item.active::before{
  background: rgba(207, 106, 69, 0.2);
}

.track-item.active::after{
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: var(--orange);
  z-index: 2;
}

.track-name{
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.track-item.active .track-name{
  font-weight: 600;
}

.track-duration{
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 1rem;
  text-align: right;
  position: relative;
  z-index: 1;
  min-width: 3.5rem;
}

.track-player{
  display: none;
}

/* Reviews */
.reviews-carousel-wrapper{
  position: relative;
  margin-top: 1.4rem;
  padding-right: 2.5rem;
}

.reviews-carousel{
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.reviews-carousel::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 0.95) 100%);
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.reviews-track{
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: flex-start;
}

.review{
  flex: 0 0 calc(100% - 2rem);
  max-width: 800px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  margin-right: 1.2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.review.active{
  background: rgba(205, 86, 11, 20%);
  border: 1px solid rgb(205 86 11);
}

.review:last-child{
  margin-right: 0;
}

.review-photo{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  shape-outside: circle(50%);
  shape-margin: 12px;
  margin: 0 1rem 0.5rem 0;
  border: 2px solid var(--line);
  display: block;
  transition: none;
}

@media (hover: hover) and (pointer: fine){
  .review-photo:hover{ transform: none; }
}

.review blockquote{ 
  margin: 0; 
  font-size: 1.05rem; 
  flex: 1;
}

.review figcaption{ 
  margin-top: .75rem; 
  color: var(--muted); 
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author{
  flex: 1;
}

/* Carousel controls */
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: all 0.2s ease;
  color: var(--text);
}

.carousel-btn:hover{
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 6px 16px rgba(207,106,69,.3);
}

.carousel-btn:active{
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev{
  left: -22px;
}

.carousel-btn-next{
  right: -22px;
}

/* Listen carousel buttons - centered on album cover */
.listen-carousel-prev,
.listen-carousel-next{
  top: calc(50% - 40px);
}

.listen-carousel-prev:active,
.listen-carousel-next:active{
  transform: translateY(-50%) scale(0.95);
}

.carousel-indicators{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.carousel-indicator{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.carousel-indicator:hover{
  background: var(--muted);
}

.carousel-indicator.active{
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Studio Gallery */
.studio-gallery-carousel-wrapper{
  position: relative;
  margin-top: 1.4rem;
}

.studio-gallery-carousel-wrapper .carousel-btn{
  display: none;
}

.studio-gallery-carousel-wrapper.has-pages .carousel-btn{
  display: flex;
}

.studio-gallery-indicators{
  display: none;
}

.studio-gallery-indicators.has-pages{
  display: flex;
}

.studio-gallery-carousel{
  overflow: hidden;
}

.studio-gallery-track{
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.studio-gallery-page{
  flex: 0 0 100%;
  min-width: 0;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: .9rem;
}

.gallery-item{
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 3 / 2;
}

.gallery-slot-left-top{ grid-column: 1; grid-row: 1; }
.gallery-slot-left-bottom{ grid-column: 1; grid-row: 2; }
.gallery-slot-right-top{ grid-column: 3; grid-row: 1; }
.gallery-slot-right-bottom{ grid-column: 3; grid-row: 2; }

.gallery-slot-middle{
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: auto;
  height: 100%;
}

#gear .gallery-item{
  border: 2px solid rgb(0, 0, 0);
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 10;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img{
  transform: scale(1.05);
}

.gallery-item-large{
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item-large img{
  object-position: center;
  transform: scale(1.15);
}

.gallery-item-large:hover img{
  transform: scale(1.2);
}

.gallery-item-tall{
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item-tall img{
  object-position: center;
}

.gallery-item-wide{
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-item-wide img{
  object-position: center;
  transform: scale(1.15);
}

.gallery-item-wide:hover img{
  transform: scale(1.2);
}

/* Gear section */
#gear{
  background: var(--ink) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

#gear .headline,
#gear h2,
#gear h3,
#gear p,
#gear .subhead{
  color: white;
}

#gear .subhead{
  color: rgba(255, 255, 255, 0.8);
}

.gear-lists{
  margin-top: 1.8rem;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gear-lists > h2,
.gear-lists > p.subhead{
  grid-column: 1 / -1;
}

.gear-lists > h2.headline{
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: normal;
}

.gear-lists > p.subhead{
  margin-top: -0.4rem;
  margin-bottom: 15px;
  padding: 0;
}

.gear-block{
  border-left: 3px solid var(--orange);
  padding-left: .9rem;
}

.gear-block h3{ margin: 0 0 .6rem; color: white; }
.gear-block ul{ margin: 0; padding-left: 1.1rem; color: rgba(255, 255, 255, 0.8); }
.gear-block li{ margin: .3rem 0; }
.gear-block li::before{
  color: var(--orange);
}

/* Contact */
.contact{
  margin-top: 1.4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: white;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.contact label{
  display:block;
  margin-bottom: .9rem;
}

.contact span{
  display:block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: .35rem;
}

.contact input, .contact textarea{
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  font: inherit;
}

.contact input:focus, .contact textarea:focus{
  outline: 3px solid #000;
  border-color: rgba(205, 86, 11, 0.6);
}

.contact .btn{
  display: flex;
  margin: 0 auto;
}

.form-message{
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  font-weight: 600;
  border: 1px solid;
}

.form-message.success{
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border-color: #4caf50;
}

.form-message.error{
  background: rgba(205, 86, 11, 20%);
  color: #cf6a45;
  border-color: #cf6a45;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  background: rgba(0,0,0,.02);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.footer-links a{ color: var(--text); text-decoration: none; }
.footer-links a:hover{ color: var(--text); }

/* Sticky Media Player */
.sticky-player{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1rem;
}

.sticky-player.visible{
  transform: translateY(0);
}

/* Add bottom padding to body when sticky player is visible */
body:has(.sticky-player.visible){
  padding-bottom: 100px;
}

.sticky-player-content{
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-player-cover{
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.sticky-player-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-player-info{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sticky-player-track-title{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-player-album-title{
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-player-progress-wrapper{
  margin: 0.4rem 0 0.2rem;
}

.sticky-player-progress-bar{
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sticky-player-progress-fill{
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.sticky-player-time{
  font-size: 19px;
  color: var(--muted);
  font-family: 'Coolvetica', sans-serif;
}


.sticky-player-controls{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.sticky-player-volume-wrapper{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-player-volume-btn{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.2s ease;
  padding: 0;
}

.sticky-player-volume-btn:hover{
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--orange);
  color: var(--orange);
}

.sticky-player-volume-slider-wrapper{
  width: 80px;
}

.sticky-player-volume-slider{
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.sticky-player-volume-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-player-volume-slider::-webkit-slider-thumb:hover{
  transform: scale(1.2);
  background: var(--orange2);
}

.sticky-player-volume-slider::-moz-range-thumb{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.sticky-player-volume-slider::-moz-range-thumb:hover{
  transform: scale(1.2);
  background: var(--orange2);
}

.sticky-player-play-btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-right: 0.75rem;
}

.sticky-player-play-btn:hover{
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--orange);
  color: var(--orange);
}

.sticky-player-play-btn:active{
  transform: scale(0.95);
}

.sticky-player-listing-btn{
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 0;
  font-family: 'Coolvetica', sans-serif;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.sticky-player-listing-btn:hover{
  background: var(--orange2);
}

.sticky-player-close-btn{
  display: none;
  position: absolute;
  top: -21px;
  right: 0px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 10;
}

.sticky-player:not(.visible) .sticky-player-close-btn{
  display: none !important;
}

.sticky-player-close-btn:hover{
  border-color: var(--orange);
  color: var(--orange);
}

.sticky-player-close-btn:active{
  transform: scale(0.95);
}

/* Lightbox */
.lightbox{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active{
  display: flex;
  opacity: 1;
}

.lightbox-content{
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.lightbox-image{
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox-credit{
  color: rgb(112 112 112 / 80%);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 33px;

}

.lightbox-close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.5);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover{
  background: rgba(0,0,0,.8);
  border-color: white;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.5);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-prev:hover,
.lightbox-next:hover{
  background: rgba(0,0,0,.8);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev{
  left: 20px;
}

.lightbox-next{
  right: 20px;
}

/* Card component */
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.4rem;
  background: white;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  height: fit-content;
}

.card h3{ margin: .2rem 0 1rem; }
.facts{ padding-left: 1.1rem; color: var(--muted); }
.facts strong{ color: var(--text); }

/* ============================================
   TABLET STYLES (max-width: 980px)
   ============================================ */

@media (max-width: 980px){
  .two-col{ 
    grid-template-columns: 1fr; 
  }
  
  .listen-track .listen-card{
    flex: 0 0 calc(50% - 0.6rem);
  }
  
  .listen-carousel-wrapper{ 
    margin-left: 1rem; 
    margin-right: 1rem; 
  }
  
  .reviews-carousel-wrapper{ 
    margin-left: 1rem; 
    margin-right: 1rem; 
  }
  
  .carousel-btn-prev{ 
    left: -12px; 
  }
  
  .carousel-btn-next{ 
    right: -12px; 
  }
  
  /* Listen carousel buttons - centered on album cover */
  .listen-carousel-prev,
  .listen-carousel-next{
    top: calc(50% - 40px);
  }
  
  .about-photo{
    width: 300px;
    max-width: 44%;
  }
  
  .gear-lists{ 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  }
  
  .overhang-logo{ 
    left: 1.2rem; 
  }
  
  .about-text-container{
    max-width: 100%;
    min-width: 0;
  }
  
  .about-text-inner{
    padding: 1.8rem 2rem;
  }
  
  #services{
    background-position: right center;
  }
}

/* ============================================
   MOBILE STYLES (max-width: 760px)
   ============================================ */

@media (max-width: 760px){
  /* Navigation */
  .nav{ 
    display:none; 
  }
  
  .nav-toggle{ 
    display:inline-block; 
  }

  .nav.mobile-open{
    display:flex;
    position:absolute;
    right: 0;
    top: 64px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .8rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 155px;
    box-shadow: var(--shadow);
    z-index: 110;
  }
  
  .nav.mobile-open a{
    padding: .55rem .75rem;
    border-radius: 12px;
  }
  
  .nav.mobile-open a:hover{
    background: rgba(0,0,0,.04);
  }
  
  /* Typography */
  .headline{
    font-size: 46px;
    line-height: 46px;
    margin-bottom: 19px;
  }
  
  /* Hero */
  .hero h1{
    font-size: 44px;
    line-height: 46px;
    margin-bottom: 10px;
  }
  
  /* About section */
  .about-photo{
    float: none;
    width: min(360px, 100%);
    max-width: 100%;
    max-height: 60vh;
    margin: 0.75rem auto 1rem auto;
    shape-outside: none;
  }
  
  #about{
    background-position: center;
  }
  
  .about-text-container{
    max-width: 100%;
    min-width: auto;
  }
  
  .about-text-inner{
    padding: 1.5rem 1.5rem;
  }
  
  /* Listen carousel */
  .listen-track .listen-card{
    flex: 0 0 100%;
  }
  
  /* Listen carousel buttons - centered on album cover */
  .listen-carousel-prev,
  .listen-carousel-next{
    top: calc(50% - 40px);
  }
  
  /* Reviews */
  .review{
    flex: 0 0 80%;
    max-width: 100%;
    margin-right: 0;
  }
  
  .review-photo{
    width: 120px;
    height: 120px;
  }
  
  .reviews-carousel-wrapper{
    padding-right: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }
  
  .reviews-carousel::after{
    display: none;
  }
  
  /* Studio Gallery */
  .studio-gallery-track{ 
    gap: 0.75rem; 
  }
  
  .gallery-grid{
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  
  .gallery-grid .gallery-item{
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  
  /* Sticky Media Player */
  .sticky-player-content{
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .sticky-player-cover{
    width: 48px;
    height: 48px;
  }
  
  .sticky-player-track-title{
    font-size: 0.85rem;
  }
  
  .sticky-player-album-title{
    font-size: 0.8rem;
  }
  
  .sticky-player-time{
    font-size: 15px;
  }
  
  .sticky-player-controls{
    gap: 0.5rem;
  }
  
  .sticky-player-volume-wrapper{
    display: none;
  }
  
  .sticky-player-volume-btn{
    display: none;
  }
  
  .sticky-player-volume-slider-wrapper{
    display: none;
  }
  
  .sticky-player-play-btn{
    width: 40px;
    height: 40px;
  }
  
  .sticky-player-listing-btn{
    padding: 0.2rem 0.4rem;
    font-size: 17px;
  }
  
  .sticky-player-close-btn{
    display: flex;
  }
  
  .sticky-player:not(.visible) .sticky-player-close-btn{
    display: none !important;
  }
  
  /* Lightbox */
  .lightbox-close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  
  .lightbox-prev,
  .lightbox-next{
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev{
    left: 10px;
  }
  
  .lightbox-next{
    right: 10px;
  }
  
  .lightbox-content{
    max-width: 95vw;
    max-height: 85vh;
  }
  
  .lightbox-credit{
    font-size: 0.8rem;
  }
}
