/* ============================================================
   Nambour Lind Lane Theatre Incorporated
   Dark stage-light editorial system — built for 100 PageSpeed
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/jakarta-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/jakarta-italic.woff2') format('woff2');
}

:root {
  --stage: #17110F;
  --stage-2: #211915;
  --card: #241B16;
  --cream: #F6EDE3;
  --muted: #C9B9A7;
  --amber: #E0A458;
  --red: #C0392B;
  --red-deep: #7E2A22;
  --red-text: #E88A73;
  --border: #3A2C24;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wrap: 1180px;
}

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--stage);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
@media (min-width: 768px) { .wrap { padding: 0 36px; } }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }
.h-display { font-size: clamp(2.7rem, 6.4vw, 4.9rem); line-height: 1.05; }
.h-page { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.08; }
.h-section { font-size: clamp(1.85rem, 3.8vw, 2.9rem); line-height: 1.15; }
.h-card { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.25; }
.h-display em, .h-page em, .h-section em { font-style: italic; font-weight: 500; color: var(--amber); }

.overline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); display: inline-flex; align-items: center; gap: 12px;
}
.overline::before { content: ""; width: 26px; height: 2px; background: var(--red-text); }

.lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 54ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: scale(.97); }
.btn-red { background: #B03A2E; color: #FDF6EC; }
.btn-red:hover { background: var(--amber); color: #241B16; }
.btn-amber { background: var(--amber); color: #241B16; }
.btn-amber:hover { background: #B03A2E; color: #FDF6EC; }
.btn-outline { border-color: rgba(246,237,227,.45); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--stage); border-color: var(--cream); }

/* ---------- Charity credential bar ---------- */
.cred-bar { background: var(--red-deep); color: var(--cream); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; position: relative; z-index: 60; }
.cred-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; padding-top: 9px; padding-bottom: 9px; }
.cred-bar .sep { color: var(--amber); }
.cred-bar a { color: #F3CF9E; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.cred-bar a:hover { border-color: #F3CF9E; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 17, 15, .88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--red-deep); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700; font-style: italic;
  border: 2px dashed rgba(246,237,227,.5); outline: 2px solid var(--red-deep);
  transition: background-color .35s var(--ease), transform .45s var(--ease);
}
.brand:hover .brand-mark { background: var(--red); outline-color: var(--red); transform: rotate(-8deg); }
.brand-text { line-height: 1.2; }
.brand-name { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--cream); display: block; }
.brand-sub { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; }

.main-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1000px) { .main-nav { display: flex; } }
.nav-link {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); position: relative; padding: 8px 0;
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 100%;
  background: var(--amber); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: none; }
@media (min-width: 1000px) { .header-cta { display: inline-flex; padding: 12px 22px; } }

.nav-toggle {
  display: grid; place-items: center; width: 46px; height: 46px;
  background: var(--card); border: 1px solid var(--border); border-radius: 50%; cursor: pointer;
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--cream); transition: transform .35s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 45; background: var(--red-deep);
  display: flex; flex-direction: column; justify-content: center; padding: 0 30px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility 0s .45s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transition: opacity .45s var(--ease); }
