/* Essential Mixtape — hero composition only */

:root{
  --black:#050505;
  --white:#f4f1e9;
  --red:#ef1f27;
  --gold:#c89b37;
}

*{box-sizing:border-box}
html,body{margin:0}
body{
  background:var(--black);
  color:var(--white);
  font-family:"Inter",Arial,sans-serif;
}
a{color:inherit;text-decoration:none}

/* Header */
.site-header{
  height:64px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  background:#030303;
  border-top:1px solid rgba(255,255,255,.22);
  border-bottom:1px solid rgba(255,255,255,.12);
  position:relative;
  z-index:20;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}
.brand-mark{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:#0a0a0a;
  font-family:"Anton",Impact,sans-serif;
  font-size:1.3rem;
}
.brand-name{
  font-size:.76rem;
  letter-spacing:.17em;
}
.site-nav{
  display:flex;
  gap:clamp(14px,2vw,30px);
  align-items:center;
  font-size:.7rem;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.site-nav a{
  padding:23px 0 20px;
  border-bottom:3px solid transparent;
}
.site-nav a.active,
.site-nav a:hover{border-bottom-color:var(--red)}

/* Hero */
.hero{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#030303;
}

.hero-full-image{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
}

/* Fade only; the image itself is left untouched */
.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.82) 18%,
      rgba(0,0,0,.66) 30%,
      rgba(0,0,0,.38) 42%,
      rgba(0,0,0,.10) 54%,
      rgba(0,0,0,0) 66%
    );
  pointer-events:none;
}

/* Branding floats above the image */
.hero-branding{
  position:absolute;
  top:42px;
  left:34px;
  width:72%;
  max-width:1653px;
  z-index:3;
}

.kicker{
  margin:0 0 8px;
  position:relative;
  z-index:8;
  font-family:"Anton",Impact,sans-serif;
  font-size:3.9rem;
  line-height:1;
  transform:rotate(-2deg);
}

h1{
  margin:0;
  font-family:"Anton",Impact,sans-serif;
  font-size:clamp(11.693rem,15.322vw,16.531rem);
  line-height:.80;
  letter-spacing:-.02em;
  transform:rotate(-2deg);
  text-shadow:0 2px 0 #000,0 5px 18px rgba(0,0,0,.35);
}

h1 span{color:var(--red)}

.live-stamp{
  display:inline-block;
  margin:-8px 0 10px 725px;
  padding:16px 56px;
  border:4px solid var(--white);
  background:rgba(0,0,0,.18);
  font-family:"Anton",Impact,sans-serif;
  font-size:9.2rem;
  line-height:1;
  transform:rotate(-8deg);
}

.hero-branding h2{
  margin:10px 0 8px;
  font-family:"Permanent Marker",cursive;
  font-size:2.75rem;
  font-weight:400;
  white-space:nowrap;
}

.hero-branding h2::after{
  content:"";
  display:block;
  width:306px;
  height:5px;
  margin-top:2px;
  background:var(--red);
  transform:rotate(-2deg);
}

.format{
  margin:12px 0 8px;
  font-family:"Anton",Impact,sans-serif;
  font-size:1.94rem;
  line-height:1.08;
}

.era{
  margin:14px 0 9px;
  font-family:"Permanent Marker",cursive;
  font-size:1.6rem;
}

.artists-primary{
  margin:0;
  font-family:"Anton",Impact,sans-serif;
  font-size:1.29rem;
  line-height:1.45;
}

.artists-primary b{
  color:var(--red);
  padding:0 4px;
}

.artists-secondary{
  margin:4px 0 0;
  max-width:650px;
  color:#ddd7ce;
  font-size:1.03rem;
  line-height:1.45;
}

.hero-note{
  position:absolute;
  top:58px;
  right:35px;
  width:360px;
  z-index:3;
  font-family:"Permanent Marker",cursive;
  font-size:6rem;
  line-height:1.05;
  text-align:left;
  overflow:visible;
  transform:rotate(-5deg);
  text-shadow:0 2px 10px rgba(0,0,0,.8);
}

@media(max-width:1100px){
  .hero-branding{
    width:58%;
    top:28px;
    left:24px;
  }
  h1{
    font-size:clamp(4.6rem,8vw,6.6rem);
  }
  .live-stamp{
    margin-left:280px;
  }
  .hero-branding h2{
    font-size:1.8rem;
  }
  .format{
    font-size:1.3rem;
  }
  .era{
    font-size:1.1rem;
  }
  .artists-primary{
    font-size:.9rem;
  }
  .artists-secondary{
    font-size:.75rem;
  }
}

