/* ===================================================================
   Pedro El Granaíno — Dirección A: Negro y Oro viejo
   =================================================================== */

:root {
  --bg:        #0B0B0B;   /* negro humo */
  --bg-alt:    #111110;   /* banda alterna */
  --surface:   #16150F;   /* tarjetas */
  --text:      #EDE7D8;   /* blanco hueso */
  --text-soft: #B7B0A2;   /* secundario */
  --text-mute: #7C766B;   /* terciario */
  --gold:      #E4B84E;   /* oro/ocre luminoso */
  --gold-soft: #B89238;
  --line:      #2a2722;   /* bordes */
  --line-soft: #1c1a16;

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --pad-section: clamp(3.5rem, 9vw, 7rem);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "EB Garamond", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { font-size: 111%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.gold { color: var(--gold); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--gold); color: #0B0B0B; padding: .6rem 1rem; border-radius: 4px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #0B0B0B; }

/* ===== Cenefa nazarí — decoración lateral (estrella de 8 puntas, Alhambra) ===== */
.edge-decor {
  position: fixed; top: 0; bottom: 0; width: 64px; z-index: 1;
  pointer-events: none; display: none;
  background: url("../images/cenefa-nazari.svg?v=3") repeat center top;
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.edge-decor--left  { left: 0; }
.edge-decor--right { right: 0; }
@media (min-width: 1320px) { .edge-decor { display: block; } }
@media (min-width: 1640px) { .edge-decor { width: 76px; background-size: 76px 76px; }
  .edge-decor--left { left: 1.2vw; } .edge-decor--right { right: 1.2vw; } }
/* Cenefas también en móvil/tablet: franja fina pegada a cada borde */
@media (max-width: 1319px) {
  .edge-decor { display: block; width: 18px; background-size: 18px 18px; opacity: .4; }
}
@media (min-width: 680px) and (max-width: 1319px) {
  .edge-decor { width: 28px; background-size: 28px 28px; opacity: .5; }
}

/* ---------- Typography helpers ---------- */
.eyebrow, .section-label {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.section-label { margin-bottom: .6rem; }

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
/* Filete ornamental nazarí bajo los títulos de sección */
.section-title::after {
  content: ""; display: block; width: 78px; height: 16px; margin-top: 1.1rem;
  background: left center / contain no-repeat url("../images/filete-nazari.svg");
}

.subhead {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: clamp(2rem, 5vw, 3rem) 0 1.4rem;
}

.section { padding-block: var(--pad-section); scroll-margin-top: 84px; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); position: relative; }
/* Textura de azulejo nazarí muy tenue en secciones alternas */
.section-alt::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../images/cenefa-nazari.svg?v=3") repeat; background-size: 116px 116px;
  opacity: .07;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.section-alt > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; min-height: 48px; padding: .8rem 1.6rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #0B0B0B; }
.btn-primary:hover { background: #EFC766; color: #0B0B0B; }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-small { min-height: 40px; padding: .5rem 1.3rem; font-size: .85rem; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,.95);
  border-bottom-color: rgba(228,184,78,.16);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: .01em; }

.main-nav ul { display: flex; gap: clamp(1rem, 2.4vw, 2rem); list-style: none; padding: 0; }
.main-nav a {
  font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500; color: var(--text-soft); padding: .4rem 0; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; align-items: center; gap: .4rem; color: var(--text-mute); }
.lang-switch button {
  background: none; border: none; cursor: pointer; padding: .3rem .2rem;
  font-family: var(--sans); font-size: .85rem; font-weight: 600; letter-spacing: .06em;
  color: var(--text-mute); transition: color .2s var(--ease);
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.is-active { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line-soft); background: rgba(11,11,11,.97); }
.mobile-nav ul { list-style: none; padding: .5rem 0 1rem; margin: 0; }
.mobile-nav a { display: block; padding: .9rem clamp(1.1rem,4vw,2rem); font-size: 1rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); border-bottom: 1px solid var(--line-soft); }
.mobile-nav a:hover { color: var(--gold); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: center;
  background-image: url("../images/hero.jpg");
  background-size: cover; background-position: 75% center; background-repeat: no-repeat;
  border-bottom: 1px solid var(--line-soft);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,11,.96) 0%, rgba(11,11,11,.85) 32%, rgba(11,11,11,.35) 62%, rgba(11,11,11,.15) 100%),
    linear-gradient(0deg, rgba(11,11,11,.85) 0%, rgba(11,11,11,0) 40%);
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero .eyebrow { margin-bottom: 1rem; }
.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3.4rem, 12vw, 7.4rem); line-height: .92; letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}
.hero-title .gold { display: block; white-space: nowrap; }
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem); color: var(--text-soft);
  max-width: 30ch; margin-bottom: 2.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.photo-credit { font-size: .72rem; letter-spacing: .06em; color: var(--text-mute); }
