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

:root {
  --black: #111111;
  --white: #FFFFFF;
  --cream: #FFFDF2;
  --yellow: #FFE500;
  --pink: #FF6B6B;
  --teal: #4ECDC4;
  --blue: #4A90D9;
  --border: 4px solid var(--black);
  --shadow: 8px 8px 0 var(--black);
  --shadow-sm: 4px 4px 0 var(--black);
  --shadow-md: 6px 6px 0 var(--black);
  --font: 'Space Grotesk', 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: var(--border);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-photo {
  width: 56px;
  height: 56px;
  border: 3px solid var(--black);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}

.nav-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transform: scale(1.3);
  display: block;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  padding: 4px 14px;
  border: var(--border);
  letter-spacing: 2px;
  transition: all 0.2s;
}

.nav-logo:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-sm);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border: var(--border);
  background: var(--white);
  transition: all 0.15s;
}

.nav-menu a:hover {
  background: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.nav-menu a.active {
  background: var(--yellow);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: var(--border);
  font-size: 1.5rem;
  padding: 4px 12px;
  cursor: pointer;
  background: var(--white);
}

/* ===== HERO ===== */
#hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--pink);
  border: var(--border);
  z-index: 0;
  opacity: 0.4;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 4px 14px;
  margin-bottom: 20px;
  border: var(--border);
  border-color: var(--black);
}

.hero-name-block {
  display: inline-block;
  background: var(--yellow);
  padding: 0 16px;
  border: var(--border);
  margin-bottom: 8px;
  box-shadow: var(--shadow-md);
}

.hero-name-block h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.8;
  max-width: 480px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: var(--border);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font);
  background: var(--white);
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.btn-hero {
  background: var(--yellow);
  font-weight: 700;
}

.btn-hero:hover {
  background: var(--pink);
  color: var(--black);
  box-shadow: var(--shadow);
}

.hero-photo-wrapper {
  flex-shrink: 0;
}

.hero-photo-frame {
  width: 300px;
  height: 300px;
  border: var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--gray, #eee);
  transform: rotate(2deg);
  transition: transform 0.3s;
}

.hero-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-photo {
  width: 100%;
  height: 100%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  transform: scale(1.4);
  display: block;
}

/* ===== HERO ENTRANCE ANIMATION ===== */
.hero-text > *,
.hero-photo-wrapper {
  opacity: 0;
}

.badge {
  animation: slideInLeft 0.6s ease 0.1s forwards;
}

.hero-name-block {
  animation: slideInLeft 0.6s ease 0.25s forwards;
}

.tagline {
  animation: slideInLeft 0.6s ease 0.4s forwards;
}

.hero-desc {
  animation: slideInLeft 0.6s ease 0.55s forwards;
}

.btn-hero {
  animation: slideInLeft 0.6s ease 0.7s forwards;
}

.hero-photo-wrapper {
  animation: slideInRight 0.8s ease 0.3s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SECTION ===== */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
  border-color: var(--white);
}

.section-dark .title-deco {
  background: var(--yellow);
  border-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: var(--border);
  padding-bottom: 12px;
}

.title-deco {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--pink);
  border: 3px solid var(--black);
  transform: rotate(10deg);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-card {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 48px;
}

.about-card .about-text {
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 800px;
}

.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--black);
  padding-top: 28px;
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 16px;
  border: 3px solid var(--black);
  background: var(--yellow);
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PENDIDIKAN ===== */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
}

.edu-card {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: all 0.2s;
  display: flex;
  align-items: flex-start;
}

.edu-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--black);
}

.edu-flex {
  display: flex;
  gap: 28px;
  align-items: center;
  width: 100%;
}

.edu-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.edu-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border: 4px solid var(--black);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-photo img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  display: block;
}

.edu-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.edu-campus {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.8;
}

.edu-meta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  padding: 3px 14px;
  margin-bottom: 14px;
}

.edu-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.85;
}

.edu-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edu-detail-item {
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
  border: 3px solid var(--black);
  background: var(--yellow);
  text-align: center;
}

.edu-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.edu-value {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== PROJECT ===== */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.project-card {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  color: var(--black);
  transition: all 0.2s;
}

.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--black);
}

.project-body {
  padding: 28px;
}

.project-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.85;
}

.project-links {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-link {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border: 3px solid var(--black);
  background: var(--yellow);
  transition: all 0.15s;
}

.project-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
  background: var(--pink);
  color: var(--black);
}

.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-skills span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border: 3px solid var(--black);
  background: var(--cream);
}