.mobile-nav a {
  font-family: var(--serif); font-size: clamp(1.9rem, 8.5vw, 2.8rem); color: var(--cream);
  text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(246,237,227,.18);
}
.mobile-nav .m-cred { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #F3CF9E; margin-top: 34px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 100px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero-copy .lede { margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.k-line { display: block; overflow: hidden; padding-bottom: .09em; margin-bottom: -.09em; }
.k-line > span { display: block; transform: translateY(112%); }
body.loaded .k-line > span { animation: kRise 1s var(--ease) forwards; }
body.loaded .k-line:nth-child(1) > span { animation-delay: .1s; }
body.loaded .k-line:nth-child(2) > span { animation-delay: .22s; }
body.loaded .k-line:nth-child(3) > span { animation-delay: .34s; }
@keyframes kRise { to { transform: translateY(0); } }
.fade-in { opacity: 0; }
body.loaded .fade-in { animation: fadeUp .9s var(--ease) .55s forwards; }
body.loaded .fade-in-late { animation: fadeUp .9s var(--ease) .75s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-media { position: relative; }
.hero-media .photo-frame { aspect-ratio: 4 / 4.4; border-radius: 20px; }
.hero-media::before {
  content: ""; position: absolute; inset: -8% -12%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 50% 12%, rgba(224, 164, 88, .18), transparent 70%);
}
.stamp {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--card); border: 2px dashed var(--amber);
  display: grid; place-items: center; text-align: center;
  transform: rotate(-7deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  padding: 14px;
}
.stamp span { font-family: var(--serif); font-style: italic; font-size: 12.5px; font-weight: 600; line-height: 1.35; color: var(--amber); }
.stamp small { display: block; font-family: var(--sans); font-style: normal; font-size: 8.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.photo-frame { overflow: hidden; border-radius: 16px; position: relative; border: 1px solid var(--border); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.photo-frame:hover img { transform: scale(1.04); }
.frame-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(23, 17, 15, .85); color: var(--cream); padding: 7px 13px; border-radius: 999px;
}

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section-tint { background: var(--stage-2); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .h-section { margin-top: 20px; }
.section-head .lede { margin-top: 18px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Mission ---------- */
.mission-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: clamp(30px, 5vw, 60px); position: relative;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .3);
}
.mission-card::before {
  content: ""; position: absolute; left: 0; top: 34px; bottom: 34px; width: 5px;
  background: var(--red); border-radius: 0 4px 4px 0;
}
.mission-text { font-family: var(--serif); font-size: clamp(1.4rem, 2.9vw, 2.1rem); line-height: 1.4; font-weight: 500; color: var(--cream); }
.mission-text strong { color: var(--amber); font-weight: 700; }
.mission-note { margin-top: 24px; color: var(--muted); max-width: 62ch; font-size: 15.5px; }

/* ---------- Acts ---------- */
.act { display: grid; grid-template-columns: 1fr; gap: 28px; padding: clamp(36px, 5vw, 56px) 0; border-top: 1px solid var(--border); align-items: center; }
.act:first-of-type { border-top: none; }
@media (min-width: 880px) { .act { grid-template-columns: 120px 1fr 1fr; gap: clamp(30px, 4vw, 56px); } .act.flip .act-media { order: -1; } }
.act-num { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--red-text); line-height: 1.15; }
.act-body h3 { color: var(--cream); margin-bottom: 12px; }
.act-body p { color: var(--muted); font-size: 15.5px; }
.act-media .photo-frame { aspect-ratio: 4 / 3; }

/* ---------- Show cards ---------- */
.shows-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .shows-grid { grid-template-columns: repeat(3, 1fr); } }
.s-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.s-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(0,0,0,.55); border-color: rgba(224,164,88,.4); }
.s-card .photo-frame { aspect-ratio: 16 / 10; border: none; border-radius: 0; }
.s-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.s-card-kicker { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); }
.s-card-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--cream); line-height: 1.25; }
.s-card-text { font-size: 14px; color: var(--muted); flex: 1; }
.s-card-meta { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red-text); }

/* ---------- Board stats ---------- */
.board { background: var(--red-deep); border-radius: 20px; padding: clamp(30px, 5vw, 54px); color: var(--cream); }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (min-width: 860px) { .board-grid { grid-template-columns: repeat(4, 1fr); } }
.board-item { border-top: 2px solid rgba(224, 164, 88, .45); padding-top: 18px; }
.board-big { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; color: var(--amber); display: block; line-height: 1.1; }
.board-label { font-size: 12.5px; color: rgba(246, 237, 227, .85); margin-top: 10px; display: block; }

