/* ==========================================================================
   RK Renovations & Concrete — light Nivasata
   Palette: warm white / steel grays / oxide red accent (logo-driven)
   Type: Poppins (display) · Instrument Serif italic (highlights) · DM Sans (body)
   ========================================================================== */

:root {
  --bg: #F5F4F1;
  --bg-alt: #ECEBE7;
  --ink: #1B1C1E;
  --body: #5A5D63;
  --line: #D9DAD6;
  --steel-1: #C7CBD1;
  --steel-2: #8E939B;
  --steel-ink: #6B7079; /* navbar text: logo-gray, still legible on the warm-white scrolled bar */
  --accent: #8C3A2E;
  --accent-hover: #A34435;
  --white: #FFFFFF;
  --radius: 16px;
  --font-display: "Poppins", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-card: 0 2px 6px rgba(27, 28, 30, 0.06), 0 16px 40px rgba(27, 28, 30, 0.08);
  --shadow-modal: 0 8px 24px rgba(27, 28, 30, 0.14), 0 32px 80px rgba(27, 28, 30, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

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

/* Visually hidden but kept for screen readers / document outline (the hero h1) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- Highlighted words: the Nivasata signature, in oxide red serif italic --- */
.hl {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.06em;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Shared primitives
   ========================================================================== */

.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; overflow: hidden; }
.section--alt { background: var(--bg-alt); }

.section__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 1.2rem 0 1.5rem;
  max-width: 21ch;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--steel-2);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(27, 28, 30, 0.07);
}
/* Small oxide parallelogram marker — the logo motif in miniature */
.chip::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--accent);
  transform: skewX(-12deg);
  border-radius: 1px;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--accent {
  background: var(--accent);
  color: #FDFCFB;
  box-shadow: 0 6px 18px rgba(140, 58, 46, 0.28);
}
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn--lg { padding: 0.95rem 2.2rem; font-size: 1.02rem; }

/* --- Rotating parallelogram (logo silhouette) — replaces the reference's asterisk --- */
.para path {
  stroke: var(--steel-2);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.para--spin { animation: para-spin 75s linear infinite; transform-origin: 50% 50%; }

@keyframes para-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.section__ornament {
  position: absolute;
  z-index: 0;
  width: clamp(320px, 38vw, 560px);
  height: auto;
  opacity: 0.18;
  top: 8%;
  right: -2%;
}
.section__ornament--center { top: 30%; left: 50%; margin-left: -14vw; right: auto; }

/* --- Scroll reveal --- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Navbar
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Over the hero video the bar carries its own fade-out scrim plus a warm-white
   halo on the type — dark video frames run right along the nav line and would
   otherwise swallow the gray links; the scrolled state gets its contrast from
   the frosted bar itself */
.nav:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(245, 244, 241, 0.95) 0%, rgba(245, 244, 241, 0.72) 58%, rgba(245, 244, 241, 0) 100%);
}

.nav:not(.is-scrolled) .nav__link,
.nav:not(.is-scrolled) .nav__name {
  text-shadow:
    0 0 4px rgba(245, 244, 241, 0.95),
    0 0 10px rgba(245, 244, 241, 0.85),
    0 1px 18px rgba(245, 244, 241, 0.7);
}

.nav.is-scrolled {
  background: rgba(245, 244, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

/* The bar spans wider than the page sections so the brand hugs the left edge */
.nav__inner {
  width: min(1720px, calc(100% - 4rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  /* Tighter than before — the larger logo mark sets the bar height on its own */
  padding: 0.4rem 0;
}

.nav__brand { display: flex; align-items: center; gap: 1rem; margin-right: auto; }

/* The logo mark carries the "RK" on its own, so the wordmark next to it is just
   the small-caps descriptor line */
.nav__mark { width: 96px; height: auto; }

.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--steel-ink);
}

.nav__links { display: flex; align-items: center; gap: 1.9rem; }

.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--steel-ink);
  position: relative;
  padding: 0.3rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }
.nav__link.is-active { color: var(--accent); }

