:root {
    --ink: #070706;
    --paper: #efeee8;
    --white: #faf9f5;
    --signal: #df4a25;
    --muted: rgba(250, 249, 245, 0.64);
    --line: rgba(250, 249, 245, 0.18);
    --display: 'Space Grotesk', sans-serif;
    --hero-display: 'Instrument Sans', sans-serif;
    --body: 'Manrope', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.film-room-open { overflow: hidden; }
button, a { color: inherit; }
button { font: inherit; }
img, video { display: block; max-width: 100%; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: .75rem 1rem;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 1rem 3.5vw;
    pointer-events: none;
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 7, 6, .72), transparent);
    opacity: 0;
    transition: opacity 240ms ease;
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header > * { pointer-events: auto; }
.brand { display: block; width: 190px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.sound-toggle,
.menu-toggle,
.video-sound-button,
.film-room-open,
.film-room-close,
.film-room-arrows button,
.film-room-index button {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.sound-toggle { display: flex; align-items: center; gap: .7rem; padding: .5rem; color: rgba(255,255,255,.74); }
.sound-label,
.menu-toggle span,
.video-sound-button,
.chapter-label,
.chapter-number,
.chapter-side,
.hero-coordinate,
.world-intro > p,
.menu-panel > p,
.menu-footer,
.education-row span {
    font-family: var(--mono);
    font-size: .61rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.sound-bars { display: flex; align-items: center; gap: 2px; height: 14px; }
.sound-bars i { width: 2px; height: 4px; background: currentColor; }
.sound-bars i:nth-child(2) { height: 10px; }
.sound-bars i:nth-child(3) { height: 7px; }
.sound-toggle[aria-pressed='true'] .sound-bars i { animation: sound-wave .7s ease-in-out infinite alternate; }
.sound-toggle[aria-pressed='true'] .sound-bars i:nth-child(2) { animation-delay: -.45s; }
.sound-toggle[aria-pressed='true'] .sound-bars i:nth-child(3) { animation-delay: -.2s; }
@keyframes sound-wave { to { height: 14px; } }
.menu-toggle { display: flex; align-items: center; gap: .75rem; padding: .6rem; }
.menu-toggle i,
.menu-toggle i::before { display: block; width: 25px; height: 1px; background: currentColor; transition: transform 220ms ease; }
.menu-toggle i { position: relative; }
.menu-toggle i::before { content: ''; position: absolute; top: 7px; }
.menu-toggle[aria-expanded='true'] i { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] i::before { top: 0; transform: rotate(-90deg); }

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: .42fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 3rem;
    padding: 18vh 7vw 3rem;
    background: var(--signal);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 350ms ease, transform 650ms cubic-bezier(.77,0,.18,1);
}
.menu-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.menu-panel > p { margin: .8rem 0 0; }
.menu-links { display: flex; flex-direction: column; }
.menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(7,7,6,.26);
    font-family: var(--display);
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}
.menu-links a span { font-size: 1rem; transition: transform 180ms ease; }
.menu-links a:hover span { transform: translate(4px,-4px); }
.menu-footer { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(7,7,6,.35); }

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #878784;
    isolation: isolate;
}
.hero-portrait { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; filter: grayscale(1) contrast(1.18); animation: hero-arrive 1.4s cubic-bezier(.22,1,.36,1) both; }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,6,.36), transparent 32%, rgba(7,7,6,.16) 64%, rgba(7,7,6,.78)), linear-gradient(90deg, rgba(7,7,6,.32), transparent 38%, rgba(7,7,6,.1)); }
@keyframes hero-arrive { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
.hero-title-wrap { position: absolute; top: 47%; left: 50%; width: min(92vw, 1500px); transform: translate(-50%,-50%); }
.hero-title-wrap > p { margin: 0 0 .75rem .45rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { display: flex; flex-direction: column; margin: 0; font-family: var(--hero-display); font-size: clamp(6.5rem, 11.5vw, 11rem); font-stretch: 82%; font-weight: 620; letter-spacing: -.055em; line-height: .76; text-transform: uppercase; text-shadow: 0 8px 40px rgba(7,7,6,.25); }
.hero h1 span:first-child { align-self: flex-start; }
.hero h1 span:last-child { align-self: flex-end; color: var(--white); font-weight: 700; }
.hero-statement { position: absolute; right: 4vw; bottom: 13vh; width: min(470px, 40vw); }
.hero-statement strong { display: block; font-size: .9rem; font-weight: 650; }
.hero-statement p { margin: .8rem 0 0; color: rgba(250,249,245,.7); font-size: .82rem; line-height: 1.65; }
.enter-button {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .4rem;
    font-family: var(--mono);
    font-size: .63rem;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}
.enter-button i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-style: normal; transition: background 180ms ease, color 180ms ease; }
.enter-button:hover i { background: var(--white); color: var(--ink); }
.hero-coordinate { position: absolute; bottom: 5vh; left: 3.5vw; margin: 0; }

.world-intro {
    display: grid;
    grid-template-columns: .38fr 1fr;
    gap: 5vw;
    min-height: 76vh;
    padding: 16vh 7vw;
    background: var(--paper);
    color: var(--ink);
}
.world-intro > p { margin: .9rem 0 0; }
.world-intro h2 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: 4.8rem; font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.world-intro div > p { max-width: 640px; margin: 2rem 0 0 auto; color: #4e4d49; font-size: 1rem; }

.chapter {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
.chapter-background,
.chapter-video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.chapter-video { object-position: center; }
.chapter-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,7,6,.9), rgba(7,7,6,.48) 48%, rgba(7,7,6,.16)), linear-gradient(0deg, rgba(7,7,6,.58), transparent 48%); }
.chapter-number { position: absolute; top: 15vh; left: 4vw; }
.chapter-copy { position: absolute; bottom: 11vh; left: 7vw; width: min(620px, 46vw); }
.chapter-label { margin: 0 0 1.1rem; color: var(--signal); }
.chapter h2 { margin: 0; font-family: var(--display); font-size: 5.4rem; font-weight: 600; letter-spacing: -.05em; line-height: .92; }
.chapter-copy > p:not(.chapter-label) { max-width: 540px; margin: 1.4rem 0 0; color: var(--muted); }
.chapter-link,
.video-sound-button,
.film-room-open { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.7rem; padding: .7rem 0; border: 0; border-bottom: 1px solid currentColor; color: var(--white); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.film-room-open { margin-left: 1.5rem; }
.chapter-link span { transition: transform 180ms ease; }
.chapter-link:hover span { transform: translate(4px,-4px); }
.chapter-side { position: absolute; top: 50%; right: -6rem; margin: 0; transform: rotate(90deg); }
.chapter-music { background: #050504; }
.chapter-music .chapter-video {
    right: auto;
    left: 23%;
    width: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: saturate(.74) contrast(1.06) brightness(.82);
}
.chapter-music .chapter-shade { background: linear-gradient(90deg, #050504 0%, rgba(5,5,4,.96) 27%, rgba(5,5,4,.46) 52%, rgba(5,5,4,.06) 78%); }
.chapter-research { background: #050504; }
.chapter-research .chapter-background {
    top: 0;
    right: 2vw;
    bottom: auto;
    left: auto;
    width: 64%;
    height: 80%;
    object-fit: contain;
    object-position: center top;
    opacity: .68;
    filter: invert(1) grayscale(1) contrast(1.35) brightness(1.1);
    mix-blend-mode: screen;
}
.chapter-research .chapter-shade { background: linear-gradient(90deg, #050504 0%, rgba(5,5,4,.96) 28%, rgba(5,5,4,.48) 54%, rgba(5,5,4,.08) 82%); }
.research-note { position: absolute; right: 7vw; bottom: 10vh; width: min(350px, 25vw); padding: 1rem 0 0; border-top: 1px solid rgba(250,249,245,.38); }
.research-note span { color: var(--signal); font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.research-note p { margin: .7rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.chapter-teaching { background: var(--signal); color: var(--ink); }
.chapter-teaching .chapter-label { color: var(--ink); }
.chapter-teaching .chapter-copy > p:not(.chapter-label) { color: rgba(7,7,6,.7); }
.teaching-word { position: absolute; top: 50%; left: 50%; color: transparent; font-family: var(--display); font-size: 19rem; font-weight: 700; letter-spacing: -.08em; line-height: .7; -webkit-text-stroke: 2px rgba(7,7,6,.25); transform: translate(-50%,-50%); }
.teaching-principles { position: absolute; right: 8vw; bottom: 11vh; display: flex; flex-direction: column; width: min(380px, 28vw); border-top: 1px solid rgba(7,7,6,.45); }
.teaching-principles span { padding: .8rem 0; border-bottom: 1px solid rgba(7,7,6,.45); font-size: .78rem; }
.chapter-technology .chapter-background { object-position: center; filter: brightness(.64) saturate(.68); transform: scale(1.05); }
.chapter-technology .chapter-shade { background: linear-gradient(90deg, rgba(7,7,6,.95), rgba(7,7,6,.66) 52%, rgba(7,7,6,.28)); }

.about { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 100svh; background: var(--paper); color: var(--ink); }
.about-portrait { min-height: 100%; overflow: hidden; background: #777; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.12); }
.about-content { align-self: center; padding: 10vh 7vw; }
.about-content .chapter-label { color: var(--signal); }
.about h2 { margin: 0; font-family: var(--display); font-size: 5rem; font-weight: 600; letter-spacing: -.055em; line-height: .9; }
.about-lead { margin: 2rem 0 0; font-family: var(--display); font-size: 1.35rem; line-height: 1.35; }
.about-content > p:not(.chapter-label):not(.about-lead) { color: #55534f; }
.education-list { margin-top: 3rem; border-top: 1px solid rgba(7,7,6,.2); }
.education-row { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 1rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid rgba(7,7,6,.2); }
.education-row strong { font-family: var(--display); font-size: .9rem; font-weight: 600; }
.education-row span { color: #66635e; font-size: .54rem; }

.site-footer { position: relative; min-height: 82vh; padding: 13vh 7vw 3rem; background: var(--ink); }
.site-footer h2 { margin: 0; font-family: var(--display); font-size: 8rem; font-weight: 600; letter-spacing: -.065em; line-height: .78; }
.footer-email { display: inline-flex; gap: .6rem; margin-top: 3rem; padding-bottom: .4rem; border-bottom: 1px solid currentColor; color: var(--signal); font-family: var(--mono); font-size: .7rem; text-decoration: none; }
.site-footer > img { position: absolute; right: 7vw; bottom: 12vh; width: 230px; }
.site-footer > div { position: absolute; right: 7vw; bottom: 2rem; left: 7vw; display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); color: rgba(255,255,255,.48); font-family: var(--mono); font-size: .58rem; text-transform: uppercase; }
.site-footer > div a { text-decoration: none; }

.film-room {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #050504;
    color: var(--white);
}
.film-room::backdrop { background: #050504; }
.film-room[open] { animation: film-room-enter 420ms cubic-bezier(.22,1,.36,1) both; }
@keyframes film-room-enter { from { opacity: 0; transform: translateY(3%); } }
.film-room-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 22vw);
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(115deg, #050504 0%, #0d0d0b 62%, #050504 100%);
}
.film-room-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.4rem 2rem;
    border-bottom: 1px solid var(--line);
}
.film-room-header p,
.film-room-count,
.film-room-index span {
    margin: 0;
    color: var(--signal);
    font-family: var(--mono);
    font-size: .58rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.film-room-header h2 { margin: .2rem 0 0; font-family: var(--display); font-size: 2rem; font-weight: 550; line-height: 1; }
.film-room-close,
.film-room-arrows button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(250,249,245,.38); border-radius: 50%; font-size: 1.2rem; }
.film-room-stage { position: relative; grid-column: 1; grid-row: 2; min-width: 0; min-height: 0; overflow: hidden; padding: 2vh 3vw; }
.film-room-video { position: absolute; top: 2vh; left: 50%; width: auto; max-width: calc(100% - 6vw); height: calc(100% - 4vh); aspect-ratio: 9 / 16; background: #000; object-fit: contain; transform: translateX(-50%); }
.film-room-meta {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.1rem 3vw 1.4rem;
    border-top: 1px solid var(--line);
}
.film-room-meta h3 { margin: 0; overflow: hidden; font-family: var(--display); font-size: 1.35rem; font-weight: 550; text-overflow: ellipsis; white-space: nowrap; }
.film-room-arrows { display: flex; gap: .6rem; }
.film-room-index { grid-column: 2; grid-row: 2 / 4; display: flex; min-height: 0; overflow-y: auto; border-left: 1px solid var(--line); flex-direction: column; }
.film-room-index button {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    min-height: 82px;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    color: rgba(250,249,245,.58);
    text-align: left;
}
.film-room-index button::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--signal); transform: scaleY(0); transition: transform 220ms ease; }
.film-room-index button:hover,
.film-room-index button[aria-current='true'] { color: var(--white); background: rgba(250,249,245,.04); }
.film-room-index button[aria-current='true']::before { transform: scaleY(1); }
.film-room-index strong { overflow: hidden; font-family: var(--display); font-size: .9rem; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(42px); transition: opacity 800ms ease, transform 900ms cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
    .hero h1 { font-size: clamp(5.5rem, 11vw, 8rem); }
    .world-intro h2 { font-size: 3.8rem; }
    .chapter h2 { font-size: 4.4rem; }
    .chapter-copy { width: 55vw; }
    .research-note { display: none; }
    .teaching-word { font-size: 13rem; }
    .teaching-principles { width: 32vw; }
    .about h2 { font-size: 4rem; }
    .education-row { grid-template-columns: 80px 1fr; }
    .education-row span:last-child { grid-column: 2; }
    .site-footer h2 { font-size: 6rem; }
}

@media (max-width: 700px) {
    .site-header { min-height: 70px; padding: .8rem 1rem; }
    .brand { width: 125px; }
    .sound-label,
    .menu-toggle span { display: none; }
    .header-actions { gap: .5rem; }
    .menu-panel { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; gap: 1.5rem; padding: 15vh 1rem 2rem; }
    .menu-links a { font-size: 2.2rem; }
    .menu-footer { grid-column: auto; flex-direction: column; gap: .5rem; }
    .hero-portrait { object-position: 53% center; }
    .hero-vignette { background: linear-gradient(0deg, rgba(7,7,6,.88), transparent 46%, rgba(7,7,6,.35)); }
    .hero-title-wrap { top: 58%; width: calc(100% - 2rem); }
    .hero-title-wrap > p { margin-bottom: .65rem; font-size: .5rem; }
    .hero h1 { font-size: clamp(3.35rem, 16.5vw, 5.4rem); line-height: .8; }
    .hero-statement { right: 1rem; bottom: 14vh; left: 1rem; width: auto; }
    .hero-statement strong { font-size: .78rem; }
    .hero-statement p { margin-top: .55rem; font-size: .7rem; line-height: 1.5; }
    .hero-coordinate { display: none; }
    .enter-button { bottom: 3vh; }
    .world-intro { grid-template-columns: 1fr; gap: 2rem; min-height: auto; padding: 6rem 1rem; }
    .world-intro h2 { font-size: 2.75rem; }
    .world-intro div > p { margin-left: 0; }
    .chapter { min-height: 820px; }
    .chapter-background,
    .chapter-video { object-position: center; }
    .chapter-music .chapter-video { top: 4.5rem; width: 100%; height: 58%; object-fit: contain; object-position: center; }
    .chapter-music .chapter-shade { background: linear-gradient(0deg, #050504 0%, rgba(5,5,4,.96) 42%, rgba(5,5,4,.2) 68%, rgba(5,5,4,.08) 100%); }
    .chapter-music .chapter-copy { bottom: 3.5rem; }
    .film-room-open { margin-left: 1rem; }
    .chapter-research .chapter-background { top: 4.5rem; right: 0; width: 100%; height: 50%; object-fit: contain; object-position: center; opacity: .62; }
    .chapter-research .chapter-shade { background: linear-gradient(0deg, #050504 0%, rgba(5,5,4,.96) 43%, rgba(5,5,4,.25) 70%, rgba(5,5,4,.06) 100%); }
    .chapter-research .chapter-copy { bottom: 3.5rem; }
    .chapter-shade,
    .chapter-research .chapter-shade,
    .chapter-technology .chapter-shade { background: linear-gradient(0deg, rgba(7,7,6,.96), rgba(7,7,6,.7) 45%, rgba(7,7,6,.08) 78%); }
    .chapter-number { top: 6rem; left: 1rem; }
    .chapter-copy { bottom: 5rem; left: 1rem; width: calc(100% - 2rem); }
    .chapter h2 { font-size: 3.25rem; }
    .chapter-copy > p:not(.chapter-label) { font-size: .88rem; }
    .chapter-side { display: none; }
    .teaching-word { top: 30%; font-size: 5.7rem; -webkit-text-stroke-width: 1px; }
    .teaching-principles { right: 1rem; bottom: 2rem; left: 1rem; width: auto; }
    .chapter-teaching .chapter-copy { bottom: 14rem; }
    .about { grid-template-columns: 1fr; }
    .about-portrait { min-height: 60vh; }
    .about-content { padding: 5rem 1rem; }
    .about h2 { font-size: 3.25rem; }
    .education-row { grid-template-columns: 1fr; gap: .3rem; }
    .education-row span:last-child { grid-column: auto; }
    .site-footer { min-height: 72vh; padding: 6rem 1rem 2rem; }
    .site-footer h2 { font-size: 4rem; }
    .site-footer > img { right: 1rem; bottom: 7rem; width: 150px; }
    .site-footer > div { right: 1rem; bottom: 1.5rem; left: 1rem; }
    .film-room-shell { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr) auto 92px; }
    .film-room-header { grid-column: 1; padding: 1rem; }
    .film-room-header h2 { font-size: 1.5rem; }
    .film-room-stage { grid-column: 1; grid-row: 2; padding: 0; }
    .film-room-video { top: 0; max-width: 100%; height: 100%; }
    .film-room-meta { grid-column: 1; grid-row: 3; grid-template-columns: 58px minmax(0, 1fr) auto; gap: .8rem; padding: .8rem 1rem; }
    .film-room-meta h3 { font-size: 1rem; }
    .film-room-close,
    .film-room-arrows button { width: 38px; height: 38px; }
    .film-room-index { grid-column: 1; grid-row: 4; display: grid; grid-template-columns: repeat(6, minmax(96px, 1fr)); overflow-x: auto; overflow-y: hidden; border-top: 1px solid var(--line); border-left: 0; }
    .film-room-index button { grid-template-columns: 1fr; gap: .2rem; min-height: 91px; padding: .8rem 1rem; border-right: 1px solid var(--line); border-bottom: 0; }
    .film-room-index button::before { top: 0; right: 0; bottom: auto; width: auto; height: 3px; transform: scaleX(0); }
    .film-room-index button[aria-current='true']::before { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}