/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1002;
  pointer-events: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

@media (hover: hover) {
  * { cursor: none !important; }
}

.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999999; /* above GLightbox (999999) */
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  transition: opacity 0.3s, transform 0.05s;
}

.cursor__ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Size (scale) is lerped in JS so the translate offset is always correct.
     Only visual properties that don't affect layout transition here. */
  transition:
    background 0.4s,
    border-color 0.4s,
    opacity 0.3s;
}

.cursor__label {
  font-family: var(--font-sans);
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: font-size 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
}

.cursor__ring--hover {
  /* scale handled by JS */
}

.cursor__ring--gallery {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.cursor__ring--gallery .cursor__label {
  font-size: 0.5rem;
  color: #fff;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 1.125rem;
  background: var(--color-bg);
  user-select: none;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

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

.marquee__item {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.875rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-muted);
  padding-inline: 2rem;
  white-space: nowrap;
  line-height: 1;
}

.marquee__dot {
  color: var(--color-accent);
  font-style: normal;
}

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

/* ============================================================
   HERO SPOTLIGHT (follows cursor)
   ============================================================ */

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px circle at var(--hero-mx, 50%) var(--hero-my, 50%),
    rgba(200, 169, 110, 0.07),
    transparent 55%
  );
  pointer-events: none;
  z-index: 4;
  transition: background 0.05s;
}

/* ============================================================
   GALLERY ITEM — GLARE OVERLAY
   ============================================================ */

.gallery-item::after {
  content: '';
  position: absolute;
  /* Fixed-size circle rasterised once — only transform changes each frame,
     which is GPU-composited and never triggers a repaint. */
  width: 360px;
  height: 360px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0%, transparent 70%);
  transform: translate(calc(var(--glare-x, -400px) - 180px), calc(var(--glare-y, -400px) - 180px));
  will-change: transform;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 2;
}

.gallery-item.tilt-active::after {
  opacity: 1;
}

/* ============================================================
   TEXT SCRAMBLE CHARACTER
   ============================================================ */

.scramble-char {
  color: var(--color-accent);
  opacity: 0.65;
}

/* ============================================================
   ABOUT PORTRAIT — contain overflow for parallax
   ============================================================ */

/* overflow:visible set below in stacked section — front card contains it */
.about__portrait {
  transform: translateY(0) scale(1.12);
  transition: filter var(--transition-slow);
}

/* ============================================================
   INTRO SCREEN — typewriter on load
   ============================================================ */

.intro-screen {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-screen.is-leaving {
  animation: introSlide 0.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes introSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

.intro__text {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--color-text-primary);
  display: flex;
  align-items: baseline;
}

.intro__blink {
  color: var(--color-accent);
  animation: introBlink 0.55s step-end infinite;
  margin-left: 2px;
}

@keyframes introBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   PAGE CURTAIN — nav transition sweep
   ============================================================ */

.curtain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  overflow: hidden;
  /* Off-screen left by default — transform is GPU-composited, unlike clip-path */
  transform: translateX(-100%);
}

.curtain__face {
  position: absolute;
  inset: 0;
  background: var(--color-surface);
}

.curtain__line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background: var(--color-accent);
  box-shadow: 0 0 16px 2px var(--color-accent);
}