.nav__cta-mobile { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

/* Shorter than full-viewport since the hero no longer carries a title — the
   video hands off to About without a long blank wash */
.hero { position: relative; height: 86svh; min-height: 520px; }

.hero__media { position: absolute; inset: 0; overflow: hidden; }

.hero__video { width: 100%; height: 100%; object-fit: cover; }

/* Fade the video into the page background — the seamless scroll transition */
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    /* Top band doubles as a scrim for the transparent navbar — dark video frames
       otherwise swallow the gray nav links */
    linear-gradient(180deg, rgba(245, 244, 241, 0.92) 0%, rgba(245, 244, 241, 0.6) 12%, rgba(245, 244, 241, 0) 28%),
    linear-gradient(180deg, rgba(245, 244, 241, 0) 58%, rgba(245, 244, 241, 0.5) 80%, rgba(245, 244, 241, 0.9) 94%, var(--bg) 100%);
}

.hero__scrolldown {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3.5vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero__para { width: 84px; height: 84px; opacity: 0.95; }

/* ==========================================================================
   About
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__media { position: relative; min-height: 560px; }

.about__img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.about__img--back { top: 0; left: 0; width: 58%; aspect-ratio: 4 / 5; }
.about__img--front { bottom: 0; right: 0; width: 55%; aspect-ratio: 5 / 4; }

/* Badge lives in the open space beside the top image, like the reference */
.about__badge {
  position: absolute;
  top: 5%;
  right: 2%;
  width: 150px;
  height: 150px;
}

.about__ring { width: 100%; height: 100%; animation: para-spin 28s linear infinite; }
.about__ring text {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  fill: var(--body);
}

.about__badge-core {
  position: absolute;
  inset: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__badge-core img { width: 100px; height: auto; }

.about__copy p { margin-bottom: 1.1rem; max-width: 56ch; }

.about__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-top: 1.4rem;
}

.about__points li {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.38rem 0.95rem;
}
.about__points li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  transform: skewX(-12deg);
}

/* ==========================================================================
   Services — infinite marquee
   ========================================================================== */

.marquee { position: relative; z-index: 1; overflow: hidden; margin-top: 2.6rem; }

.marquee__track {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  width: max-content;
  padding-left: clamp(1.2rem, 2.4vw, 1.8rem);
  animation: marquee-scroll 48s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.card {
  position: relative;
  width: clamp(260px, 27vw, 360px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.card img { width: 100%; height: 100%; object-fit: cover; }

.card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1.4rem 1.4rem;
  color: #F3F2EF;
  /* No backdrop-filter here: Safari mis-composites backdrop blurs inside the
     continuously transform-animated marquee track (smears the blur and the
     caption text). The gradient alone carries legibility. */
  background: linear-gradient(180deg, rgba(27, 28, 30, 0) 0%, rgba(27, 28, 30, 0.34) 38%, rgba(27, 28, 30, 0.62) 74%, rgba(27, 28, 30, 0.74) 100%);
}

.card__caption h3 {
  position: relative;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.55rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.card__caption p { position: relative; font-size: 0.9rem; line-height: 1.5; opacity: 0.92; }

.services__cta { text-align: center; margin-top: 3rem; }
.services__cta-note { font-size: 0.88rem; margin-top: 0.9rem; opacity: 0.85; }

/* ==========================================================================
   Courses
   ========================================================================== */

.courses__lede { max-width: 58ch; margin-bottom: 3rem; }

.courses__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
}

.course {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.course:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.course__media { aspect-ratio: 4 / 3; overflow: hidden; }
.course__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course:hover .course__media img { transform: scale(1.045); }

.course__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.course__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(140, 58, 46, 0.35);
  border-radius: 999px;
  background: rgba(140, 58, 46, 0.07);
}

.course__body h3 { font-size: 1.18rem; font-weight: 600; }
.course__body > p { font-size: 0.92rem; line-height: 1.55; flex: 1; }

.course__more {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.2rem 0;
  border-bottom: 2px solid var(--accent);
  transition: color 0.2s ease;
}
.course__more:hover { color: var(--accent); }

.courses__cta { text-align: center; margin-top: 3.2rem; }

/* --- Course detail modal --- */

.course-detail { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 2rem; align-items: stretch; }

/* Photo fills the full modal column height, no dead space beneath it */
.course-detail__media { position: relative; border-radius: 12px; overflow: hidden; min-height: 440px; }
.course-detail__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.course-detail__body { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.course-detail__body .modal__title { margin: 0.2rem 0 0; }

.course-detail__stats { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0.3rem 0 0.2rem; }

.course-detail__stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  padding: 0.6rem 0.9rem;
  min-width: 128px;
}
.course-detail__stat strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.course-detail__stat span { font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; }

.course-detail__body h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); margin-top: 0.4rem; }
.course-detail__body ul { padding-left: 1.1rem; font-size: 0.94rem; }
.course-detail__body li { margin-bottom: 0.25rem; }
.course-detail__body p { font-size: 0.94rem; }
.course-detail__source { font-size: 0.76rem; opacity: 0.75; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-card);
}