@media(max-width:760px){
  .site-header{
    height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding-top:14px;
  }
  .site-nav{
    width:100%;
    overflow-x:auto;
  }
  .hero-branding{
    position:absolute;
    top:20px;
    left:18px;
    width:78%;
  }
  .hero-shade{
    background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.58) 45%,rgba(0,0,0,.1) 74%);
  }
  .live-stamp{
    margin-left:0;
  }
  .hero-note{
    display:none;
  }
  .hero-branding h2{
    white-space:normal;
  }
}


/* =========================================================
   BOOKINGS & ENQUIRIES STRIP
   ========================================================= */
.booking-strip{
  position:relative;
  background:#050505;
  padding:18px 28px 22px;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
}

/* soft distressed/faded edges */
.booking-strip::before,
.booking-strip::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:18px;
  pointer-events:none;
  opacity:.48;
  background:
    radial-gradient(ellipse at 12px 8px, rgba(239,31,39,.6) 0 3px, transparent 4px),
    radial-gradient(ellipse at 46px 5px, rgba(255,255,255,.20) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(239,31,39,.32) 18%, transparent 40%, rgba(255,255,255,.14) 68%, transparent);
  background-size:58px 16px,74px 15px,100% 100%;
}
.booking-strip::before{top:0}
.booking-strip::after{
  bottom:0;
  transform:rotate(180deg);
}

.booking-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.35fr) 2px minmax(420px,.85fr);
  gap:28px;
  max-width:1540px;
  margin:0 auto;
  align-items:stretch;
}

.booking-message{
  position:relative;
  min-height:220px;
  display:flex;
  align-items:center;
  background:#d91f26;
  overflow:hidden;
  box-shadow:none;
}

/* distressed red panel border */
.booking-message::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.30) 0,
      transparent 12px,
      transparent calc(100% - 12px),
      rgba(0,0,0,.30) 100%),
    linear-gradient(to right,
      rgba(0,0,0,.30) 0,
      transparent 12px,
      transparent calc(100% - 12px),
      rgba(0,0,0,.30) 100%);
  opacity:.75;
}

.booking-message::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 8px 4px, rgba(0,0,0,.78) 0 3px, transparent 4px),
    radial-gradient(ellipse at 28px 1px, rgba(0,0,0,.58) 0 4px, transparent 5px),
    radial-gradient(ellipse at 52px 6px, rgba(0,0,0,.72) 0 3px, transparent 4px),
    radial-gradient(ellipse at 10px calc(100% - 2px), rgba(0,0,0,.72) 0 4px, transparent 5px),
    radial-gradient(ellipse at 37px 100%, rgba(0,0,0,.62) 0 3px, transparent 4px),
    radial-gradient(ellipse at 63px calc(100% - 5px), rgba(0,0,0,.74) 0 4px, transparent 5px),
    radial-gradient(ellipse at 2px 18px, rgba(0,0,0,.68) 0 3px, transparent 4px),
    radial-gradient(ellipse at 100% 26px, rgba(0,0,0,.66) 0 3px, transparent 4px),
    radial-gradient(ellipse at 3px 82%, rgba(0,0,0,.58) 0 4px, transparent 5px),
    radial-gradient(ellipse at 100% 72%, rgba(0,0,0,.62) 0 4px, transparent 5px);
  background-size:
    68px 16px,
    83px 17px,
    101px 18px,
    71px 18px,
    93px 17px,
    109px 19px,
    18px 64px,
    19px 72px,
    20px 77px,
    18px 69px;
  background-repeat:
    repeat-x,
    repeat-x,
    repeat-x,
    repeat-x,
    repeat-x,
    repeat-x,
    repeat-y,
    repeat-y,
    repeat-y,
    repeat-y;
  opacity:.72;
}

.booking-message-content{
  position:relative;
  z-index:2;
  padding:28px 42px 32px;
}

.booking-message h2{
  margin:0;
  font-family:"Anton",Impact,sans-serif;
  font-size:clamp(3rem,4.2vw,5.3rem);
  line-height:.98;
  letter-spacing:.01em;
  color:#fff;
  text-shadow:0 3px 0 rgba(0,0,0,.12);
}