.hero-credit { position: absolute; right: clamp(1rem,4vw,2rem); bottom: 1rem; z-index: 2; }

/* Indicador de scroll del hero */
.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 3; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
}
.hero-scroll::after {
  content: ""; width: 13px; height: 13px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); opacity: .4; }
  50%      { transform: rotate(45deg) translate(2px, 2px);   opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll::after { animation: none; transform: rotate(45deg); } }

/* Móvil: reencuadre del rostro + botones a lo ancho */
@media (max-width: 700px) {
  .hero { background-position: 45% center; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-cta .btn { width: 100%; }
  .hero-scroll { bottom: 14px; }
}

/* ===================================================================
   BIOGRAFÍA
   =================================================================== */
.bio-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.bio-media { position: relative; }
.bio-media img { width: 100%; border: 1px solid var(--line); filter: grayscale(100%) contrast(1.05); }
.bio-media .photo-credit { margin-top: .5rem; }

.facts { list-style: none; padding: 0; margin: 0 0 1.8rem; border-top: 1px solid var(--line); }
.facts li { display: flex; flex-wrap: wrap; gap: .4rem 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.fact-k { flex: 0 0 6rem; color: var(--gold); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding-top: .15rem; }
.fact-v { flex: 1; min-width: 12ch; color: var(--text); }

.bio-body p { margin-bottom: 1.1rem; color: var(--text-soft); max-width: 68ch; }
.bio-body p:first-child { font-size: 1.08rem; }
.bio-body em { font-style: italic; }

@media (min-width: 880px) {
  .bio-grid { grid-template-columns: minmax(280px, 380px) 1fr; }
  .bio-media { position: sticky; top: 100px; }
}

/* ===================================================================
   AGENDA
   =================================================================== */
.agenda-list { border-top: 1px solid var(--line); }
.agenda-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: .4rem 1.4rem;
  align-items: center; padding: 1.3rem 0; border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.agenda-row:hover { background: rgba(228,184,78,.05); }
.agenda-date { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.agenda-main { min-width: 0; }
.agenda-city { font-size: 1.15rem; font-weight: 600; }
.agenda-venue { color: var(--text-soft); font-size: .92rem; }
.agenda-action { justify-self: end; }
.agenda-soon { color: var(--text-mute); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.agenda-soldout { color: var(--text-mute); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line); padding: .4rem .7rem; white-space: nowrap; }

@media (max-width: 620px) {
  .agenda-row { grid-template-columns: 1fr auto; }
  .agenda-date { grid-column: 1 / -1; font-size: 1rem; }
}

/* ===================================================================
   MÚSICA
   =================================================================== */
.album { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.album-cover {
  aspect-ratio: 1; max-width: 340px; width: 100%;
  background: radial-gradient(120% 120% at 30% 20%, #1c1a14 0%, #0d0c09 70%);
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
}
.album-cover::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.7); }
.album-cover-title { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(1.4rem,4vw,2rem); color: var(--gold); line-height: 1.2; z-index: 1; padding: 1rem; }
.album-year { color: var(--text-mute); letter-spacing: .2em; font-size: .8rem; font-weight: 600; }
.album-title { font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; margin: .2rem 0 1rem; }
.album-desc { color: var(--text-soft); max-width: 56ch; margin-bottom: 1.5rem; }
.album-links { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (min-width: 760px) { .album { grid-template-columns: 340px 1fr; } }

/* ===================================================================
   GALERÍA + VÍDEOS
   =================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem,2.5vw,1.6rem); }
.video-embed { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #000; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Fachada de vídeo (miniatura + play) */
.video-facade {
  position: relative; display: block; aspect-ratio: 16 / 9;
  background: #000 center / cover no-repeat; border: 1px solid var(--line);
  overflow: hidden; cursor: pointer;
}
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.15) 0%, rgba(11,11,11,.7) 100%);
  transition: background .25s var(--ease);
}
.video-facade:hover::after { background: linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,.55) 100%); }
.video-facade:hover { border-color: var(--gold-soft); }
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%; z-index: 2;
  background: rgba(11,11,11,.55); border: 2px solid var(--gold);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.video-play::before {
  content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold);
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(228,184,78,.22); }
.video-title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: .9rem 1rem; color: var(--text); font-size: .92rem; font-weight: 500; line-height: 1.3;
}

