/* ─── RESET & DOMO STYLE TOKENS ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #000000;
  --dark:   #0a0a0a;
  --mid:    #111111;
  --border: rgba(255,255,255,0.1);
  --white:  #ffffff;
  --off:    #888888;
  --font-sans: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  /* removing custom cursor for a cleaner native feel, or keep native */
}


img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
ul  { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Font Weights Utility */
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-800 { font-weight: 800; }

/* Global CTA Link */
.cta-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--white);
  transition: opacity 0.3s;
}
.cta-link:hover { opacity: 0.6; }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2rem, 5vw, 4rem);
  background: transparent;
  z-index: 1200;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  height: calc(var(--nav-h) * 0.85);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 5.6rem;
  height: 1.2rem;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu-toggle {
  background: none; border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 1rem);
  right: clamp(1rem, 5vw, 4rem);
  z-index: 1201;
  min-width: 5.5rem;
  min-height: 44px;
  padding: 0.65rem 0 0.65rem 0.9rem;
  justify-content: flex-end;
  touch-action: manipulation;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-menu-toggle::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--white);
  opacity: 0.65;
  transition: width 0.3s, opacity 0.3s;
}

.nav-menu-toggle:hover { color: var(--off); }
.nav-menu-toggle:hover::before {
  width: 30px;
  opacity: 1;
}

/* ─── MENU OVERLAY ─────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 1rem);
  right: clamp(1rem, 5vw, 4rem);
  width: auto;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-top: 3.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.menu-overlay-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.overlay-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.overlay-links li {
  overflow: hidden;
}

.overlay-links a {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--white);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out), color 0.3s;
}

.menu-overlay.open .overlay-links li:nth-child(1) a { transform: translateY(0); opacity: 1; transition-delay: 0.04s; }
.menu-overlay.open .overlay-links li:nth-child(2) a { transform: translateY(0); opacity: 1; transition-delay: 0.08s; }
.menu-overlay.open .overlay-links li:nth-child(3) a { transform: translateY(0); opacity: 1; transition-delay: 0.12s; }
.menu-overlay.open .overlay-links li:nth-child(4) a { transform: translateY(0); opacity: 1; transition-delay: 0.16s; }
.menu-overlay.open .overlay-links li:nth-child(5) a { transform: translateY(0); opacity: 1; transition-delay: 0.20s; }
.menu-overlay.open .overlay-links li:nth-child(6) a { transform: translateY(0); opacity: 1; transition-delay: 0.24s; }

.overlay-links a:hover { color: rgba(255,255,255,0.4); }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}

.slide.active { opacity: 1; }
.slide img { filter: brightness(0.65); }

.hero-content {
  position: absolute;
  bottom: 12vh;
  left: clamp(2rem, 5vw, 4rem);
  z-index: 10;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--off);
  margin-bottom: -10px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  margin-top: 0;
}

.hero-controls {
  position: absolute;
  bottom: 3rem;
  right: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 10;
}

.hero-arrow {
  background: none; border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.hero-arrow:hover { opacity: 1; }

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.dot.active {
  background: var(--white);
  transform: scale(1.5);
}

/* ─── REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out), filter 1.2s var(--ease-out);
  will-change: transform, opacity, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── REVEAL SECTION ─────────────────────────────────── */
.reveal-section {
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--off);
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform: translateY(20px); }
}

.disciplines-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  max-width: 1000px;
  text-align: center;
}

.disc-item {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 300;
  text-transform: lowercase;
  color: var(--white);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

.disc-item:not(:last-child)::after {
  content: '/';
  position: absolute;
  right: -1.75rem;
  color: var(--off);
  opacity: 0.3;
}

/* ─── DISCIPLINE NAVIGATION (Homepage) ─── */
.discipline-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: var(--black);
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.discipline-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  aspect-ratio: 3/2;
  transition: transform 0.6s var(--ease-out);
}

.discipline-card:nth-child(1) { grid-column: span 3; grid-row: span 2; aspect-ratio: auto; } /* Cinematography */
.discipline-card:nth-child(2) { grid-column: span 3; } /* Photography */
.discipline-card:nth-child(3) { grid-column: span 3; } /* Web Design */
.discipline-card:nth-child(4) { grid-column: span 3; } /* Branding */
.discipline-card:nth-child(5) { grid-column: span 3; } /* Social */

@media (max-width: 900px) {
  .discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .discipline-card:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 1/1 !important; }
}

@media (max-width: 600px) {
  .discipline-grid { grid-template-columns: 1fr; }
}

.discipline-card img,
.discipline-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 1.2s var(--ease-out), filter 0.8s ease;
}

.discipline-card:hover img,
.discipline-card:hover video {
  transform: scale(1.05);
  filter: none;
}

.discipline-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 5;
}

.discipline-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  line-height: 1;
}

.discipline-count {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--off);
  margin-top: 0.5rem;
}

/* ─── MASONRY GRID (Category Pages) ─── */
.photo-collection {
  padding-bottom: 8rem;
}

.photo-group {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  content-visibility: auto;
  contain-intrinsic-size: 1200px;
}

