/* ============================================================
   DEEP MOVEMENT — 서브스냅 페이지 스타일
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --text: #e5e5e7;
  --text-muted: #8e8e93;
  --accent: #e77500;
  --accent-hover: #ff8c1a;
  --warm: #d4a574;
  --page-pad: 60px;
  --divider: rgba(255, 255, 255, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Navigation ── */
.gnb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.gnb.scrolled {
  background: rgba(231, 117, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gnb.scrolled .gnb-link {
  color: rgba(255, 255, 255, 0.75);
}

.gnb.scrolled .gnb-link:hover,
.gnb.scrolled .gnb-link.active {
  color: #fff;
}

.gnb.scrolled .gnb-link-cta {
  color: #fff !important;
}

.gnb.scrolled .gnb-logo {
  color: #fff;
}

.gnb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gnb-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
}

.gnb-links { display: flex; gap: 32px; align-items: center; }

.gnb-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.gnb-link:hover, .gnb-link.active { color: #fff; }

.gnb-link-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.gnb-link-my {
  background: #e77500 !important; color: #fff !important;
  padding: 5px 12px !important; border-radius: 6px;
  font-size: 11px !important; font-weight: 700;
  letter-spacing: 0.1em; transition: background 0.2s;
}
.gnb-link-my:hover { background: #ff8c1a !important; color: #fff !important; }

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-link {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
}

.mobile-link.active { color: #fff; }
.mobile-link-cta { color: var(--accent) !important; }
.mobile-link-my {
  display: inline-block !important; background: #e77500; color: #fff !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 700; letter-spacing: 0.1em;
  text-align: center; margin-top: 8px; border-bottom: none;
}
.mobile-link-my:hover { background: #ff8c1a; color: #fff !important; }

/* ── Hero — 2 slides of 3 images, auto fade ── */
.subsnap-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: heroKenBurns 12s ease infinite alternate;
}

.hero-slide img:nth-child(2) {
  animation-delay: -4s;
}

.hero-slide img:nth-child(3) {
  animation-delay: -8s;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--warm);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  margin-top: 24px;
  letter-spacing: -0.01em;
}

/* ── Contract Banner (히어로 바로 아래, 오렌지 텍스트) ── */
.contract-banner {
  text-align: center;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contract-banner p {
  margin: 0;
}

/* ── Recommend Important Notes (가독성 강화) ── */
.recommend-important {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.important-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(231, 117, 0, 0.06);
  border: 1px solid rgba(231, 117, 0, 0.15);
  border-radius: 12px;
}

.important-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.important-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.important-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.important-item p strong {
  color: var(--text);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

/* ── Section common ── */
.section { padding: 120px 0; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.section-inner.narrow {
  max-width: 800px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Intro (줄간격 축소) ── */
.section-intro { padding: 80px 0 20px; }

.intro-text {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.intro-text p { margin-bottom: 10px; }

.intro-text em {
  font-style: normal;
  color: var(--warm);
}

.intro-highlight {
  color: var(--text);
  font-size: 16px;
  margin-top: 16px;
}

/* ── Contract Note (계약 안내) ── */
.section-contract-note {
  padding: 20px 0 0;
}

.contract-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: var(--bg-card);
}

/* ── Recommend ── */
.section-recommend { padding: 60px 0 120px; }

.recommend-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 40px;
  text-align: center;
}

.recommend-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.recommend-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.recommend-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.recommend-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.recommend-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.recommend-notes {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  text-align: center;
}

.recommend-notes p { margin-bottom: 16px; }

.recommend-closing {
  color: var(--text);
  font-size: 16px;
  margin-top: 32px !important;
}

/* ── Portfolio Galleries ── */
.section-portfolio-set {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.portfolio-venue {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}

.portfolio-venue::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--warm);
  margin: 12px auto 0;
  opacity: 0.5;
}

.venue-sub {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}

.portfolio-grid {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.portfolio-grid::-webkit-scrollbar { display: none; }

.portfolio-grid.grid-3col {
  /* horizontal card scroll — 3 images visible at a time */
}

.portfolio-grid img {
  min-width: calc(33.333% - 7px);
  max-width: calc(33.333% - 7px);
  flex-shrink: 0;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: filter 0.4s ease, transform 0.4s ease, opacity 0.6s ease;
}

/* Gallery stagger animation */
.portfolio-grid img.stagger-hidden {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
}

.portfolio-grid img.stagger-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-grid img:hover {
  filter: brightness(1.08);
  transform: scale(1.015);
}

/* 동적으로 추가된 이미지 페이드인 */
.portfolio-grid img.fade-in {
  animation: imgFadeIn 0.5s ease forwards;
}

@keyframes imgFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Gallery Expand Button ── */
.gallery-expand-wrap {
  text-align: center;
  margin-top: 28px;
}

.gallery-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.gallery-expand-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.gallery-expand-btn.expanded {
  display: none;
}

.expand-count {
  color: var(--accent);
  font-size: 12px;
}

/* ── Pricing ── */
.section-subsnap-pricing {
  padding: 120px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}

.pricing-title {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-author {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-camera {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--warm);
  margin-bottom: 36px;
}

.pricing-details {
  list-style: none;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 32px;
}

.pricing-details li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.pricing-details li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

.pricing-details li strong {
  color: var(--text);
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.pricing-options {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-options h4 {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.option-price {
  color: var(--text);
  font-weight: 500;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 40px;
  background: #FEE500;
  color: #191919;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.pricing-cta:hover {
  background: #fdd835;
  transform: translateY(-2px);
}

/* ── About Bottom (부부작가 — 페이지 하단, 박스 없음) ── */
.section-about-bottom {
  padding: 40px 0 48px;
}

.about-bottom-text {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.about-bottom-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Footer (본식영상 페이지와 통일) ── */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--divider);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-sns {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-sns a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-sns a:hover {
  color: var(--text);
}

/* ── Floating Kakao Button ── */
.kakao-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #191919;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
  opacity: 1;
  transform: translateY(0);
}

.kakao-floating-btn:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}

.kakao-floating-btn.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.kakao-floating-btn svg {
  flex-shrink: 0;
}

/* ── Scroll-to-top Button ── */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 89;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-family: inherit;
  letter-spacing: 0.5px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, color 0.2s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}

.scroll-top-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   Side Scroll Navigation (우측 점 네비게이션)
   ============================================================ */
.side-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.side-nav.visible {
  opacity: 1;
}

.side-nav-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  padding: 3px 0;
}

.side-nav-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.side-nav-dot:hover::after {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.3);
}

.side-nav-dot.active::after {
  background: var(--accent);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(231, 117, 0, 0.35);
}

.side-nav-label {
  position: absolute;
  right: 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.side-nav-dot:hover .side-nav-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root { --page-pad: 40px; }
}

@media (max-width: 768px) {
  :root { --page-pad: 20px; }

  .gnb-links { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu { display: flex; }

  .gnb-inner { padding: 14px 20px; }
  .section { padding: 80px 0; }

  .hero-title { font-size: 28px; }
  .hero-label { font-size: 10px; }
  .hero-desc { font-size: 12px; line-height: 1.7; margin-top: 16px; }

  .side-nav { display: none; }
  .subsnap-hero {
    height: 70vh;
    min-height: 360px;
    max-height: 600px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-slide img {
    display: none !important;
  }
  .hero-slide img:nth-child(2) {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .contract-banner { font-size: 13px; padding: 16px 20px; }

  .section-recommend { padding: 40px 0 80px; }

  .important-item { flex-direction: column; gap: 12px; padding: 20px; }

  .portfolio-grid img {
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .recommend-item { flex-direction: column; gap: 12px; padding: 20px; }

  .section-portfolio-set { padding: 60px 0; }
  .portfolio-venue { font-size: 17px; margin-bottom: 20px; }

  .pricing-card { padding: 40px 24px; }
  .pricing-price { font-size: 28px; }
  .option-row { flex-direction: column; align-items: flex-start; gap: 4px; }

  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-sns { align-items: flex-start; }

  .kakao-floating-btn { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .portfolio-grid img {
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .section-portfolio-set { padding: 48px 0; }

  .pricing-cta { padding: 14px 32px; font-size: 15px; }

}

/* ════════════════════════════════════════════════════════════
   IMAGE LIGHTBOX
   ════════════════════════════════════════════════════════════ */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: -apple-system, system-ui, sans-serif;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next { width: 36px; height: 36px; font-size: 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── FAQ Section ── */
.section-faq { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--divider, rgba(255,255,255,0.08)); }
.faq-item:first-child { border-top: 1px solid var(--divider, rgba(255,255,255,0.08)); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0; background: none; border: none;
  color: var(--text-primary, #fff); font-size: 15px; font-weight: 400;
  cursor: pointer; text-align: left; line-height: 1.6;
  font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent, #AF52DE); }
.faq-arrow { flex-shrink: 0; margin-left: 16px; transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 0 24px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary, rgba(255,255,255,0.6)); line-height: 1.9; margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: none; margin: 12px 0; }
.faq-answer ul li {
  font-size: 13px; color: var(--text-secondary, rgba(255,255,255,0.6));
  padding: 4px 0 4px 16px; position: relative; line-height: 1.6;
}
.faq-answer ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent, #AF52DE); opacity: 0.5;
}
