:root{
  --bg: #f6f2ee;
  --paper: rgba(255,255,255,0.70);
  --text: #1f1f1f;
  --muted: #6b6460;
  --line: rgba(40,30,25,0.14);
  --shadow: 0 18px 45px rgba(24,16,12,0.10);
  --brand: #7a3f43;     /* burdeos */
  --btn: #7a3f43;
  --btnText: #fff;
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 15% 10%, #fff 0%, var(--bg) 45%, #efe7e0 100%);
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(246,242,238,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  text-decoration:none;
  color:var(--brand);
  font-family: "Cormorant Garamond", serif;
  font-weight:600;
  letter-spacing:.04em;
  font-size:18px;
}

.nav__links{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav__links a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.nav__links a:hover{ background: rgba(122,63,67,0.08); color:var(--text); }

.nav__burger{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
  border-radius:10px;
}
.nav__burger span{
  display:block;
  width:22px;
  height:2px;
  background: var(--muted);
  margin:5px 0;
  border-radius:2px;
}

.hero{
  position:relative;
  padding:56px 0 22px;
  overflow:hidden;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:28px;
  align-items:center;
}

.hero__kicker{
  margin:0 0 10px;
  color:var(--brand);
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.08em;
  font-size:18px;
}

.hero__title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.06em;
  font-weight:600;
  font-size:56px;
  line-height:1;
}

.hero__subtitle{
  margin:12px 0 0;
  color:var(--muted);
  font-size:16px;
  letter-spacing:.02em;
}

.hero__cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__visual{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background:#000;
}

.hero__photo{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.hero__wash{
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 520px at 20% 30%, rgba(255,255,255,0.60), rgba(255,255,255,0.10) 50%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.08));
  pointer-events:none;
}

.hero__texture{
  position:absolute;
  inset:-120px -80px auto -80px;
  height:380px;
  background:
    radial-gradient(220px 140px at 15% 40%, rgba(122,63,67,0.10), transparent 70%),
    radial-gradient(420px 260px at 55% 10%, rgba(255,170,90,0.18), transparent 65%),
    radial-gradient(340px 240px at 85% 45%, rgba(74,144,166,0.12), transparent 65%);
  filter: blur(2px);
  pointer-events:none;
}

.section{
  padding:44px 0;
}
.section__head{
  display: flex;
  flex-direction: column;   
  align-items: flex-start; 
  gap: 4px;
}
.section__title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.06em;
  font-weight:600;
  font-size:28px;
}
.section__sub{
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.albums{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.album-card{
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.album-card__cover{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  display:block;
  background:#eee;
}

.album-card__body{
  padding:16px 16px 18px;
  text-align:center;
}

.album-card__title{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.08em;
  font-size:22px;
}

.album-card__meta{
  margin:6px 0 14px;
  color:var(--brand);
  letter-spacing:.22em;
  font-size:11px;
  text-transform:uppercase;
}

.section--split{
  padding-top:18px;
}

.split{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:18px;
  align-items:start;
}

.card{
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}

.demos{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.demo{
  display:grid;
  grid-template-columns: 52px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 26px rgba(24,16,12,0.08);
}

.demo__play{
  width:48px;
  height:48px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(122,63,67,0.10);
  color: var(--brand);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.demo__play svg{ fill: currentColor; }
.demo.is-playing .demo__play{
  background: rgba(122,63,67,0.18);
}

.demo__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.demo__name{
  font-weight:500;
}
.demo__time{
  color:var(--muted);
  font-size:12px;
}

.demo__seek{
  width:100%;
  accent-color: var(--brand);
}

.contact{
  padding: 36px;            
  min-height: 520px;        
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__title{
  margin:0 0 14px;
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.06em;
  font-weight:600;
  font-size:22px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.field{
  margin-bottom: 18px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.field__label{
  color:var(--muted);
  font-size:12px;
}

.field__input{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:11px 12px;
  font: inherit;
  background: rgba(255,255,255,0.72);
  outline:none;
}
.field__input:focus{
  border-color: rgba(122,63,67,0.45);
  box-shadow: 0 0 0 4px rgba(122,63,67,0.10);
}
.field__textarea{ resize: vertical; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  border:1px solid transparent;
  padding:10px 14px;
  text-decoration:none;
  font-weight:500;
  cursor:pointer;
}

.btn--primary{
  height: 48px;
  font-weight: 500;
  background: var(--btn);
  color: var(--btnText);
  box-shadow: 0 10px 24px rgba(122,63,67,0.20);
}
.btn--primary:hover{ filter: brightness(1.03); }

.btn--ghost{
  background: rgba(255,255,255,0.65);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.78); }

.btn--small{
  background: rgba(255,255,255,0.65);
  border:1px solid var(--line);
  color: var(--text);
  padding:9px 14px;
  font-size:13px;
}
.btn--small:hover{ background: rgba(255,255,255,0.80); }

.btn--full{ width:100%; border-radius: 14px; padding:11px 14px; }

.social{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:14px;
}

.social__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.70);
  color: var(--brand);
}
.social__icon svg{ fill: currentColor; }
.social__icon:hover{ background: rgba(122,63,67,0.08); }

.footer-note{
  margin:14px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:12px;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__photo{ height: 460px; }
  .albums{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  .nav__links{
    position:absolute;
    top:58px;
    right:20px;
    left:20px;
    display:none;
    flex-direction:column;
    padding:14px;
    border-radius: 18px;
    background: rgba(246,242,238,0.92);
    border:1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open{ display:flex; }
  .nav__burger{ display:block; }
  .hero__title{ font-size:44px; }
}


.form-status{
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
}

.form-status.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.form-status.is-ok{
  color: #2f6f4e; /* verde discreto */
}

.form-status.is-error{
  color: #8b2e2e; /* rojo discreto */
}

.hp{
  position:absolute;
  left:-9999px;
}