.booking-message p{
  margin:18px 0 8px 56px;
  font-family:"Permanent Marker",cursive;
  font-size:clamp(1.9rem,2.45vw,3rem);
  line-height:1;
  color:#fff;
  transform:rotate(-4deg);
  white-space:nowrap;
}

.booking-swoosh{
  display:block;
  width:58%;
  height:8px;
  margin:14px 0 0 85px;
  border-radius:50%;
  background:#fff;
  transform:rotate(-6deg);
  box-shadow:38px 2px 0 -2px #fff;
}

.booking-divider{
  width:2px;
  background:rgba(255,255,255,.92);
  margin:16px 0;
}

.booking-contact{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:8px 0 4px;
}

.contact-row{
  display:flex;
  align-items:center;
  gap:18px;
  margin:0 0 14px;
}

.contact-icon{
  flex:0 0 62px;
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--red);
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:2rem;
  line-height:1;
}

.email-icon{font-size:1.9rem}

.contact-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.contact-main{
  font-family:"Anton",Impact,sans-serif;
  font-size:2.15rem;
  line-height:1;
  color:#fff;
  letter-spacing:.01em;
}

.contact-email{
  font-size:1.55rem;
}

.contact-copy span{
  color:#eee;
  font-size:.95rem;
}

.booking-button{
  margin-top:4px;
  min-height:58px;
  padding:0 18px 0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:var(--red);
  color:#fff;
  border:2px solid rgba(255,255,255,.18);
  box-shadow:0 0 0 1px rgba(0,0,0,.5), inset 0 0 16px rgba(255,255,255,.06);
  font-family:"Anton",Impact,sans-serif;
  font-size:1.65rem;
  letter-spacing:.035em;
  text-transform:uppercase;
}

.booking-button b{
  font-family:Arial,sans-serif;
  font-size:2.7rem;
  line-height:1;
  font-weight:400;
  margin-top:-4px;
}

.booking-types{
  margin:9px 0 0;
  text-align:center;
  color:#ddd;
  font-size:1rem;
}

@media(max-width:1100px){
  .booking-inner{
    grid-template-columns:1fr;
    gap:18px;
  }
  .booking-divider{display:none}
  .booking-message{
    min-height:190px;
  }
  .booking-contact{
    max-width:700px;
    width:100%;
    margin:0 auto;
  }
}

@media(max-width:760px){
  .booking-strip{
    padding:14px 14px 18px;
  }
  .booking-message-content{
    padding:26px 24px 28px;
  }
  .booking-message h2{
    font-size:clamp(2.5rem,12vw,4.2rem);
  }
  .booking-message p{
    margin-left:12px;
    font-size:clamp(1.55rem,7vw,2.35rem);
    white-space:normal;
  }
  .booking-swoosh{
    width:72%;
    margin-left:20px;
  }
  .contact-icon{
    flex-basis:52px;
    width:52px;
    height:52px;
    font-size:1.6rem;
  }
  .contact-main{
    font-size:1.7rem;
  }
  .contact-email{
    font-size:1.12rem;
  }
  .booking-button{
    font-size:1.35rem;
  }
}


/* =========================================================
   SONGS / CASSETTE / FEATURE STRIP
   ========================================================= */
.song-section{
  position:relative;
  background:#050505;
  padding:0 14px;
}

.song-panel{
  position:relative;
  display:grid;
  grid-template-columns:minmax(250px,.95fr) minmax(320px,1.15fr) minmax(280px,.9fr);
  gap:26px;
  align-items:center;
  max-width:1540px;
  margin:0 auto;
  padding:34px 34px 30px;
  color:#111;
  background:
    linear-gradient(rgba(248,244,236,.97),rgba(248,244,236,.97)),
    radial-gradient(circle at 12px 10px, rgba(0,0,0,.12) 0 1px, transparent 2px);
  background-size:auto,18px 18px;
  overflow:hidden;
}

