/* style.css */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#555555;

  --black:#000000;
  --white:#ffffff;

  --red:#c10f2d;
  --red2:#8e0b1f;
  --gold:#b58a2b;

  --shadow: 0 18px 50px rgba(0,0,0,.20);
  --radius: 18px;

  --container: 1180px;

  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  background: var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.95; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.12);
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  position:relative;
}

.brand{ display:flex; align-items:center; min-width:140px; }
.brand-mark{ width:160px; height:auto; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:999px;
  background: rgba(255,255,255,.90);
}
.nav a{
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  color:#111111;
  opacity:.92;
}
.nav a:hover{ background: rgba(0,0,0,.05); }

.social{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.90);
}
.icon-btn svg{ width:18px; height:18px; fill:#111111; opacity:.9; }

/* ✅ Mobile menu button (hidden on desktop) */
.menu-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.menu-btn{
  display:none; /* only show on mobile */
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.90);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.menu-btn svg{
  width:22px;
  height:22px;
}
.menu-btn svg path{
  stroke:#111111;
  stroke-width:2.6;
  stroke-linecap:round;
  fill:none;
  opacity:.92;
}

/* ✅ Mobile drawer */
.menu-overlay{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(3px);
  z-index:80;
}

.mobile-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100dvh;
  width:min(360px, 86vw);
  background:#ffffff;
  color:#111111;
  border-left: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  z-index:90;
  transform: translateX(102%);
  transition: transform .22s ease;
  display:flex;
  flex-direction:column;
  padding: 14px;
}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 6px 2px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.drawer-title{
  font-weight:900;
  letter-spacing:.02em;
}
.drawer-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  display:grid;
  place-items:center;
  cursor:pointer;
  background: rgba(0,0,0,.03);
}
.drawer-close svg{ width:20px; height:20px; }
.drawer-close svg path{
  stroke:#111111;
  stroke-width:2.6;
  stroke-linecap:round;
  fill:none;
  opacity:.9;
}

.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-top: 12px;
}
.drawer-nav a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  font-weight: 900;
}
.drawer-nav a:hover{
  background: rgba(0,0,0,.06);
}

/* Open state */
.menu-toggle:checked ~ .menu-overlay{ display:block; }
.menu-toggle:checked ~ .mobile-drawer{ transform: translateX(0); }

/* Hero */
.hero{
  position:relative;
  min-height:40vh;
  display:grid;
  align-items:stretch;
}
.hero-media{
  position:absolute;
  inset:0;
  background: url("assets/hero.jpg") center/cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.80), rgba(0,0,0,.35) 55%, rgba(0,0,0,.70));
}
.hero-inner{
  position:relative;
  display:grid;
  align-items:center;
  padding:30px 0;
}

/* ✅ More transparent presave block */
.hero-card{
  width:min(680px, 100%);
  background: rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  color:#ffffff;
}
.presave-card{
  background: rgba(0,0,0,.01);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.16);
  margin-top:280px;
}

.eyebrow{
  margin:0 0 10px;
  color: var(--gold);
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.hero-title{
  margin:0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height:1.12;
}
.hero-sub{
  margin: 12px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 16px;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.chip{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color: rgba(255,255,255,.80);
}

/* Sections */
.section{ padding: 72px 0; }
.section.alt{
  background:#000000;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color:#ffffff;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.section-head h2{
  margin:0;
  font-family: var(--serif);
  font-size: 32px;
}
.section-head p{ margin:0; color: var(--muted); }
.section.alt .section-head p{ color: rgba(255,255,255,.75); }
.subtitle{ margin: 8px 0 0; color: var(--muted); font-weight:600; }

/* Grid / Cards */
.grid{ display:grid; gap:18px; }
.music-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.video-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.section.alt .card{
  background:#000000;
  border:1px solid rgba(255,255,255,.10);
  color:#ffffff;
}
.section:not(.alt) .card{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.12);
  color:#111111;
}

.card-body{ padding: 16px 16px 18px; }
.card-title{ margin:0; font-size:16px; font-weight:800; }
.card-meta{ margin:6px 0 0; font-size:13px; }
.section.alt .card-meta{ color: rgba(255,255,255,.75); }
.section:not(.alt) .card-meta{ color: #555555; }

.card-actions{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#ffffff;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.section:not(.alt) .btn{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  color:#111111;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}
.section:not(.alt) .btn:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.18);
}
.btn.primary{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,255,255,.10);
  color:#ffffff;
}
.btn.ghost{
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.16);
  color:#ffffff;
}
.btn.small{ padding: 10px 12px; border-radius: 12px; font-size: 12px; }

/* Videos: clickable thumbnails */
.video-link{ display:block; position:relative; }
.thumb{ position:relative; width:100%; aspect-ratio: 16/9; background:#000; }
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
  filter: contrast(1.02);
}
.play{
  position:absolute;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  transform: translate(-50%,-50%);
  border-radius: 18px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.play::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%,-50%);
  width:0;
  height:0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  opacity:.95;
}
.video-link:hover .thumb img{ filter: contrast(1.08) saturate(1.05); }

/* About */
.about-layout{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items:start;
}
.about-aside{ display:grid; gap:14px; }

