/* ============================================================
   GEMINI SNOW PHOTOGRAPHY — Luxury Editorial Design System
   Obsidian & Chrome Aesthetic
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Obsidian Palette */
  --bg-main: #0A0A0A;
  --bg-panel: #121212;
  --bg-overlay: rgba(10, 10, 10, 0.95);
  
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #555555;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.4);
  
  --accent-neon: #FF2A5F; /* Used strictly only for the final CTA */

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif; /* Elegant, thin to medium weights */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --header-height: 90px;
  --card-gap: 8vh;
  --page-padding: 5vw;

  /* Luxurious Easing Curves */
  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s var(--ease-fluid);
  --transition-medium: 0.6s var(--ease-fluid);
  --transition-slow: 1.2s var(--ease-fluid);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none; /* Hide default cursor for standard desktop */
}

/* 35mm Film Grain Overlay */
body::before {
  content: "";
  position: fixed;
  top: -100%; left: -100%; width: 300vw; height: 300vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: filmGrain 0.8s steps(10) infinite;
}

@keyframes filmGrain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(1%, 1%); }
  30% { transform: translate(-3%, -1%); }
  40% { transform: translate(2%, 3%); }
  50% { transform: translate(-1%, 2%); }
  60% { transform: translate(3%, -2%); }
  70% { transform: translate(-2%, 1%); }
  80% { transform: translate(1%, -3%); }
  90% { transform: translate(2%, 2%); }
}

a, button, [role="button"], input, select, textarea {
  cursor: none; /* Override hover cursors */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Screen-reader only utility (for SEO H1) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 100%);
  transform: translateY(-100%);
  transition: transform 1.2s var(--ease-fluid) 0.5s;
}

body.site-ready .site-header {
  transform: translateY(0);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  transition: opacity var(--transition-fast);
  text-transform: uppercase;
}

.site-logo:hover {
  opacity: 0.6;
}

.site-logo span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 0.4em;
  display: block;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
  color: var(--text-secondary);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0.7;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header-icon-btn:hover {
  opacity: 1;
}

.header-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.main-content {
  margin-top: calc(var(--header-height) + 20px);
  min-height: calc(100vh - var(--header-height));
  padding-bottom: 15vh;
}

/* ============================================================
   CATEGORY FILTER NAVIGATION
   ============================================================ */
.category-filter {
  position: sticky;
  top: calc(var(--header-height) - 1px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  padding: 20px var(--page-padding);
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 60px;
  overflow-x: auto;
  white-space: nowrap;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-filter::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--text-primary);
  transition: width var(--transition-medium);
}

.filter-btn:hover {
  color: var(--text-primary);
}
.filter-btn:hover::after {
  width: 30%;
}

.filter-btn.active {
  color: var(--text-primary);
}
.filter-btn.active::after {
  width: 100%;
}

/* ============================================================
   HIGHLIGHTS FEED (Luxurious CSS Grid)
   ============================================================ */
.highlights-feed {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 3vw 2vw; /* Vertical gap, Horizontal gap */
}

.project-card {
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  width: 100%;
  grid-column: span 12; /* Default mobile is full width */
}

.project-card .card-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 4/5; /* Gives a consistent editorial height */
}

.project-card .card-image-wrapper img {
  width: 100%;
  height: 120%; /* Taller for parallax */
  object-fit: cover;
  position: absolute;
  top: -10%; left: 0;
  filter: brightness(0.85) grayscale(10%) contrast(1.1);
  transition: filter 0.8s var(--ease-fluid), transform 1.2s var(--ease-fluid);
  will-change: transform, filter;
}

.project-card:hover .card-image-wrapper img {
  filter: brightness(1.1) grayscale(0%) contrast(1.15) drop-shadow(3px 0px 0px rgba(255, 0, 100, 0.4)) drop-shadow(-3px 0px 0px rgba(0, 255, 255, 0.4));
  transform: translateY(var(--parallax-offset, 0)) scale(1.08) !important;
}

.project-card .card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 20px;
  transition: color var(--transition-fast);
}

.project-card:hover .card-title {
  color: var(--text-primary);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- The Asymmetrical CSS Grid Editorial Layout -- */
@media (min-width: 768px) {
  .project-card:nth-child(5n + 1) {
    grid-column: 2 / span 10;
  }
  
  .project-card:nth-child(5n + 2) {
    grid-column: 1 / span 5;
    margin-top: 10vh;
  }
  
  .project-card:nth-child(5n + 3) {
    grid-column: 7 / span 6;
    margin-top: -15vh;
  }
  
  .project-card:nth-child(5n + 4) {
    grid-column: 3 / span 8;
  }

  .project-card:nth-child(5n + 5) {
    grid-column: 4 / span 6;
  }
}

/* ============================================================
   LIGHTBOX / FULLSCREEN IMAGE VIEWER
   ============================================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-container {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.lightbox.open .lightbox-image-container img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: var(--page-padding);
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--text-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100vh;
  width: 10vw;
  color: var(--text-secondary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium), color var(--transition-fast);
}

.lightbox:hover .lightbox-nav {
  opacity: 1;
}

.lightbox-nav:hover {
  color: var(--text-primary);
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: var(--page-padding);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Lightbox CTA */
.lightbox-cta {
  position: absolute;
  bottom: 25px;
  right: var(--page-padding);
  padding: 10px 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-hover);
  transition: border-color var(--transition-fast);
}