.gallery { columns: 1; column-gap: clamp(.8rem, 2vw, 1.2rem); }
.gallery figure { break-inside: avoid; margin: 0 0 clamp(.8rem,2vw,1.2rem); }
.gallery img {
  width: 100%; border: 1px solid var(--line); filter: grayscale(100%) contrast(1.04);
  transition: filter .3s var(--ease), transform .4s var(--ease), border-color .3s var(--ease);
}
.gallery a { display: block; overflow: hidden; }
.gallery a:hover img { filter: grayscale(0%) contrast(1.05); transform: scale(1.03); border-color: var(--gold-soft); }
.gallery-credit { margin-top: 1.2rem; }

@media (min-width: 560px) { .gallery { columns: 2; } }
@media (min-width: 980px) { .gallery { columns: 3; } }

/* ===================================================================
   PRENSA
   =================================================================== */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1rem,2.5vw,1.6rem); }
.press-card { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.4rem,3vw,2rem); }
.press-year { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.4rem; margin-bottom: .5rem; }
.press-title { font-weight: 600; font-size: 1.1rem; margin-bottom: .4rem; }
.press-sub { color: var(--text-soft); font-size: .92rem; }

/* Reconocimientos (integrados en la biografía) */
.bio-awards { margin-top: clamp(2.6rem, 6vw, 4.5rem); }
.bio-awards > .section-label { margin-bottom: 1.4rem; }
.awards-intro { color: var(--text-soft); max-width: 64ch; margin: 0 auto clamp(1.8rem,4vw,2.6rem); text-align: center; }
.award-feature {
  background: rgba(228,184,78,.06); border: 1px solid var(--gold-soft);
  padding: clamp(1.3rem,3.2vw,1.9rem); margin-bottom: 1.4rem;
}
.award-feature .award-year { display: block; margin-bottom: .35rem; }
.award-feature .award-title { font-family: var(--serif); font-size: clamp(1.3rem,3vw,1.6rem); color: var(--gold); font-weight: 600; }
.award-feature .award-sub { color: var(--text-soft); font-size: .95rem; margin-top: .4rem; }
.awards-list { border-top: 1px solid var(--line); }
.award-row {
  display: grid; grid-template-columns: 4.2rem minmax(0, 1fr) minmax(0, 1.15fr);
  gap: .3rem 1.6rem; align-items: baseline;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line);
}
.award-year { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-variant-numeric: tabular-nums; white-space: nowrap; }
.award-title { font-weight: 600; font-size: 1.05rem; }
.award-sub { color: var(--text-soft); font-size: .9rem; line-height: 1.5; }

/* Móvil/tablet: año + título + descripción apilados */
@media (max-width: 760px) {
  .award-row { grid-template-columns: 1fr; gap: .15rem 0; }
  .award-year { font-size: 1rem; }
  .award-sub { margin-top: .1rem; }
}

.pullquote {
  margin: clamp(2.5rem,6vw,4rem) auto 1.5rem; max-width: 40ch; text-align: center;
  border: none;
}
.pullquote p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.3rem,3.5vw,2rem); line-height: 1.3; color: var(--text); }
.pullquote cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.collab { text-align: center; color: var(--text-soft); max-width: 60ch; margin-inline: auto; }

/* ===================================================================
   CONTACTO
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); }
.contact-block { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-block h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.contact-block p { color: var(--text); }
.contact-block a:hover { color: var(--gold); }

.contact-form { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.4rem,3.5vw,2.4rem); }
.contact-form .subhead { margin-top: 0; }
.contact-form label { display: block; margin-bottom: 1.1rem; }
.contact-form label span { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .45rem; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #0d0c09; border: 1px solid var(--line); color: var(--text);
  font-family: var(--sans); font-size: 1rem; padding: .75rem .85rem; border-radius: 2px;
  transition: border-color .2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-mute); margin-top: .8rem; }

@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: #080808; border-top: 1px solid var(--line); padding-block: clamp(2.5rem,5vw,3.5rem) 1.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line-soft); }
.footer-brand { font-size: 1.3rem; }
.footer-tag { color: var(--text-mute); font-size: .85rem; letter-spacing: .08em; }
.footer-social { display: flex; gap: 1.4rem; }
.footer-social a { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-top: 1.5rem; color: var(--text-mute); font-size: .8rem; }

/* ---------- Responsive nav ---------- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Reveal / entrada escalonada ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv, .rv.rv-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}
