/* ============================================================
   CREXELS — dark cinematic one-pager
   Palette:
     --ink      #0A0E13  deep blue-black (set at night)
     --panel    #111820  charcoal panel
     --bone     #EAEEF1  bone white
     --slate    #7E8C98  muted caption grey
     --teal     #1FC8B7  signal teal (shared with crexels.io)
     --tungsten #F2A33C  warm tungsten highlight (used sparingly)
     --rec      #FF3B30  record red (REC dot only)
   Type: Archivo (wdth 62–125) display+body · Space Mono utility
   ============================================================ */

:root {
  --ink: #0A0E13;
  --panel: #111820;
  --panel-2: #0D1319;
  --bone: #EAEEF1;
  --slate: #7E8C98;
  --teal: #1FC8B7;
  --tungsten: #F2A33C;
  --rec: #FF3B30;
  --line: rgba(234, 238, 241, 0.12);
  --mono: "Space Mono", ui-monospace, monospace;
  --sans: "Archivo", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 350;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

::selection { background: var(--teal); color: var(--ink); }

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

/* ---------- utility labels ---------- */

.scene-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.rec-dot {
  display: inline-block;
  width: 0.55em; height: 0.55em;
  border-radius: 50%;
  background: var(--rec);
  animation: blink 1.4s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0.15; } }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-brand { display: flex; align-items: center; text-decoration: none; }

.nav-brand img { height: 2rem; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 2rem);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a { text-decoration: none; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover { color: var(--bone); }

.nav-links .nav-cta {
  color: var(--ink);
  background: var(--teal);
  padding: 0.5em 1em;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { color: var(--ink); background: var(--tungsten); }

.nav-rec {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--slate);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(31, 200, 183, 0.14), transparent 55%),
    radial-gradient(90% 70% at 15% 85%, rgba(242, 163, 60, 0.08), transparent 50%),
    var(--ink);
}

.hero-backdrop::after {
  /* film grain */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* viewfinder chrome */

.viewfinder {
  position: absolute;
  inset: clamp(4.2rem, 7vh, 5.5rem) clamp(0.9rem, 3vw, 2.5rem) clamp(0.9rem, 3vh, 2.5rem);
  pointer-events: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--slate);
}

.vf-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid rgba(234, 238, 241, 0.45);
}
.vf-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.vf-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.vf-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.vf-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.vf-top, .vf-bottom {
  position: absolute;
  left: 2.6rem; right: 2.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vf-top { top: 0.2rem; }
.vf-bottom { bottom: 0.2rem; }

.vf-chip { display: flex; align-items: center; gap: 0.55em; }

.vf-tc { color: var(--bone); font-size: 0.82rem; }

/* hero content */

.hero-inner {
  position: relative;
  text-align: center;
  padding: 6rem var(--pad) 4rem;
  max-width: 68rem;
}

.hero-title {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3rem, 11.5vw, 9.5rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0.4rem 0 1.8rem;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-line:nth-child(2) { animation-delay: 0.15s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-line-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--teal);
}

@keyframes rise { to { opacity: 1; transform: none; } }

.hero-sub {
  max-width: 38rem;
  margin: 0 auto 2.2rem;
  color: var(--slate);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.8em;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--teal); color: var(--ink); }
.btn-solid:hover { background: var(--tungsten); }

.btn-ghost { border: 1px solid var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.hero-scroll {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--slate);
  text-decoration: none;
}

.hero-scroll-line {
  width: 1px; height: 2.6rem;
  background: linear-gradient(var(--teal), transparent);
  animation: drop 1.8s ease-in-out infinite;
}

@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- sections ---------- */

.section { padding: clamp(5rem, 11vh, 8rem) var(--pad); }

.section-alt { background: var(--panel-2); border-block: 1px solid var(--line); }

.section-first { padding-top: clamp(7rem, 16vh, 10rem); min-height: 88vh; }

.note-link { color: var(--teal); text-decoration-color: rgba(31, 200, 183, 0.4); }

.section-head { max-width: 72rem; margin: 0 auto 3.2rem; }

.section-title {
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--teal);
}

.section-note {
  margin-top: 1.2rem;
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 34rem;
}

/* ---------- work grid ---------- */

.work-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(21rem, 100%), 1fr));
  gap: 1.4rem;
}

.work-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  color: var(--bone);
  font: inherit;
  transition: border-color 0.25s, transform 0.25s;
}

.work-card:hover { border-color: var(--teal); transform: translateY(-4px); }

.work-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s;
}

.work-card:hover .work-thumb { transform: scale(1.045); filter: saturate(1.1); }

.work-slate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background:
    repeating-linear-gradient(-45deg, transparent 0 26px, rgba(234,238,241,0.04) 26px 52px),
    linear-gradient(150deg, #16202B, #0C1218);
}

.slate-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--slate);
  border: 1px dashed rgba(126, 140, 152, 0.5);
  padding: 0.6em 1.1em;
}

.work-meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 2.4rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(6, 9, 12, 0.92));
}

.work-titles { display: flex; flex-direction: column; gap: 0.1rem; }

.work-title { font-weight: 700; font-size: 1.02rem; line-height: 1.25; }

.work-client {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.work-client:empty { display: none; }

.work-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  white-space: nowrap;
  text-transform: uppercase;
}

.work-play {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  border: 1px solid rgba(234, 238, 241, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  scale: 0.85;
  transition: opacity 0.25s, scale 0.25s;
}

.work-play::after {
  content: "";
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--bone);
  margin-left: 0.2rem;
}

.work-card:hover .work-play, .work-card:focus-visible .work-play { opacity: 1; scale: 1; }

/* ---------- behind the scenes (social posts) ---------- */

.bts-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 1.6rem;
}

