/* ASENSSI — style.css
   Identidad oficial: ver ASENSSI_FINAL_MASTER_BRANDKIT_V1/07_palette_typography */

:root {
  --black: #0A0A0A;
  --near-black: #111111;
  --charcoal: #1A1A1A;
  --graphite: #282828;
  --off-white: #EDEDED;
  --white: #FFFFFF;

  --bg: #050505;
  --border: #141414;
  --border-soft: #171717;
  --input-border: #222222;
  --text-secondary: #b5b5b5;
  --text-tertiary: #9a9a9a;
  --text-muted: #666666;
  --text-faint: #555555;
  --text-label: #777777;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Montserrat', sans-serif;
  color: var(--off-white);
}

::selection { background: var(--off-white); color: var(--black); }

a { color: var(--off-white); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--white); }

input, textarea, button { font-family: 'Montserrat', sans-serif; }

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--black);
  overflow: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, .9);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav__logo { height: 26px; width: auto; }
.nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 130px 48px 110px;
  overflow: hidden;
  text-align: center;
}
.hero__isotype {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 560px;
  width: auto;
  opacity: .05;
  pointer-events: none;
  animation: assFloat 8s ease-in-out infinite;
}
.hero__content { position: relative; }
.hero__kicker {
  margin: 0 0 42px;
  color: var(--text-label);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: assRise .8s ease both;
}
.hero__wordmark {
  width: min(780px, 82%);
  height: auto;
  margin: 0 auto;
  animation: assRise 1s ease both;
}
.hero__sub {
  margin: 44px 0 0;
  color: var(--text-tertiary);
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 300;
  animation: assRise 1.2s ease both;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  animation: assRise 1.4s ease both;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--solid { background: var(--off-white); color: var(--black); font-weight: 600; }
.btn--outline { border-color: #2a2a2a; }

/* SECTION SHELL */
.section { padding: 84px 48px; border-top: 1px solid var(--border); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.section h2 {
  margin: 0 0 16px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.25;
}

/* BIO */
.bio {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border-top: 1px solid var(--border);
  padding: 0;
}
.bio__text { padding: 84px 48px; border-right: 1px solid var(--border); }
.bio__text .eyebrow { margin-bottom: 22px; }
.bio__text h2 { margin-bottom: 28px; }
.bio__text p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}
.bio__text p strong { color: var(--off-white); font-weight: 600; }
.bio__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bio__chips span {
  border: 1px solid var(--graphite);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #8a8a8a;
}
.bio__photo { position: relative; min-height: 560px; background: var(--near-black); }
.bio__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.bio__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.12), rgba(10,10,10,.5));
}

/* MUSIC */
.music__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.music__head h2 { margin: 0; }
.music__head .eyebrow { margin-bottom: 12px; }
.music__link {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}
.music__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.music__embed {
  position: relative;
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(135deg, #0d0d0d 0 16px, #101010 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
}
.music__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.music__play {
  width: 64px;
  height: 64px;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.music__tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: monospace;
  color: #3a3a3a;
  font-size: 11px;
}

/* EVENTS */
.events__list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
}
.events__list .event-row:last-child { border-bottom: 1px solid var(--border-soft); }
.event-row__date { font-family: monospace; color: var(--off-white); font-size: 14px; letter-spacing: 1px; }
.event-row__venue { font-size: 16px; font-weight: 500; }
.event-row__city { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.event-row__cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
  padding: 10px 20px;
  white-space: nowrap;
}

/* PRESS KIT */
.press {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.press p { margin: 0; color: var(--text-tertiary); font-size: 15px; line-height: 1.8; font-weight: 300; max-width: 460px; }
.press h2 { margin-bottom: 16px; }
.press .btn--solid { white-space: nowrap; font-weight: 600; }

/* BOOKING */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.booking h2 { margin-bottom: 34px; }
.booking__field {
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}
.booking__contact .booking__field:last-of-type { border-bottom: 1px solid var(--border-soft); }
.booking__label {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.booking__value { font-size: 16px; }
.booking__rider { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.booking__social { display: flex; gap: 26px; margin-top: 26px; }
.booking__social a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form input,
.form textarea {
  background: #0d0d0d;
  border: 1px solid var(--input-border);
  color: var(--off-white);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}
.form textarea { resize: vertical; }
.form__row { display: flex; gap: 14px; }
.form__row input:first-child { flex: 1; }
.form__row input:last-child { width: 130px; }
.form button {
  background: var(--off-white);
  color: var(--black);
  border: none;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.form button:hover { background: var(--white); }
.form__status {
  font-size: 13px;
  color: var(--text-secondary);
  min-height: 18px;
}
.form__status.is-success { color: var(--off-white); }

/* FOOTER */
.footer {
  padding: 26px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 1.5px;
}
.footer__logo { height: 20px; width: auto; opacity: .7; }
.footer__copy { font-family: monospace; }

/* ANIMATIONS */
@keyframes assFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}
@keyframes assRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__isotype, .hero__kicker, .hero__wordmark, .hero__sub, .hero__ctas {
    animation: none;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 10px; letter-spacing: 1.5px; }
  .hero { padding: 100px 24px 80px; }
  .hero__isotype { height: 360px; }
  .section, .press, .booking, .bio__text { padding: 56px 24px; }
  .bio { grid-template-columns: 1fr; }
  .bio__text { border-right: none; border-bottom: 1px solid var(--border); }
  .bio__photo { min-height: 380px; }
  .music__grid { grid-template-columns: 1fr; }
  .music__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .press { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 90px 1fr auto; gap: 12px; }
  .footer { padding: 20px 24px; }
}