.song-panel::before,
.song-panel::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:28px;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 8px 5px, #050505 0 4px, transparent 5px),
    radial-gradient(ellipse at 28px 2px, #050505 0 3px, transparent 4px),
    radial-gradient(ellipse at 48px 8px, #050505 0 5px, transparent 6px);
  background-size:58px 22px;
  background-repeat:repeat-x;
  opacity:.95;
}
.song-panel::before{top:-7px}
.song-panel::after{bottom:-7px;transform:rotate(180deg)}

.song-copy{
  position:relative;
  z-index:2;
  align-self:center;
}

.song-copy h2{
  margin:0;
  font-family:"Anton",Impact,sans-serif;
  font-size:clamp(2.3rem,3vw,4rem);
  line-height:1;
  letter-spacing:.01em;
}
.song-copy h2 span{color:var(--red)}

.song-red-line{
  width:190px;
  height:6px;
  margin:12px 0 18px;
  background:var(--red);
  border-radius:999px;
  transform:rotate(-2deg);
}

.song-copy p{
  margin:0 0 26px;
  max-width:420px;
  font-size:1.02rem;
  line-height:1.42;
  color:#252525;
}

.song-list-button{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-width:260px;
  padding:14px 18px;
  border:2px solid #222;
  color:#111;
  background:rgba(255,255,255,.35);
  font-family:"Anton",Impact,sans-serif;
  font-size:1.28rem;
  letter-spacing:.02em;
}
.song-list-button b{
  font-family:Arial,sans-serif;
  font-size:2rem;
  line-height:.8;
  font-weight:400;
}

.cassette-wrap{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:280px;
  border-right:2px solid rgba(0,0,0,.34);
  padding-right:20px;
}
.cassette-wrap img{
  display:block;
  width:min(100%,520px);
  height:auto;
  filter:drop-shadow(0 8px 8px rgba(0,0,0,.32));
  transform:rotate(-1deg);
}

.feature-list{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.feature-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:15px;
  align-items:start;
}

.feature-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  color:#050505;
  font-family:Arial,sans-serif;
  font-weight:800;
  font-size:1.8rem;
  line-height:1;
}

.people-icon{font-size:1rem;letter-spacing:-4px}
.pin-icon{
  width:36px;
  height:48px;
  margin-left:8px;
  border-radius:50% 50% 50% 0;
  background:#050505;
  color:#fff;
  transform:rotate(-45deg);
}
.pin-icon::after{
  content:"";
  width:12px;
  height:12px;
  border-radius:50%;
  background:#f8f4ec;
}
.case-icon{
  border:5px solid #050505;
  width:44px;
  height:50px;
  margin-left:5px;
  font-size:0;
  border-radius:4px;
}

.feature-item h3{
  margin:0 0 3px;
  font-family:"Anton",Impact,sans-serif;
  font-size:1.45rem;
  line-height:1;
}
.feature-item p{
  margin:0;
  font-size:.95rem;
  line-height:1.3;
  color:#252525;
}


/* =========================================================
   CROWD / TESTIMONIAL
   ========================================================= */
.crowd-section{
  position:relative;
  max-width:1540px;
  margin:0 auto;
  min-height:420px;
  overflow:hidden;
  background:#090909;
}

.crowd-image{
  display:block;
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  object-position:center 52%;
  filter:grayscale(1) contrast(1.15) brightness(.74);
}

.crowd-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.62) 0%,rgba(0,0,0,.18) 36%,rgba(0,0,0,.04) 60%,rgba(0,0,0,.42) 100%),
    linear-gradient(0deg,rgba(0,0,0,.42),transparent 50%);
  pointer-events:none;
}

.testimonial{
  position:absolute;
  left:42px;
  top:58px;
  z-index:2;
  color:#fff;
  transform:rotate(-7deg);
}

.quote{
  margin:0;
  font-family:"Permanent Marker",cursive;
  font-size:clamp(1.9rem,2.4vw,3.2rem);
  line-height:1.02;
  text-shadow:0 2px 5px rgba(0,0,0,.8);
}

.quote-source{
  margin:22px 0 0 8px;
  font-family:Inter,Arial,sans-serif;
  font-size:.95rem;
  letter-spacing:.07em;
}

.quote-underline{
  display:block;
  width:170px;
  height:6px;
  margin:7px 0 0 18px;
  background:var(--red);
  transform:rotate(-4deg);
}

.music-lives{
  position:absolute;
  right:42px;
  top:70px;
  z-index:2;
  color:#fff;
  text-align:left;
  transform:rotate(3deg);
}

.music-lives p{
  margin:0;
  font-family:"Permanent Marker",cursive;
  font-size:clamp(2rem,2.8vw,3.5rem);
  line-height:.9;
  text-shadow:0 2px 6px rgba(0,0,0,.8);
}

