:root{
  --bg: #eeeeee;
  --surface: #efefef;
  --surface-2: #ffffff;
  --text: #767676;
  --text-strong: #6f6f6f;
  --title: #1f1c19;
  --muted: #7a7a7a;
  --line: #cfcfcf;
  --line-soft: rgba(0,0,0,.08);
  --accent: #b69d87;
  --pill-bg: #adadad;
  --pill-text: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1380px;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--title);
  background: var(--bg);
  line-height: 1.5;
}

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

a{
  color: inherit;
  text-decoration: none;
}

button{
  font: inherit;
}

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

/* HEADER */

.header-minimal,
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(238,238,238,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.header-minimal .container,
.header-inner{
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav,
.main-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav a,
.main-nav a{
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav a:hover,
.main-nav a:hover{
  background: rgba(255,255,255,.7);
  color: var(--title);
}

.nav a.active,
.main-nav a.active{
  background: #ffffff;
  color: var(--title);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

/* INTRO */

.intro-minimal{
  padding: 72px 0 24px;
}

.intro-minimal-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: end;
  padding: 20px 0 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.intro-copy h1{
  margin: 14px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: .96;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--title);
}

.section-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.65);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.intro-minimal p{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* ÍNDICE */

.catalog-index{
  padding: 30px 0 24px;
}

.section-heading{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2{
  margin: 14px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--title);
}

.section-heading p{
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.index-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.index-card{
  display: block;
  border-radius: 14px;
  background: #f3f3f3;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.index-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.index-card img{
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 12px;
}

.index-card span{
  display: block;
  padding: 16px 18px 18px;
  font-weight: 700;
  font-size: .98rem;
  color: var(--title);
}

/* AMOR! DESDE AQUÍ CONTROLAMOS LOS ÁLBUMES QUE SON NOVEDAD */

.album-card--new .album-open{
  position: relative;
}

.album-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #6f6f6f;
  border: 1px solid rgba(0,0,0,.08);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

/* BLOQUES DE CATÁLOGO */

.catalog-block,
.album-section{
  padding: 56px 0 8px;
  scroll-margin-top: 110px;
}

.catalog-block:last-of-type,
.album-section--last{
  padding-bottom: 72px;
}

.album-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* DESTACAR 1 ALBUM EN CONCRETO*/

.catalog-block--hero{

  position: relative;

  padding: 72px 0;

}

.section-divider{

  width: 100%;

  height: 1px;

  background: #dcdcdc;

  margin: 48px 0;

}

.section-divider-2{

  width: 100%;

  height: 1px;

  background: linear-gradient(to right, transparent, #d0d0d0, transparent);

  margin: 56px 0;

}

.catalog-block--hero::before,

.catalog-block--hero::after{

  content: "";

  position: absolute;

  left: 0;

  width: 100%;

  height: 1px;

  background: #e5e5e5;

}

.catalog-block--hero::before{

  top: 0;

}

.catalog-block--hero::after{

  bottom: 0;

}

.catalog-block--hero{
  padding: 72px 0 32px;
}

.featured-single{
  display: grid;
  grid-template-columns: minmax(360px, 540px) 1fr;
  gap: 88px;
  align-items: center;
  min-height: 520px;
}

.featured-single-media{
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-single-media img{
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
}

.featured-single-copy h2{
  margin: 14px 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: .96;
  font-weight: 600;
  letter-spacing: -.03em;
}

.featured-single-copy p{
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

@media (max-width: 980px){
  .featured-single{
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .featured-single-media img{
    max-width: 460px;
  }
}

.catalog-block--featured{

  padding-top: 80px;

}

.featured-model{

  display: grid;

  grid-template-columns: minmax(320px, 520px) 1fr;

  gap: 72px;

  align-items: center;

  margin-bottom: 72px;

}

.featured-model-media{

  display: flex;

  justify-content: center;

  align-items: center;

}

.featured-model-media img{

  width: 100%;

  max-width: 520px;

  height: auto;

  display: block;

  object-fit: contain;

}

.featured-model-copy h2{

  margin: 14px 0 18px;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2.8rem, 5vw, 4.6rem);

  line-height: .95;

  font-weight: 600;

  letter-spacing: -.03em;

}

.featured-model-copy p{

  max-width: 560px;

  margin: 0;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.85;

}

@media (max-width: 980px){

  .featured-model{

    grid-template-columns: 1fr;

    gap: 28px;

    margin-bottom: 48px;

  }

  .featured-model-media{

    order: 1;

  }

  .featured-model-copy{

    order: 2;

  }

  .featured-model-copy h2{

    font-size: 3rem;

  }

}

/* NUEVO ESTILO DE TARJETA */

.album-card{
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.album-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.album-open{
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.album-card img{
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 26px 26px 8px;
  transition: transform .35s ease;
}

.album-card:hover img{
  transform: scale(1.01);
}

.album-info{
  padding: 12px 26px 24px;
}

.album-card h3{
  margin: 0 0 18px;
  font-size: 0;
  line-height: 0;
}

/* texto descriptivo grande */
.album-card p{
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.45;
}

/* si usas <strong> dentro del texto */
.album-card p strong{
  color: var(--text-strong);
  font-weight: 800;
}

.album-card p:last-of-type{
  margin-bottom: 0;
}

/* Etiqueta inferior estilo botón */
.album-info::after{
  content: attr(data-label);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ICONOS */

.footer-text-wrap{
  display: flex;
  flex-direction: column;
}

.footer-line-1{
  margin: 0;
}

.footer-line-2{
  margin: 4px 0 0;
  font-size: 0.9em;
  opacity: 0.7;
}

.pro-footer-icons i{
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

/* FOOTER */

.footer-minimal,
.site-footer{
  border-top: 1px solid rgba(0,0,0,.05);
  background: rgba(255,255,255,.35);
}

.footer-minimal .container,
.footer-inner{
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-minimal p,
.footer-minimal a,
.footer-inner p,
.footer-inner a{
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.footer-minimal a:hover,
.footer-inner a:hover{
  color: var(--title);
}

/* LIGHTBOX */

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16,14,12,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox.is-open{
  display: flex;
}

.lightbox-dialog{
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
}

.lightbox-dialog img{
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  background: #fff;
}

.lightbox-dialog p{
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
}

.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 1200px){
  .index-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .album-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .intro-minimal-inner,
  .section-heading{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .index-grid,
  .album-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-minimal .container,
  .header-inner{
    padding: 14px 0;
  }
}

@media (max-width: 640px){
  .container{
    width: min(var(--container), calc(100% - 24px));
  }

  .intro-minimal{
    padding: 56px 0 24px;
  }

  .intro-copy h1{
    font-size: 3.2rem;
  }

  .index-grid,
  .album-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .index-card img{
    height: 300px;
  }

  .album-card img{
    height: 360px;
    padding: 20px 20px 6px;
  }

  .album-info{
    padding: 10px 20px 20px;
  }

  .album-card p{
    font-size: 1rem;
  }

  .album-info::after{
    min-height: 62px;
    margin-top: 22px;
  }

  .nav,
  .main-nav{
    gap: 8px;
  }

  .nav a,
  .main-nav a{
    font-size: .9rem;
    padding: 9px 12px;
  }

  .footer-minimal .container,
  .footer-inner{
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }

  .lightbox{
    padding: 16px;
  }

  .lightbox-close{
    top: 10px;
    right: 10px;
  }
}