:root {
  --bg: #010e04;
  --text: #d8fde1;
  --muted: #09a598;
  --accent: #72f88d;
  --accent-deep: #1bcff3;
  --card-bg: #052a0e;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(1, 14, 4, 0.88);
  border-bottom: 1px solid rgba(216, 253, 225, 0.06);
  transition: padding var(--transition);
}

nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-overlay {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-deep);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--accent-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 860px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-name .italic-line {
  color: var(--accent-deep);
  font-style: italic;
  display: block;
  margin-top: 0.05em;
}

.hero-tagline {
  margin-top: 2rem;
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.hero-cta:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator .label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  writing-mode: vertical-rl;
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: #d1d5db;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
  background: var(--accent-deep);
  border-radius: 2px;
  animation: scrollDot 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollDot {
  0% { top: -12px; }
  40% { top: calc(100% - 0px); }
  60% { top: calc(100% - 0px); }
  100% { top: -12px; }
}

.hero-deco {
  flex-shrink: 0;
  width: 340px;
  margin-left: 4rem;
  align-self: center;
}

.hero-deco-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--card-bg);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: pointer;
}

.hero-deco-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  pointer-events: none;
}

.hero-deco-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(196, 181, 244, 0.25) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

.hero-deco-card::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(24px);
  z-index: -1;
  transform: translateZ(-40px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-deco:hover .hero-deco-card::after {
  opacity: 1;
}

.hero-deco-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
  transform: translateZ(40px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ===== GALLERY ===== */
.section {
  padding: 7rem 2rem;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  cursor: pointer;
  grid-column: span 3;
}

.gallery-item .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
}

.gallery-item .placeholder svg { opacity: 0.6; }
.gallery-item .placeholder span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.gallery-item:nth-child(6n+1) { grid-column: span 6; aspect-ratio: 16 / 9; }
.gallery-item:nth-child(6n+2) { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery-item:nth-child(6n+3) { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery-item:nth-child(6n+4) { grid-column: span 2; aspect-ratio: 1 / 1; }
.gallery-item:nth-child(6n+5) { grid-column: span 2; aspect-ratio: 1 / 1; }
.gallery-item:nth-child(6n+0) { grid-column: span 2; aspect-ratio: 1 / 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 26, 26, 0.78);
}

.gallery-overlay .title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-overlay .tag {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay .title,
.gallery-item:hover .gallery-overlay .tag {
  transform: translateY(0);
  opacity: 1;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: absolute;
  inset: 0;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-item:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: #fff;
}

.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.gallery-item:nth-child(6n+1) .gallery-overlay {
  z-index: 2;
  pointer-events: none;
}

/* ===== COMPOSITING ===== */
.composit-section {
  background: var(--bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background var(--transition);
}

.video-item:hover .video-overlay {
  background: rgba(26, 26, 26, 0.7);
}

.video-overlay .title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.video-overlay .tag {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  transition-delay: 0.05s;
}

.video-item:hover .video-overlay .title,
.video-item:hover .video-overlay .tag {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== ABOUT ===== */
.about-section {
  background: #001a06;
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-bio h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.about-bio p {
  color: rgba(216, 253, 225, 0.55);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.skills span {
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.about-photo {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  max-width: 400px;
  justify-self: center;
  width: 100%;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 7rem 2rem;
}


.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}

.social-links li:hover { color: var(--accent-deep); }

.social-links .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(216, 253, 225, 0.06);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
}

footer .love { color: var(--accent-deep); }

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

@media (max-width: 900px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content {
    flex: none;
  }
  .hero-deco {
    width: 280px;
    margin-left: 0;
    margin-top: 4.5rem;
    align-self: center;
  }
  .scroll-indicator {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }
  .contact-section {
    padding: 5rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery-item { grid-column: span 2; }
  .gallery-item:nth-child(6n+1) { grid-column: span 2; }
  .gallery-item:nth-child(6n+2) { grid-column: span 1; }
  .gallery-item:nth-child(6n+3) { grid-column: span 1; }
  .gallery-item:nth-child(6n+4) { grid-column: span 1; }
  .gallery-item:nth-child(6n+5) { grid-column: span 1; }
  .gallery-item:nth-child(6n+0) { grid-column: span 1; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo {
    width: 260px;
    margin-inline: auto;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    justify-content: space-between;
    flex: 1;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 14, 4, 0.92);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links a {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  .nav-links a::after {
    bottom: -6px;
    height: 2px;
  }

  .hero-tagline {
    font-size: 1rem;
    max-width: 100%;
  }

  .contact-left {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.85rem 1.25rem;
  }
  .nav-logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 5rem 1.25rem 2.5rem;
    min-height: 90vh;
  }
  .hero-content {
    flex: none;
  }
  .hero-deco {
    width: 220px;
    margin-top: 3.75rem;
    align-self: center;
  }
  .hero-tagline {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
  }
  .hero-cta {
    margin-top: 2rem;
    font-size: 0.8125rem;
  }
  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 4rem 1.25rem;
  }
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 2rem;
  }
  .contact-section {
    padding: 4rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item { grid-column: span 2; }
  .gallery-item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16 / 9; }
  .gallery-item:nth-child(6n+2) { grid-column: span 1; }
  .gallery-item:nth-child(6n+3) { grid-column: span 1; }
  .gallery-item:nth-child(6n+4) { grid-column: span 1; aspect-ratio: 16 / 9; }
  .gallery-item:nth-child(6n+5) { grid-column: span 1; aspect-ratio: 16 / 9; }
  .gallery-item:nth-child(6n+0) { grid-column: span 1; aspect-ratio: 16 / 9; }

  .gallery-overlay {
    padding: 0.75rem;
  }
  .gallery-overlay .title {
    font-size: 0.9375rem;
  }
  .gallery-overlay .tag {
    font-size: 0.625rem;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  .carousel-btn svg {
    width: 15px;
    height: 15px;
  }
  .carousel-dots {
    bottom: 0.5rem;
    gap: 5px;
  }
  .carousel-dots .dot {
    width: 5px;
    height: 5px;
  }

  .about-grid {
    gap: 2rem;
  }
  .about-bio h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .about-bio p {
    font-size: 0.875rem;
  }
  .skills {
    gap: 0.5rem;
  }
  .skills span {
    font-size: 0.6875rem;
    padding: 0.3rem 0.85rem;
  }

  .contact-left h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .social-links li {
    font-size: 0.875rem;
  }

  footer {
    padding: 1.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .hero-name {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }
  .nav-links a {
    font-size: 1.05rem;
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 90vh;
}
.modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1010;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  transition: background 0.2s, color 0.2s;
}
.modal-nav:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-nav.modal-prev { left: 1rem; }
.modal-nav.modal-next { right: 1rem; }
.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}
.modal-video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  display: none;
}
.modal-info {
  text-align: center;
  margin-top: 1rem;
  color: #fff;
}
.modal-info .modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.modal-info .modal-tag {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modal-carousel {
  display: none;
  width: 100%;
}
.modal-carousel-track {
  display: grid;
  width: 100%;
}
.modal-carousel-slide {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.modal-carousel-slide.active {
  opacity: 1;
}
.modal-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.modal-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0.75rem;
}
.modal-carousel-dots .m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.modal-carousel-dots .m-dot.active {
  background: #fff;
  transform: scale(1.2);
}
@media (max-width: 480px) {
  .modal-nav {
    width: 36px;
    height: 36px;
  }
  .modal-nav.modal-prev { left: 0.5rem; }
  .modal-nav.modal-next { right: 0.5rem; }
  .modal-close { top: 0.75rem; right: 1rem; font-size: 2rem; }
  .modal-info .modal-title { font-size: 1rem; }
}