.music-lives span{
  display:block;
  width:96px;
  height:6px;
  margin:16px 0 0 4px;
  background:var(--red);
  transform:rotate(-13deg);
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  max-width:1540px;
  margin:0 auto;
  min-height:100px;
  padding:0 28px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:22px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.18);
  background:#050505;
  color:#fff;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:.95rem;
  letter-spacing:.19em;
}

.footer-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#d8aa31;
  color:#080808;
  font-family:"Anton",Impact,sans-serif;
  font-size:1.5rem;
  letter-spacing:0;
}

.footer-tagline{
  font-size:.98rem;
  letter-spacing:.22em;
  white-space:nowrap;
  color:#ddd;
}
.footer-tagline b{
  color:var(--red);
  padding:0 12px;
}

.footer-socials{
  justify-self:end;
  display:flex;
  gap:18px;
  align-items:center;
  font-family:Arial,sans-serif;
  font-size:1.3rem;
}

@media(max-width:1100px){
  .song-panel{
    grid-template-columns:1fr 1fr;
  }
  .feature-list{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .cassette-wrap{border-right:0}
  .site-footer{
    grid-template-columns:1fr;
    text-align:center;
    padding:22px;
  }
  .footer-brand,
  .footer-socials{justify-self:center}
}

@media(max-width:760px){
  .song-panel{
    grid-template-columns:1fr;
    padding:30px 22px;
  }
  .cassette-wrap{
    min-height:0;
    padding:0;
  }
  .feature-list{
    grid-template-columns:1fr;
  }
  .crowd-section,
  .crowd-image{
    min-height:460px;
  }
  .testimonial{
    left:24px;
    top:44px;
  }
  .music-lives{
    right:20px;
    top:auto;
    bottom:36px;
  }
  .footer-tagline{
    white-space:normal;
    line-height:1.8;
  }
}


/* =========================================================
   PROMO VIDEO
   ========================================================= */
.promo-video-section{
  position:relative;
  background:#050505;
  padding:42px 28px 48px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.promo-video-inner{
  max-width:1320px;
  margin:0 auto;
}

.promo-video-heading{
  text-align:center;
  margin:0 auto 24px;
  max-width:900px;
}

.promo-kicker{
  margin:0 0 6px;
  font-family:"Permanent Marker",cursive;
  color:var(--red);
  font-size:1.25rem;
  transform:rotate(-2deg);
}

.promo-video-heading h2{
  margin:0;
  font-family:"Anton",Impact,sans-serif;
  font-size:clamp(2.8rem,4.4vw,5.2rem);
  line-height:.95;
  letter-spacing:.01em;
  color:#fff;
}

.promo-video-heading > p:last-child{
  margin:12px 0 0;
  color:#ddd;
  font-size:1.12rem;
}

.promo-video-frame{
  position:relative;
  width:min(100%,1120px);
  aspect-ratio:16 / 9;
  margin:0 auto;
  background:#000;
  border:2px solid rgba(255,255,255,.15);
  box-shadow:
    0 18px 45px rgba(0,0,0,.48),
    0 0 0 1px rgba(239,31,39,.18);
  overflow:hidden;
}

.promo-video-frame::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  box-shadow:inset 0 0 0 8px rgba(0,0,0,.18);
}

.promo-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

@media(max-width:760px){
  .promo-video-section{
    padding:30px 14px 34px;
  }
  .promo-video-heading{
    margin-bottom:18px;
  }
  .promo-video-heading h2{
    font-size:clamp(2.2rem,11vw,3.5rem);
  }
}


/* =========================================================
   REVISED CASSETTE + VIDEO PLACEMENT
   ========================================================= */

/* Cassette moved into the hero, immediately beneath the title/copy area. */
.hero-cassette{
  position:absolute;
  left:54px;
  top:690px;
  z-index:5;
  width:clamp(230px,20vw,390px);
  transform:rotate(-4deg);
  pointer-events:none;
}

.hero-cassette img{
  display:block;
  width:100%;
  height:auto;
  filter:drop-shadow(0 12px 14px rgba(0,0,0,.55));
}

/* The former cassette position now contains the embedded YouTube player. */
.cassette-wrap.video-wrap{
  min-height:0;
  padding:0 24px 0 0;
  align-self:center;
}

.video-wrap iframe{
  display:block;
  width:100%;
  max-width:560px;
  aspect-ratio:16 / 9;
  height:auto;
  border:0;
  background:#000;
  box-shadow:0 10px 22px rgba(0,0,0,.32);
}

/* Ensure the old cassette image styling cannot affect the iframe. */
.cassette-wrap.video-wrap img{
  display:none;
}

@media(max-width:1100px){
  .hero-cassette{
    top:auto;
    bottom:24px;
    left:32px;
    width:clamp(190px,26vw,300px);
  }

  .cassette-wrap.video-wrap{
    border-right:0;
    padding-right:0;
  }
}

@media(max-width:760px){
  .hero-cassette{
    position:relative;
    top:auto;
    bottom:auto;
    left:auto;
    width:min(72vw,280px);
    margin:18px 0 0;
  }

  .video-wrap iframe{
    max-width:none;
  }
}


/* =========================================================
   FINAL VIDEO EMBED — CASSETTE REMOVED
   ========================================================= */
.hero-cassette{
  display:none !important;
}

.cassette-wrap.video-wrap{
  position:relative;
  display:block;
  width:100%;
  min-height:0;
  padding:0 24px 0 0;
  border-right:2px solid rgba(0,0,0,.34);
  overflow:visible;
}

.video-wrap iframe{
  position:relative;
  z-index:5;
  display:block;
  width:100%;
  max-width:620px;
  aspect-ratio:16 / 9;
  height:auto;
  margin:0 auto;
  border:0;
  background:#000;
  box-shadow:0 10px 22px rgba(0,0,0,.32);
  pointer-events:auto;
}

@media(max-width:1100px){
  .cassette-wrap.video-wrap{
    padding-right:0;
    border-right:0;
  }
}

@media(max-width:760px){
  .video-wrap iframe{
    width:100%;
    max-width:none;
  }
}


/* =========================================================
   FEATURE ICONS — VECTOR VERSION MATCHING THE MOCKUP
   ========================================================= */
.feature-icon.svg-icon{
  width:54px;
  height:54px;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:0;
  border-radius:0;
  transform:none;
  color:#050505;
}

.feature-icon.svg-icon svg{
  display:block;
  width:48px;
  height:48px;
  fill:currentColor;
  overflow:visible;
}

/* Prevent legacy temporary icon rules from affecting SVGs. */
.feature-icon.svg-icon::before,
.feature-icon.svg-icon::after{
  content:none !important;
}

@media(max-width:760px){
  .feature-icon.svg-icon{
    width:50px;
    height:50px;
  }
  .feature-icon.svg-icon svg{
    width:44px;
    height:44px;
  }
}


/* Refined guitar and pint silhouettes */
.guitar-svg svg{
  width:52px !important;
  height:52px !important;
  transform:rotate(-7deg);
  transform-origin:center;
}

.pint-svg svg{
  width:48px !important;
  height:52px !important;
  transform:none;
}


/* Refined feature icons: microphone + cocktail glass */
.mic-svg svg{
  width:46px !important;
  height:52px !important;
  transform:none;
}

.cocktail-svg svg{
  width:50px !important;
  height:50px !important;
  transform:none;
}


/* =========================================================
   FOOTER SOCIAL ICONS
   ========================================================= */
.footer-socials{
  justify-self:end;
  display:flex;
  gap:16px;
  align-items:center;
}

.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  color:#fff;
  text-decoration:none;
  opacity:.95;
  transition:opacity .2s ease, transform .2s ease;
}

.social-icon:hover{
  opacity:1;
  transform:translateY(-1px);
}

.social-icon svg{
  display:block;
  width:100%;
  height:100%;
  fill:currentColor;
}

.social-icon.youtube{
  width:24px;
}

.social-icon.facebook{
  width:18px;
  height:22px;
}

.social-icon.instagram,
.social-icon.spotify{
  width:22px;
  height:22px;
}


/* =========================================================
   OBSIDIAN STUDIOS GOLD RING LOGO
   Source: ../images/gold-ring.png
   ========================================================= */
.brand-logo{
  display:block;
  width:42px;
  height:42px;
  object-fit:contain;
  flex:0 0 42px;
}

.footer-logo{
  display:block;
  width:46px;
  height:46px;
  object-fit:contain;
  flex:0 0 46px;
}

/* Retire the old generated C-in-circle marks. */
.brand-mark,
.footer-mark{
  display:none !important;
}


/* Social links: live destinations */
.social-icon{
  cursor:pointer;
}

.social-icon:focus-visible{
  outline:2px solid #fff;
  outline-offset:5px;
  border-radius:3px;
}