.curtain.sweep-in {
  animation: curtainIn 0.44s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.curtain.sweep-out {
  transform: translateX(0); /* start fully on-screen */
  animation: curtainOut 0.44s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes curtainIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@keyframes curtainOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* ============================================================
   HERO SPLIT — S-curve SVG divider
   ============================================================ */

.hero__right {
  position: absolute;
  inset: 0;
  left: 38%;
}

/* bg inside right panel fills only that panel */
.hero__right .hero__bg {
  left: 0;
}

.hero__split-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__split-path {
  fill: var(--color-bg);
}

.hero__left {
  position: absolute;
  inset: 0;
  right: 55%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--container-pad);
  padding-bottom: 3rem;
}

.hero__left .hero__content {
  text-align: left;
  padding: 0;
}

.hero__left .hero__tagline {
  text-align: left;
  letter-spacing: 0.18em;
}

/* Mobile: collapse split, text overlays photo */
@media (max-width: 768px) {
  .hero__right { left: 0; }

  .hero__split-svg { display: none; }

  .hero__left {
    right: 0;
    background: linear-gradient(
      to right,
      rgba(15, 15, 15, 0.94) 55%,
      rgba(15, 15, 15, 0.1)  100%
    );
    padding-right: 8%;
  }
}

/* ============================================================
   ABOUT IMAGE WRAP — contain portrait parallax
   ============================================================ */

.about__image-wrap {
  overflow: visible;
}

.about__image-clip {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ============================================================
   AMBIENT CLOCK — fixed bottom-left whisper
   ============================================================ */

.ambient-clock {
  position: fixed;
  bottom: 1.5rem;
  left: 1.75rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(154, 144, 128, 0.35);
  pointer-events: none;
  white-space: nowrap;
  transition: color 0.4s, opacity 0.4s;
}

.ambient-clock__sep {
  color: var(--color-accent);
  opacity: 0.3;
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9993;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-modal__box {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(2rem, 5vw, 3rem);
  transform: translateY(28px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-modal.is-open .contact-modal__box {
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.contact-modal__close:hover { color: var(--color-accent); }

.contact-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 0.2rem;
}

.contact-modal__sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-modal__label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-modal__label span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-modal__label input,
.contact-modal__label textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  resize: vertical;
}

.contact-modal__label input:focus,
.contact-modal__label textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-modal__submit {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact-modal__submit:hover:not(:disabled) {
  background: #d4b87a;
  transform: translateY(-1px);
}

.contact-modal__submit:disabled { opacity: 0.6; }

.contact-modal__success {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-top: 0.75rem;
}

/* ============================================================
   STATS COUNTER STRIP
   ============================================================ */

.stats {
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--color-border);
}

.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.stats__unit {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item + .stats__item::before {
    top: 0; left: 15%; right: 15%; bottom: auto;
    width: auto; height: 1px;
  }
}

/* ============================================================
   CURSOR TRAIL
   ============================================================ */

.cursor__trail-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--color-accent);
  pointer-events: none;
  z-index: 9999997;
  opacity: 0;
  will-change: transform, opacity;
}

/* ============================================================
   AMBIENT GALLERY MODE
   ============================================================ */

.gallery__ambient-btn {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.45em 1.25em;
  border-radius: 100px;
  margin-top: var(--space-md);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.gallery__ambient-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-dim);
}

.ambient-overlay {
  position: fixed;
  inset: 0;
  z-index: 9991;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.ambient-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* Cinematic vignette — radial */
.ambient-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 85% at center, transparent 38%, rgba(0,0,0,0.62) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Bottom gradient so info text is always readable */
.ambient-overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ---- Images (double-buffered crossfade) ---- */

.ambient-overlay__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

.ambient-overlay__img.is-showing { opacity: 1; }

/* Portrait images: show whole photo; bg layer fills the void */
.ambient-overlay__img.is-portrait {
  object-fit: contain;
}

/* Blurred background fill for portrait images */
.ambient-overlay__bg {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: blur(38px) saturate(0.5) brightness(0.45);
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.ambient-overlay__bg.is-active {
  opacity: 1;
}

/* ---- Ken Burns — 4 directional drifts ---- */

@keyframes kb-tl {
  from { transform: scale(1.05) translate( 0.5%,  0.5%); }
  to   { transform: scale(1.18) translate(-2.5%, -2.5%); }
}
@keyframes kb-tr {
  from { transform: scale(1.05) translate(-0.5%,  0.5%); }
  to   { transform: scale(1.18) translate( 2.5%, -2.5%); }
}
@keyframes kb-bl {
  from { transform: scale(1.05) translate( 0.5%, -0.5%); }
  to   { transform: scale(1.18) translate(-2.5%,  2.5%); }
}
@keyframes kb-br {
  from { transform: scale(1.05) translate(-0.5%, -0.5%); }
  to   { transform: scale(1.18) translate( 2.5%,  2.5%); }
}

/* Ken Burns only requires data-kb — NOT is-showing.
   The outgoing image keeps its animation running through the entire 1.5s opacity
   crossfade, so the transform never snaps while the element is still visible. */
.ambient-overlay__img[data-kb="0"] { animation: kb-tl 7s ease-in-out forwards; }
.ambient-overlay__img[data-kb="1"] { animation: kb-tr 7s ease-in-out forwards; }
.ambient-overlay__img[data-kb="2"] { animation: kb-bl 7s ease-in-out forwards; }
.ambient-overlay__img[data-kb="3"] { animation: kb-br 7s ease-in-out forwards; }

/* ---- Nav arrows ---- */

.ambient-overlay__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  cursor: none;
  opacity: 0;
  transition: opacity 0.4s, color 0.25s, border-color 0.25s, background 0.25s;
}

.ambient-overlay.is-active:hover .ambient-overlay__nav,
.ambient-overlay__nav:focus {
  opacity: 1;
}

.ambient-overlay__nav:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.ambient-overlay__nav--prev { left: 2rem; }
.ambient-overlay__nav--next { right: 2rem; }

/* ---- Info overlay (title + category) ---- */

@keyframes ambientInfoIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ambient-overlay__info {
  position: absolute;
  bottom: 4.5rem;
  left: clamp(2rem, 5vw, 4rem);
  z-index: 5;
  pointer-events: none;
}

.ambient-overlay__cat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.45rem;
  opacity: 0;
}

.ambient-overlay__title-label {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
  margin: 0;
  opacity: 0;
}

.ambient-overlay__info.is-entering .ambient-overlay__cat-label {
  animation: ambientInfoIn 0.65s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.ambient-overlay__info.is-entering .ambient-overlay__title-label {
  animation: ambientInfoIn 0.65s 0.4s  cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ---- Progress bar ---- */

@keyframes ambientProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.ambient-overlay__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  z-index: 6;
  overflow: hidden;
}

.ambient-overlay__bar {
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.7;
}

.ambient-overlay__bar.is-running {
  animation: ambientProgress 5s linear forwards;
}

/* ---- Hint & counter ---- */

.ambient-overlay__hint {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  white-space: nowrap;
  z-index: 6;
}

.ambient-overlay__counter {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
  z-index: 6;
}

/* ============================================================
   BLUR-UP IMAGE LOADING
   ============================================================ */

.gallery-item img {
  opacity: 0;
  transition: opacity 0.8s ease, transform var(--transition-slow);
}

.gallery-item img.is-loaded {
  opacity: 1;
}

/* ============================================================
   COLOR PALETTE SWATCHES
   ============================================================ */

.gallery-item__palette {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 5px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
}

.gallery-item:hover .gallery-item__palette {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ============================================================
   LIGHTBOX EXIF STRIP
   ============================================================ */

/* ============================================================
   GLIGHTBOX THEME OVERRIDES
   ============================================================ */

.glightbox-clean .gslide-description {
  background: #111;
}

.glightbox-clean .gdesc-inner {
  padding: 1.25rem 1.5rem 1.5rem;
}

.glightbox-clean .gslide-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.glightbox-clean .gslide-desc {
  color: var(--color-text-muted);
}

/* Close / nav arrow colours */
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(255, 255, 255, 0.06);
}

.glightbox-clean .gnext svg path,
.glightbox-clean .gprev svg path,
.glightbox-clean .gclose svg path {
  fill: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   LIGHTBOX EXIF + PALETTE
   ============================================================ */

.lb-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.lb-exif {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding-top: 0.6rem;
  margin-top: 0.1rem;
  opacity: 0.85;
}

.lb-palette {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-border);
}

.lb-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   REDUCE MOTION — disable all extras
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .marquee__inner        { animation: none; }
  .cursor__dot,
  .cursor__ring          { display: none; }
  .progress-bar          { display: none; }
  .intro-screen          { display: none; }
  .curtain               { display: none; }
}