.post {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.post:hover { border-color: var(--teal); transform: translateY(-4px); }

.post-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
}

.post-avatar {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.post-id { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }

.post-user { font-weight: 700; font-size: 0.86rem; }

.post-loc {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-more { color: var(--slate); letter-spacing: 0.05em; font-weight: 700; }

.post-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.3s;
}

.post:hover .post-photo { filter: saturate(1.05); }

.post-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.9rem 0.4rem;
}

.post-actions svg {
  width: 1.5rem; height: 1.5rem;
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-actions .post-save { margin-left: auto; }

.post:hover .post-actions svg:first-child {
  fill: var(--rec);
  stroke: var(--rec);
}

.post-likes {
  padding: 0 0.9rem;
  font-weight: 700;
  font-size: 0.82rem;
}

.post-caption {
  padding: 0.35rem 0.9rem 0;
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
}

.post-caption strong { color: var(--bone); font-weight: 700; margin-right: 0.35em; }

.post-time {
  padding: 0.5rem 0.9rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
}

/* ---------- departments ---------- */

.dept-list {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: 1.4rem;
}

.dept-list-2col {
  max-width: 52rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 40rem) {
  .dept-list-2col { grid-template-columns: 1fr; }
}

.dept {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.25s, transform 0.25s;
}

.dept:hover { border-color: var(--tungsten); transform: translateY(-4px); }

.dept-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--tungsten);
}

.dept h3 {
  font-weight: 800;
  font-stretch: 112%;
  font-size: 1.25rem;
  margin: 0.8rem 0 0.7rem;
  line-height: 1.2;
}

.dept p { color: var(--slate); font-size: 0.92rem; }

/* ---------- universe / multicam ---------- */

.cam-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: 1.4rem;
}

.cam {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.8rem 1.6rem 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

a.cam:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  background: #131C26;
}

.cam-here { border-style: dashed; }

.cam-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.cam-id { color: var(--bone); border: 1px solid var(--line); padding: 0.35em 0.7em; }

.cam-live { display: flex; align-items: center; gap: 0.5em; color: var(--slate); }

.cam-go { color: var(--teal); transition: translate 0.25s; }
a.cam:hover .cam-go { translate: 4px 0; }

.cam h3 { font-weight: 800; font-stretch: 112%; font-size: 1.35rem; line-height: 1.15; }

.cam p { color: var(--slate); font-size: 0.92rem; flex: 1; }

.cam-url {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-top: 0.4rem;
}

/* ---------- about ---------- */

.about-wrap {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(17rem, 2fr) 3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-post { align-self: center; }

.about-copy p { color: var(--slate); margin-top: 1.1rem; max-width: 36rem; }

.about-copy a { color: var(--teal); text-decoration-color: rgba(31, 200, 183, 0.4); }

@media (max-width: 46rem) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-post { max-width: 24rem; }
}

/* ---------- contact ---------- */

.contact { text-align: center; }

.contact-title {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3.2rem, 12vw, 9rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2.6rem;
}

.contact-title em { font-style: normal; color: var(--teal); }

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  font-weight: 600;
  text-decoration: none;
  padding: 0.4em 0.8em;
  transition: color 0.2s;
}

.contact-line:hover { color: var(--teal); }

.contact-key {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--slate);
}

.contact-logo {
  display: block;
  height: clamp(3rem, 6vw, 4.5rem);
  width: auto;
  margin: 3.5rem auto 0;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem var(--pad) 2.6rem;
}

.footer-row {
  max-width: 72rem;
  margin: 0 auto 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand img { height: 1.3rem; width: auto; display: block; }

.footer-links, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a, .footer-social a { color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-social a:hover { color: var(--teal); }

.footer-fine {
  max-width: 72rem;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.footer-tc { color: var(--teal); }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 8, 11, 0.94);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.lightbox[hidden] { display: none; }

.lightbox-stage {
  position: relative;
  width: min(72rem, 100%, calc((100vh - 14rem) * 16 / 9));
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
}

.lightbox-stage iframe { width: 100%; height: 100%; border: 0; display: block; }

.lightbox-callsheet {
  width: min(72rem, 100%, calc((100vh - 14rem) * 16 / 9));
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 3rem;
}

.cs-head { display: flex; align-items: baseline; gap: 1rem; }

.cs-title { font-weight: 800; font-stretch: 112%; font-size: 1.3rem; }

.cs-tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.cs-rows {
  flex: 1;
  min-width: min(28rem, 100%);
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.35rem 1.4rem;
}

.cs-rows dt {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 0.2em;
}

.cs-rows dd { margin: 0; font-size: 0.9rem; color: var(--bone); }

.cs-rows dd a { color: var(--teal); text-decoration-color: rgba(31, 200, 183, 0.4); }

.cs-cuts { display: flex; gap: 0.6rem; }

.cs-cut {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  padding: 0.55em 1.1em;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cs-cut:hover { border-color: var(--teal); color: var(--bone); }

.cs-cut.on { border-color: var(--teal); color: var(--teal); }

.slate-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  width: 2.8rem; height: 2.8rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.lightbox-close:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.on { opacity: 1; transform: none; }

/* ---------- small screens ---------- */

@media (max-width: 46rem) {
  .nav { flex-wrap: nowrap; }
  .nav-rec { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links .nav-cta { white-space: nowrap; }
  .vf-top .vf-chip:last-child { display: none; }
  .vf-bottom span:nth-child(2), .vf-bottom span:nth-child(3) { display: none; }
  .hero-scroll { display: none; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-line { animation: none; opacity: 1; transform: none; }
  .hero-scroll-line { animation: none; }
  .rec-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-thumb, .work-card, .dept, .cam, .btn { transition: none; }
}