/* ---------- Matrix ---------- */
.matrix { border: 1px solid var(--border); border-radius: 18px; background: var(--card); overflow: hidden; }
.matrix-row { display: grid; grid-template-columns: 1fr; gap: 3px 24px; padding: 20px 26px; border-top: 1px solid var(--border); }
.matrix-row:first-child { border-top: none; }
@media (min-width: 720px) { .matrix-row { grid-template-columns: 220px 1fr; } }
.matrix-key { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); padding-top: 4px; }
.matrix-val { font-size: 15px; color: var(--cream); }
.matrix-val a { color: #F3CF9E; font-weight: 600; }

.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col .photo-frame { aspect-ratio: 4 / 3.4; }

.check-list { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; font-size: 15px; color: var(--muted); }
.check-list li::before { content: ""; width: 9px; height: 9px; background: var(--amber); border-radius: 2px; transform: rotate(45deg); flex-shrink: 0; margin-top: 8px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; transition: transform .45s var(--ease), border-color .45s; }
.step:hover { transform: translateY(-5px); border-color: rgba(224,164,88,.4); }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--red-text); line-height: 1; display: block; margin-bottom: 16px; }
.step h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Roles grid ---------- */
.roles-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .roles-grid { grid-template-columns: repeat(4, 1fr); } }
.role-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; }
.role-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(192, 57, 43, .18); display: grid; place-items: center; color: var(--amber); margin-bottom: 18px; }
.role-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.role-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 6px; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--cream);
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.4rem; font-weight: 400; color: var(--amber); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--amber); }
.faq .faq-a { padding: 0 6px 24px; font-size: 15px; color: var(--muted); max-width: 68ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.15fr 1fr; } }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: clamp(26px, 4vw, 44px); box-shadow: 0 16px 44px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--cream);
  background: var(--stage); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 16px; outline: none; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(224, 164, 88, .18); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.form-note a { color: #F3CF9E; font-weight: 600; }

.info-card { border-radius: 20px; background: var(--red-deep); color: var(--cream); padding: clamp(26px, 4vw, 40px); }
.info-card h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 6px; }
.info-line { display: grid; gap: 3px; padding: 16px 0; border-top: 1px solid rgba(246,237,227,.2); }
.info-line:first-of-type { border-top: none; }
.info-key { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #F3CF9E; }
.info-val { font-size: 15px; color: rgba(246,237,227,.94); }
.info-val a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(224,164,88,.6); transition: color .3s; font-weight: 600; }
.info-val a:hover { color: var(--amber); }

/* ---------- Quote ---------- */
.quote-block { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .4; color: var(--red-text); display: block; margin-bottom: 30px; }
.quote-text { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-style: italic; line-height: 1.4; color: var(--cream); }
.quote-attr { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red-deep); color: var(--cream); border-radius: 24px; padding: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band .h-section { color: var(--cream); }
.cta-band .h-section em { color: var(--amber); }
.cta-flex { display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 900px) { .cta-flex { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-mail { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.45rem); color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(224,164,88,.45); padding-bottom: 3px; transition: color .3s, border-color .3s; word-break: break-all; }
.cta-mail:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: #100C0A; color: var(--cream); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; padding: clamp(56px, 8vw, 90px) 0 48px; }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-name { color: var(--cream); }
.footer-mission { font-size: 14px; color: rgba(246,237,227,.8); margin-top: 16px; max-width: 34ch; }
.footer-head { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { font-size: 14.5px; color: rgba(246,237,227,.82); text-decoration: none; transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: var(--cream); padding-left: 5px; }
.footer-charity { font-size: 13px; color: rgba(246,237,227,.78); line-height: 1.9; }
.footer-charity strong { color: var(--cream); font-weight: 700; }
.footer-charity a { color: #F3CF9E; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(246,237,227,.16); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,237,227,.62); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .k-line > span { transform: none; }
  .fade-in, .fade-in-late { opacity: 1; }
}