.contact__aside .h2 { margin-bottom: 1.6rem; }

.contact__card {
  background: var(--ink);
  color: #C9CBCE;
  border-radius: var(--radius);
  padding: 1.8rem;
}
.contact__card h3 { color: #FFFFFF; font-size: 1.3rem; margin-bottom: 1.2rem; }

.contact__item { margin-bottom: 1.1rem; }
.contact__item:last-child { margin-bottom: 0; }
.contact__label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #8E939B; margin-bottom: 0.2rem; }
.contact__item a { color: #FFFFFF; }
.contact__item a:hover { color: var(--steel-1); }
.contact__item address { font-style: normal; color: #E8E9EA; }
.contact__item p { font-size: 0.9rem; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: flex; flex-direction: column; gap: 1.05rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }

.form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.form__field > span { font-size: 0.85rem; font-weight: 600; color: var(--ink); }

.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(140, 58, 46, 0.14);
}

.form__field input.is-invalid { border-color: #B3261E; box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12); }

.form__field textarea { resize: vertical; }

.form__success { color: var(--ink); }
.form__success strong { font-family: var(--font-display); display: block; margin-bottom: 0.3rem; }

form.is-done .form__field,
form.is-done .form__row,
form.is-done button[type="submit"] { display: none; }

/* ==========================================================================
   Modals
   ========================================================================== */

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 28, 30, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal__panel {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-modal);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  width: min(460px, 100%);
  max-height: calc(100svh - 2.4rem);
  overflow-y: auto;
  animation: modal-in 0.3s ease;
}

.modal__panel--wide { width: min(860px, 100%); }

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--body);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  z-index: 1;
}
.modal__close:hover { color: var(--ink); }

.modal__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.01em; }
.modal__sub { font-size: 0.95rem; margin: -0.4rem 0 0.3rem; }

body.modal-open { overflow: hidden; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { position: relative; background: #141517; color: #9A9DA2; overflow: hidden; }

.footer__texture { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.05; }

.footer__inner {
  position: relative;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.5rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}

.footer__brand img { width: 88px; height: auto; }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer__nav a { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: #D5D7DA; }
.footer__nav a:hover { color: #FFFFFF; }

.footer__contact { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; }
.footer__contact a:hover { color: #FFFFFF; }

.footer__line { font-size: 0.84rem; border-top: 1px solid #2A2C2F; padding-top: 1.6rem; width: 100%; }
.footer__nowrap { white-space: nowrap; }

.footer__status { color: #E5484D; transition: color 0.4s ease; }
.footer__status.is-live { color: #46A758; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .courses__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 440px; max-width: 560px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__aside { order: -1; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(245, 244, 241, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links .nav__link { font-size: 1.35rem; }
  .nav__cta { display: none; }
  .nav__cta-mobile { display: inline-block; margin-top: 0.8rem; }
  .nav__burger { display: flex; }

  .hero__scrolldown { display: none; }

  .section__ornament { width: 300px; right: -14%; opacity: 0.14; }
  .section__ornament--center { margin-left: -150px; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .nav__mark { width: 76px; }
  .nav__name { font-size: 0.68rem; }
  .courses__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__media { min-height: 360px; }
  .about__badge { width: 104px; height: 104px; }
  .about__badge-core { inset: 18px; }
  .about__badge-core img { width: 68px; }
  .course-detail { grid-template-columns: 1fr; }
  .course-detail__media { min-height: 0; aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .para--spin, .about__ring { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .modal__panel { animation: none; }
  .course, .course__media img, .btn { transition: none; }
}
