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

@font-face {
  font-family: 'HV Muse';
  src: url('../fonts/hv-muse-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HV Muse';
  src: url('../fonts/hv-muse-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg:      #FAFAF8;
  --ink:     #0E0D0B;
  --claret:  #6B1F2A;
  --ink-50:  rgba(14, 13, 11, 0.5);
  --ink-30:  rgba(14, 13, 11, 0.3);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Lora', Georgia, serif;
  --display: 'HV Muse', 'Cormorant Garamond', Georgia, serif;
}

html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: radial-gradient(
    ellipse 75% 75% at 50% 48%,
    transparent 35%,
    rgba(18, 11, 8, 0.09) 100%
  );
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

#orb-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  filter: blur(4px);
}

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

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9000;
}

.page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
  height: 60px;
}

.nav-monogram {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}

.nav-link:hover { color: var(--claret); }

/* Dropdown nav item */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
.nav-caret {
  font-size: 0.7em;
  line-height: 1;
  margin-left: 4px;
  transition: transform 0.25s ease;
}
.nav-item--dropdown.is-open .nav-caret,
.nav-item--dropdown:hover .nav-caret {
  transform: translateY(1px) rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 2px);
  right: -6px;
  background: rgba(250, 250, 248, 0.78);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  backdrop-filter: blur(8px) saturate(1.1);
  border: 1px solid rgba(14, 13, 11, 0.06);
  border-radius: 999px;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 0.22s ease, transform 0.25s ease, visibility 0.22s ease;
  z-index: 110;
  white-space: nowrap;
  box-shadow:
    0 4px 14px rgba(14, 13, 11, 0.06),
    0 1px 3px rgba(14, 13, 11, 0.04);
}
/* Invisible hover bridge so the menu doesn't close in the gap */
.nav-item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 6px;
}
.nav-item--dropdown:hover .nav-submenu,
.nav-item--dropdown:focus-within .nav-submenu,
.nav-item--dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu__link {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.76rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s;
}
.nav-submenu__link:hover {
  color: var(--claret);
}
.nav-submenu__link--active {
  color: var(--ink);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(80px, 14vh, 180px) 8% 56px;
  position: relative;
  z-index: 2;
}

.content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flash-banner {
  max-width: 520px;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  border-radius: 2px;
  text-align: center;
}

.flash-banner--ok {
  background: rgba(107, 31, 42, 0.08);
  color: var(--ink);
}

.flash-banner--err {
  background: rgba(107, 31, 42, 0.12);
  color: var(--claret);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.logo-mark {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.brand-the {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: -1.1em;
  position: relative;
  z-index: 2;
}

.brand-museion {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  color: var(--ink);
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.brand-rule {
  width: 52px;
  height: 1px;
  background: var(--ink-30);
  border: none;
  margin: 0 auto 36px;
}

.main-copy {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.word { display: inline-block; }

.sub-copy {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 52px;
}

.form-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.25vw, 0.92rem);
  color: var(--ink);
  padding: 0;
  text-align: center;
  line-height: 1.7;
  transition: opacity 0.2s;
}

.form-trigger:hover { opacity: 1; }

.form-trigger-knock {
  display: inline-block;
  margin-top: 5px;
  font-size: clamp(0.70rem, 1.1vw, 0.80rem);
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 1px;
  transition: border-color 0.25s;
}

.form-trigger:hover .form-trigger-knock {
  border-color: var(--ink);
}

.form-trigger-dingir {
  display: block;
  margin: 18px auto 0;
  font-family: 'Noto Sans Cuneiform', var(--sans);
  font-size: 0.72rem;
  line-height: 1;
  color: var(--ink-50);
  letter-spacing: 0;
  user-select: none;
}

.field-wrap { margin-bottom: 20px; }

.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-30);
  border-radius: 0;
  padding: 7px 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink);
  text-align: center;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.field-input::placeholder {
  color: var(--ink);
  opacity: 0.38;
  transition: opacity 0.3s;
}

.field-input:focus::placeholder { opacity: 0; }
.field-input:focus { border-bottom-color: var(--ink); }

.submit-row { margin-top: 24px; }

.submit-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink);
  padding: 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.submit-btn:hover { color: var(--claret); }
.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.consent-row {
  margin-top: 16px;
  text-align: left;
}

.consent-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-50);
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-lead {
  flex: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  background: var(--bg);
  padding: 52px 44px 44px;
  max-width: 320px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-50);
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--ink); }

.form-error {
  display: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--claret);
  line-height: 1.45;
  margin-bottom: 12px;
  max-width: 220px;
}

.form-error.is-visible { display: block; }

.confirmation {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.55s;
}

.page-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0 28px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--ink-50);
  letter-spacing: 0.05em;
}

.page-footer a:hover { color: var(--claret); }

/* ── Animations (defensive: content visible by default; animation enhances) ── */
/* `animation-fill-mode: both` applies the `from` state during delay AND keeps  */
/* the `to` state after. If animation fails to run, opacity stays default (1). */

.logo-mark g > circle {
  animation: ringReveal 0.55s ease-out both;
}
.logo-mark g > circle:nth-child(1) { animation-delay: 0.08s; }
.logo-mark g > circle:nth-child(2) { animation-delay: 0.18s; }
.logo-mark g > circle:nth-child(3) { animation-delay: 0.28s; }
.logo-mark g > circle:nth-child(4) { animation-delay: 0.38s; }
.logo-mark g > circle:nth-child(5) { animation-delay: 0.48s; }
.logo-mark g > circle:nth-child(6) { animation-delay: 0.58s; }
.logo-mark g > circle:nth-child(7) { animation-delay: 0.68s; }
.logo-mark g > circle:nth-child(8) { animation-delay: 0.78s; }
.logo-mark g > circle:nth-child(9) { animation-delay: 0.88s; }