.lightbox-cta:hover {
  border-bottom-color: var(--text-primary);
}

/* ============================================================
   INFO PANEL (About + Contact Form)
   ============================================================ */
.info-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3500;
  background: var(--bg-panel);
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-fluid);
}

.info-overlay.open {
  transform: translateY(0);
}

.info-close {
  position: fixed;
  top: 30px;
  right: var(--page-padding);
  font-size: 1.5rem;
  color: var(--text-secondary);
  z-index: 3600;
  transition: color var(--transition-fast), transform var(--transition-medium);
}

.info-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 15vh var(--page-padding) 10vh;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.tagline strong {
  font-weight: 400;
  font-style: italic;
}

/* Bio Photo */
.bio-photo-wrapper {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter var(--transition-long);
}

.bio-photo-wrapper:hover .bio-photo {
  filter: grayscale(0%) contrast(1.0);
}

.bio-photo-caption {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
}

/* Social Links */
.info-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-medium);
  width: fit-content;
}

.social-link svg {
  fill: currentColor;
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateX(10px);
}

/* Contact Info */
.info-contact {
  margin-bottom: 80px;
  padding-top: 20px;
}

/* ============================================================
   BOOK A SHOOT FORM
   ============================================================ */
.form-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-weight: 300;
}

.booking-form {
  display: grid;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.form-group.floating label {
  position: absolute;
  top: 16px;
  left: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 16px 0 8px;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-weight: 300;
  width: 100%;
}

.form-group.floating input:focus,
.form-group.floating select:focus,
.form-group.floating textarea:focus {
  border-bottom-color: var(--text-primary);
}

/* Float label gracefully up when focused or has content */
.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating select:not(:empty):valid ~ label {
  top: -10px;
  font-size: 0.6rem;
  color: var(--text-primary);
}

.form-group.floating textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.floating select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23FFFFFF' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right top 20px;
  padding-right: 24px;
}

.form-group.floating select option {
  background-color: var(--bg-main);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-submit-btn {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 40px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  transition: all var(--transition-medium);
  margin-top: 20px;
  cursor: pointer;
  width: fit-content;
}

.form-submit-btn:hover {
  background: var(--text-primary);
  color: var(--bg-main);
}

/* Form success state */
.form-success {
  display: none;
  padding: 60px 0;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
}

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 40px;
  right: var(--page-padding);
  z-index: 900;
  padding: 14px 24px;
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-fluid), transform 1.2s var(--ease-fluid), background 0.3s, color 0.3s, border-color 0.3s;
}

body.site-ready .floating-cta {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta:hover {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
  transform: translateY(-5px);
}

/* ============================================================
   LOADING STATE
   ============================================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
}

.loading-screen.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  opacity: 0;
  animation: cinematicReveal 3.5s forwards;
}

@keyframes cinematicReveal {
  0% { opacity: 0; letter-spacing: 0.1em; filter: blur(4px); transform: scale(0.95); }
  40% { opacity: 1; letter-spacing: 0.3em; filter: blur(0); transform: scale(1); }
  75% { opacity: 1; letter-spacing: 0.35em; filter: blur(0); transform: scale(1.02); }
  100% { opacity: 0; letter-spacing: 0.5em; filter: blur(10px); transform: scale(1.05); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-fluid), height 0.3s var(--ease-fluid), background-color 0.3s var(--ease-fluid);
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

.cursor-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  opacity: 0;
  transition: opacity 0.2s;
}

.custom-cursor.hovering-image {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  mix-blend-mode: normal;
}

.custom-cursor.hovering-image .cursor-text {
  opacity: 1;
}

.custom-cursor.hovering-magnetic {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  mix-blend-mode: difference;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  width: 100%;
  padding: 40px var(--page-padding) 120px var(--page-padding);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.overlay-footer {
  padding-top: 80px;
  padding-bottom: 120px;
  border-top: none;
}

.op-light-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.op-light-footer-badge strong {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}

.op-light-footer-badge:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.op-light-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0.85;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --page-padding: 6vw;
  }

  .category-gallery {
    columns: 2;
    column-gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --page-padding: 24px;
    --header-height: 80px;
    --card-gap: 8vh;
  }

  .site-logo {
    font-size: 1.1rem;
  }

  /* Reset Asymmetrical Grid to Single Column */
  .project-card:nth-child(even),
  .project-card:nth-child(odd),
  .project-card:nth-child(3n),
  .project-card:nth-child(3n + 1),
  .project-card:nth-child(3n + 2),
  .project-card:nth-child(3n + 3) {
    max-width: 100%;
    align-self: center;
  }

  .category-gallery {
    columns: 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 24px;
  }

  .info-content {
    padding-top: 12vh;
  }

  .lightbox-nav {
    display: none; /* Rely on touch swipe for mobile */
  }

  .floating-cta {
    width: calc(100% - 48px);
    text-align: center;
    bottom: 24px;
  }
}