.portrait{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.12);
  background:#ffffff;
}
.portrait img{
  width:100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-highlights{ display:grid; gap:10px; }
.pill{
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  color:#333333;
}

.about-content{
  background:#000000;
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  color:#ffffff;
}

/* Language toggle */
.lang-toggle{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.lang-toggle input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.lang-toggle label{
  cursor:pointer;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight:800;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Hide both panels by default */
.lang-panels .panel{ display:none; }

/* Toggle using :has() */
.about-content:has(#lang-es:checked) .lang-panels .panel-es{ display:block; }
.about-content:has(#lang-en:checked) .lang-panels .panel-en{ display:block; }

.about-content:has(#lang-es:checked) label[for="lang-es"],
.about-content:has(#lang-en:checked) label[for="lang-en"]{
  background: linear-gradient(135deg, rgba(181,138,43,.32), rgba(193,15,45,.22));
  color:#ffffff;
  border-color: rgba(255,255,255,.18);
}

.panel p{
  margin:0 0 14px;
  color: rgba(255,255,255,.92);
}
.panel p:last-child{ margin-bottom:0; }

/* Reviews */
.reviews{ display:grid; gap:14px; }
.review{
  background:#000000;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
  color:#ffffff;
}
.review-top{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  align-items:baseline;
  margin-bottom: 10px;
}
.review-source{
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
}
.review-date{
  color: rgba(181,138,43,.95);
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.12em;
  text-transform: uppercase;
}
.review blockquote{
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid rgba(181,138,43,.5);
}
.review blockquote p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.90);
  font-size: 14px;
}
.review blockquote p:last-child{ margin-bottom:0; }

/* Contact */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:22px;
}
.contact-card{ padding: 18px; }
.contact-link{
  display:inline-block;
  margin-top:6px;
  font-weight:900;
  text-decoration: underline;
  text-decoration-color: rgba(181,138,43,.75);
  text-underline-offset: 4px;
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 22px 0;
  background:#ffffff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.site-footer p{ margin:0; color:#555555; font-size:13px; }

/* Responsive */
@media (max-width: 980px){
  .music-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-layout{ grid-template-columns: 1fr; }
  .brand-mark{ width: 140px; }
  .nav{ gap:10px; }
}

@media (max-width: 640px){
  .nav{ display:none; }              /* hide desktop nav on mobile */

  .menu-btn{ display:grid; }         /* show hamburger only on mobile */

  .hero-card{ padding: 20px; }
  .section{ padding: 56px 0; }
  .music-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }

  .container{ width: calc(100% - 28px); }
}

/* Music cover art: perfect squares */
.card-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.icon-btn{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.icon-btn svg,
.icon-btn img{
  width:18px;
  height:18px;
  display:block;
}
.spotify-icon{
  width:18px;
  height:18px;
}
/* Make header right-side icons evenly spaced + aligned */
@media (max-width: 640px){
  .header-inner{
    gap:12px; /* optional: keeps logo from crowding */
  }

  /* Put social + menu into a single icon row */
  .social{
    display:flex !important;
    align-items:center;
    gap:10px;              /* equal spacing between ALL icons */
  }

  /* Make every icon button the same size */
  .icon-btn,
  .menu-btn{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }

  /* Keep the artwork centered + same size */
  .icon-btn svg,
  .icon-btn img,
  .menu-btn svg{
    width:18px;
    height:18px;
    display:block;
  }
}
@media (max-width: 640px){
  /* tighten space between IG/YT/Spotify group and the menu */
  .social{ gap:8px; }               /* spacing BETWEEN the icons */
  .social{ margin-right:-6px; }     /* pulls the whole icon group closer to the menu */
}
html{
  scroll-padding-top: 120px;
}
/* ===== HEADER ICON FIX (paste near your header styles) ===== */

/* 1) Make the menu button NEVER show on desktop */
.menu-btn{ display:none !important; }

/* 2) On mobile: keep Spotify/YT/IG tight and make them sit right next to the menu */
@media (max-width: 640px){

  /* desktop nav hidden on mobile (keep) */
  .nav{ display:none; }

  /* show hamburger ONLY on mobile */
  .menu-btn{ display:grid !important; }

  /* put the three social icons to the RIGHT, close to the menu */
  .social{
    order: 3;
    display:flex !important;
    align-items:center;
    gap:8px;
    margin-left: 45px;   /* pushes social toward the menu side */
  }

  /* make menu immediately after the social icons */
  .menu-btn{
    order: 4;
    margin-left: 0px;   /* space between IG and menu */
  }

  /* optional: make all 4 buttons same size */
  .icon-btn,
  .menu-btn{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }

  .icon-btn svg,
  .icon-btn img,
  .menu-btn svg{
    width:18px;
    height:18px;
    display:block;
  }
}

/* READ REVIEW link */
.review-read{
  display:inline-flex;
  margin-top:12px;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.08em;
  font-size:12px;
  text-transform: uppercase;
}
.review-read:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}
/* Move the top-right icon group (Spotify / YouTube / Instagram / Menu) left together */
.social,
.menu-btn{
  transform: translateX(-30px); /* increase number to move further left */
}
/* Fix platform chips inside the Music section */
#music .chip{
  color:#111;
  border:1px solid rgba(0,0,0,.15);
  background:rgba(0,0,0,.05);
}

#music .hero-badges{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
  margin-top: -20px;
}
/* Reduce presave box spacing on mobile only */
@media (max-width:640px){
  .presave-card{
    margin-top:20px;
  }
}
/* Move presave box DOWN on mobile only */
@media (max-width:640px){
  .presave-card{
    margin-top:500px;
  }
}