.photo-group-title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  padding: 0 clamp(2rem, 5vw, 4rem) 1.5rem;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 0 clamp(2rem, 5vw, 4rem);
}

.masonry-item {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.masonry-item:nth-child(n) {
  grid-column: span 1;
  aspect-ratio: 1/1;
}

/* ─── CINEMATOGRAPHY BOARD ─── */
.cinema-board {
  padding: 0 clamp(1rem, 5vw, 4rem) 8rem;
}

.cinema-gallery {
  max-width: 1400px;
  margin: 0 auto;
}

.cinema-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cinema-card {
  aspect-ratio: 16/10;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
}

.cinema-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
  transition: transform 0.8s var(--ease-out), opacity 0.3s ease;
}

.cinema-card:hover video {
  transform: scale(1.025);
  opacity: 0.82;
}

@media (max-width: 760px) {
  .cinema-board {
    padding-bottom: 5rem;
  }

  .cinema-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Category Page Intro */
.category-header {
  padding: calc(var(--nav-h) + 6rem) clamp(2rem, 5vw, 4rem) 4rem;
}

.category-eyebrow {
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--off);
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  line-height: 1;
}

@media (max-width: 600px) {
  .category-header {
    padding: calc(var(--nav-h) + 3.5rem) 1rem 2.5rem;
  }

  .category-title {
    font-size: clamp(2rem, 10.5vw, 3rem);
    letter-spacing: 0;
    white-space: nowrap;
  }
}

.work-item img {
  filter: none;
  transition: transform 0.8s var(--ease-out), filter 0.6s ease;
}

.work-item:hover img {
  transform: scale(1.03);
  filter: none;
}

.work-meta {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  opacity: 0;
  transform: translateY(-5px);
  transition: transform 0.4s var(--ease-out), opacity 0.4s ease;
}

.work-item:hover .work-meta {
  transform: translateY(0);
  opacity: 1;
}

.work-cat {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--off);
  margin-bottom: -2px;
}

.work-name {
  font-size: 1rem;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 5vw, 4rem);
  background: var(--dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  align-items: center;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

.about-body {
  font-size: 1.1rem;
  color: var(--off);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img { filter: none; }

/* ─── REEL ────────────────────────────────── */
.reel-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: var(--black);
}

.reel-video {
  filter: brightness(0.4) contrast(1.1);
}

.reel-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.reel-title {
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: -0.05em;
  text-transform: capitalize;
}

/* ─── CONTACT/FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--border);
}

.footer-cta {
  max-width: 1400px;
  margin: 0 auto clamp(5rem, 9vw, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.cta-title {
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: capitalize;
}

.cta-kicker {
  max-width: 34rem;
  color: var(--off);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.7rem;
  margin-top: 0.5rem;
  padding: 0 1.1rem 0 1.35rem;
  border: 1px solid var(--white);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: lowercase;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.project-cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 3px;
  background: var(--black);
  color: var(--white);
  line-height: 1;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.project-cta:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.project-cta:hover .project-cta-arrow {
  background: var(--white);
  color: var(--black);
  transform: translateX(2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 6rem;
}

.footer-logo-img {
  width: 6.4rem;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.65rem;
}

.footer-text {
  color: var(--off);
  margin-bottom: 2rem;
  max-width: 440px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-socials a {
  font-size: 1rem;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--off);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--white); }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 1rem;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--off);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--off); text-transform: lowercase; }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--white); }

.form-submit {
  align-self: flex-start;
  background: none; border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  text-transform: lowercase;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 1rem;
}
.form-submit:hover { opacity: 0.6; }

.form-status {
  min-height: 1.5rem;
  color: var(--off);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--off);
  font-weight: 300;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ─── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  transition: background 0.3s, border-color 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2001;
  transform: translateY(-50%);
  transition: background 0.3s, border-color 0.3s, opacity 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

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

.lightbox-content {
  position: relative;
  width: 90vw; height: 85vh;
  display: flex; flex-direction: column;
  justify-content: center;
}

.lightbox-content img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.lightbox-video-mode .lightbox-meta,
.lightbox-video-mode #lightbox-img {
  display: none;
}

.lightbox-video-mode .lightbox-content {
  height: min(82vh, 56.25vw);
}

.lightbox-portrait-mode .lightbox-content {
  width: min(88vw, 48vh);
  height: 86vh;
}

.lightbox-meta {
  position: absolute;
  bottom: -3rem; left: 0;
}
.lightbox-cat { font-size: 0.85rem; color: var(--off); }
.lightbox-title { font-size: 1.25rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .hero-label {
    margin-bottom: 0;
    line-height: 1;
  }
  .hero-title {
    font-size: 3rem;
    line-height: 0.96;
  }
  .slide-beauty-detail img { object-position: 58% center; }
  .project-cta {
    width: 100%;
    max-width: 18rem;
    justify-content: space-between;
  }
  .footer-grid,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .lightbox-nav {
    top: auto;
    bottom: 1.5rem;
    transform: none;
  }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
  .lightbox-meta {
    bottom: 5rem;
  }
}