@keyframes ringReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.brand-the     { animation: fadeIn 0.5s ease 0.45s both; }
.brand-museion { animation: fadeIn 0.6s ease 0.60s both; }
.brand-rule    { animation: fadeIn 0.4s ease 0.85s both; }

.word { animation: wordReveal 0.75s ease both; }

@keyframes wordReveal {
  from { opacity: 0; filter: blur(7px); }
  to   { opacity: 1; filter: blur(0); }
}

.sub-copy, .form-area { animation: fadeIn 0.65s ease both; }

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

/* Skip animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo-mark g > circle,
  .brand-the, .brand-museion, .brand-rule,
  .word, .sub-copy, .form-area {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  main { padding: 72px 6% 40px; }
  .nav-links { gap: 18px; }
  .brand-museion { font-size: clamp(2.8rem, 14vw, 7.5rem); }
}

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── Mystic Monday page ─────────────────────────────────────────────────── */

.content--mystic {
  max-width: 640px;
}

.mystic-kicker {
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--ink-50);
  margin-bottom: 28px;
  animation: fadeIn 0.5s ease 0.20s both;
}
.mystic-kicker__brand {
  font-family: var(--display);
  font-style: normal;
  font-size: 1.05em;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: none;
}

.mystic-lockup {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  text-align: center;
}

.mystic-word {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  text-transform: lowercase;
  animation: fadeIn 0.65s ease both;
}
.mystic-word--top { animation-delay: 0.45s; }
.mystic-word--bot { margin-top: -0.04em; animation-delay: 0.60s; }

.mystic-mark {
  position: absolute;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1;
  animation: fadeIn 0.45s ease 0.80s both;
}
.mystic-mark--lozenge {
  top: -14px;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--ink);
  opacity: 0.85;
}
.mystic-mark--star {
  right: -0.6em;
  bottom: 0.05em;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-family: 'Noto Sans Cuneiform', var(--sans);
  opacity: 0.5;
}

.mystic-rule {
  margin: 6px auto 32px;
}

.mystic-lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  max-width: 560px;
}

.mystic-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 540px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.65s ease 0.95s both;
}
.mystic-body p { margin-bottom: 14px; }
.mystic-body p:last-child { margin-bottom: 0; }

.mystic-meta {
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.55s ease 1.10s both;
}

/* Modal title for mystic */
.modal-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

/* Format choice (radio group) */
.format-row {
  border: 0;
  padding: 0;
  margin: 6px 0 18px;
  text-align: left;
}
.format-legend {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 10px;
}
.format-legend__hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92em;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-left: 6px;
  color: var(--ink-30);
}
.format-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  padding: 7px 0;
  cursor: pointer;
  line-height: 1.3;
}
.format-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink-30);
  border-radius: 1px;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.format-option input[type="checkbox"]:checked {
  border-color: var(--ink);
  background-color: var(--ink);
}
.format-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 7px;
  border: solid #FAFAF8;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.format-option__hint {
  color: var(--ink-50);
}

@media (max-width: 600px) {
  .mystic-word { font-size: clamp(2.4rem, 13vw, 6.4rem); }
  .mystic-mark--lozenge { font-size: clamp(2.4rem, 13vw, 6.4rem); }
  .mystic-lead { font-size: clamp(1.05rem, 4.2vw, 1.55rem); }
}

/* ── "A taste" lightbox trigger ─────────────────────────────────────────── */

.taste-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin: -8px auto 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.15vw, 0.98rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0;
  animation: fadeIn 0.6s ease 1.25s both;
  transition: opacity 0.25s, letter-spacing 0.35s;
}
.taste-trigger:hover {
  letter-spacing: 0.06em;
}
.taste-trigger:hover .taste-trigger__rule {
  background: var(--ink);
}
.taste-trigger__rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-30);
  transition: background-color 0.25s, width 0.35s;
}
.taste-trigger:hover .taste-trigger__rule {
  width: 36px;
}
.taste-trigger__label {
  display: inline-block;
  padding: 0 2px;
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.lightbox-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.1rem;
  color: rgba(250, 250, 248, 0.7);
  line-height: 1;
  padding: 6px 10px;
  transition: color 0.2s;
  z-index: 2;
}
.lightbox-close:hover { color: #FAFAF8; }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(880px, 90vw);
  max-height: 100%;
  margin: 0;
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s, opacity 0.55s ease 0.05s;
}
.lightbox-backdrop.is-open .lightbox-figure {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-frame {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.35);
  background: #0e0d0b;
}

.lightbox-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0e0d0b;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.lightbox-image.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(250, 250, 248, 0.18);
  color: rgba(250, 250, 248, 0.75);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  z-index: 3;
}
.lightbox-nav:hover {
  background: rgba(250, 250, 248, 0.08);
  color: #FAFAF8;
  border-color: rgba(250, 250, 248, 0.32);
}
.lightbox-nav--prev { left: clamp(12px, 3vw, 36px); }
.lightbox-nav--next { right: clamp(12px, 3vw, 36px); }

.lightbox-caption {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 248, 0.82);
  text-align: center;
  min-height: 3em;
}
.lightbox-caption__text {
  display: inline-block;
  max-width: 540px;
}
.lightbox-caption__count {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
}

@media (max-width: 600px) {
  .lightbox-backdrop { padding: 4vh 4vw; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-frame { height: 60vh; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-caption { font-size: 0.88rem; }
}