/* ===== EXPERIENCE ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

#organization .experience-grid {
  grid-template-columns: 1fr;
}

.exp-card {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  color: var(--black);
  position: relative;
  transition: all 0.2s;
}

.exp-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--black);
}

.exp-tag {
  position: absolute;
  top: -16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border: var(--border);
  color: var(--black);
  z-index: 2;
}

.exp-tag-1 {
  background: var(--pink);
}

.exp-tag-2 {
  background: var(--teal);
}

.exp-tag-3 {
  background: var(--yellow);
}

.exp-body {
  padding: 24px 28px;
}

.exp-photo {
  width: 100%;
  height: 200px;
  border-bottom: 4px solid var(--black);
  overflow: hidden;
  background: var(--cream);
  transition: all 0.3s;
  display: flex;
  position: relative;
}

.exp-photo:has(.img-wrap + .img-wrap)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--black);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.img-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  position: relative;
}

.exp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

#organization .exp-photo img {
  object-position: center 70%;
}

#organization .img-wrap:nth-child(2) img {
  object-position: center 59.6%;
}

#committee .experience-grid .exp-card:nth-child(2) .exp-photo img {
  object-position: center 57%;
}

#committee .experience-grid .exp-card:nth-child(3) .exp-photo img {
  object-position: center 58%;
}

#committee .experience-grid .exp-card:nth-child(6) .exp-photo img,
#committee .experience-grid .exp-card:nth-child(7) .exp-photo img {
  object-position: center 60%;
}

#committee .experience-grid .exp-card:nth-child(5) .exp-photo img {
  object-position: center 60%;
}

.exp-photo img:hover,
.img-wrap:hover img {
  transform: scale(1.08);
}

.exp-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.exp-meta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  padding: 2px 12px;
  margin-bottom: 8px;
}

.exp-role {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.8;
}

.exp-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.85;
}

.exp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exp-skills span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border: 3px solid var(--black);
  background: var(--cream);
}

/* ===== SKILLS ===== */
.skills-group {
  margin-bottom: 40px;
}

.skills-group:last-child {
  margin-bottom: 0;
}

.skills-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--yellow);
  border: var(--border);
  display: inline-block;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-card {
  padding: 10px 24px;
  border: var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.15s;
  cursor: default;
}

.skill-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-sm);
  background: var(--yellow);
}

.section-dark .skill-card {
  background: var(--white);
  color: var(--black);
}

.section-dark .skill-card:hover {
  background: var(--pink);
  color: var(--black);
}

/* ===== SERTIFIKAT ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.cert-card {
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.cert-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.cert-photo {
  width: 100%;
  height: 150px;
  border-bottom: 4px solid var(--black);
  overflow: hidden;
  background: var(--cream);
}

.cert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.3s;
}

.cert-photo img:hover {
  transform: scale(1.05);
}

.cert-body {
  padding: 16px 20px;
}

.cert-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.cert-issuer {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 6px;
  color: var(--black);
}

.cert-year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 12px;
  border: 3px solid var(--black);
  background: var(--cream);
  color: var(--black);
}

/* ===== CONTACT ===== */
.contact-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  padding: 14px 24px;
  border: var(--border);
  background: var(--white);
  transition: all 0.15s;
}

.section-dark .contact-item {
  color: var(--black);
  background: var(--white);
}

.contact-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
  background: var(--yellow);
}

.contact-icon {
  font-size: 1.3rem;
}

.cv-section {
  margin-top: 8px;
}

.btn-cv {
  background: var(--yellow);
  font-size: 1.1rem;
  padding: 16px 40px;
  border: var(--border);
}

.btn-cv:hover {
  background: var(--pink);
  color: var(--black);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.arrow {
  display: inline-block;
  font-size: 1.3rem;
  margin-left: 8px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: var(--border);
  background: var(--white);
  padding: 24px 0;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-name-block h1 {
    font-size: 3rem;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hide-mobile {
    display: none;
  }

  .hero-photo-frame {
    width: 220px;
    height: 220px;
    transform: rotate(0deg);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: var(--border);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
    padding: 16px;
  }

  .nav-menu a {
    display: block;
    text-align: center;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-logo {
    font-size: 1rem;
    padding: 3px 8px;
  }

  .nav-photo {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .nav-brand {
    gap: 8px;
  }

  .theme-toggle {
    font-size: 1rem;
    padding: 4px 8px;
    margin-left: 4px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .about-card {
    padding: 28px;
  }

  .about-stats {
    flex-direction: column;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .exp-photo {
    height: 160px;
  }

  .exp-body {
    padding: 20px;
  }

  .exp-tag {
    font-size: 0.65rem;
    padding: 3px 10px;
    top: -12px;
    right: 12px;
  }

  .edu-flex {
    flex-direction: column;
    text-align: center;
  }

  .edu-photo {
    width: 100px;
    height: 100px;
  }

  .edu-detail {
    justify-content: center;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .hero-name-block h1 {
    font-size: 2.4rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }

  .btn-cv {
    width: 100%;
    text-align: center;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }
.reveal-delay-10 { transition-delay: 1s; }
.reveal-delay-11 { transition-delay: 1.1s; }
.reveal-delay-12 { transition-delay: 1.2s; }
.reveal-delay-13 { transition-delay: 1.3s; }
.reveal-delay-14 { transition-delay: 1.4s; }
.reveal-delay-15 { transition-delay: 1.5s; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 6px solid var(--white);
  box-shadow: 12px 12px 0 rgba(255,255,255,0.15);
  transform-origin: center center;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
  border: 3px solid var(--white);
  background: rgba(0,0,0,0.5);
  padding: 12px 16px;
  line-height: 1;
  transition: all 0.2s;
  font-family: var(--font);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 10px 24px;
  border: 3px solid #fff;
  font-family: var(--font);
  text-align: center;
  max-width: 80%;
  z-index: 10000;
  font-size: 0.95rem;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
  font-weight: 700;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  background: rgba(0,0,0,0.5);
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

.lightbox-label {
  position: fixed;
  top: 24px;
  left: 28px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  padding: 6px 16px;
  border: 2px solid var(--white);
  z-index: 10000;
  letter-spacing: 1px;
  text-transform: uppercase;
}