:root {
  --white: #ffffff;
  --ink: #17191d;
  --soft: #f4f4f2;
  --pale: #f7f7f5;
  --muted: #767676;
  --line: #e7e7e3;
  --moon: #ffd43b;
  --moon-deep: #e4b600;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', "Pretendard", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

h1, h2, h3, .logo, .hero-ghost, .kicker, .price-strip strong {
  font-family: 'Outfit', sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version */
  -webkit-user-drag: none; /* Safari */
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 0 38px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.header-glass {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  height: 54px;
  padding: 0 28px;
  background: rgba(23, 25, 29, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.3s ease;
}

.logo {
  position: relative;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo-icon {
  width: 56px;
  height: 56px;
  color: var(--moon);
  flex-shrink: 0;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: opacity 0.2s;
}

.desktop-nav a:hover {
  opacity: 0.5;
}

.menu-button {
  display: none;
  gap: 5px;
  width: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 38px;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  visibility: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
  pointer-events: auto;
  z-index: 40;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.mobile-menu a {
  padding: 12px 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-menu a:last-child {
  border-bottom: none;
}



.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-cta-text strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.mobile-cta-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 120px 38px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
  transform: scale(1.05);
  animation: slowZoom 24s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes slowZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(23, 25, 29, 0.85) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 126px 38px 44px;
}

.intro-row.split {
  grid-template-columns: auto minmax(0, 1fr);
}

.intro-row.split div {
  text-align: right;
}

.kicker {
  margin: 0 0 14px;
  color: var(--moon-deep);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-row h1,
.intro-row h2,
.intro-row h3 {
  margin: 0;
  font-size: clamp(44px, 9vw, 140px);
  font-weight: 950;
  line-height: 0.82;
}

#portfolio, #packages, #branches {
  scroll-margin-top: 100px;
}

.more-link {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.more-link:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  gap: 12px;
}

.more-link i {
  font-size: 11px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.more-link:hover i {
  transform: translateX(3px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 38px 80px;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.portfolio-grid img:hover {
  transform: translateY(-8px);
}

.intro-row a:not(.more-link) {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.6vw, 50px);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.packages-wrapper {
  padding-bottom: 80px;
}

.pricing-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 38px 0;
  align-items: stretch;
}

.pricing-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card--popular {
  border-color: var(--moon);
}

.pricing-card--popular:hover {
  border-color: var(--moon);
  box-shadow: 0 12px 40px rgba(202, 160, 102, 0.15);
}

.pricing-info.new-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 28px;
  height: 100%;
}

.pkg-icon {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-card--popular .pkg-icon {
  color: var(--moon);
}

.pricing-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.badge-popular {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(202, 160, 102, 0.15);
  color: var(--moon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.pricing-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0 0;
}

.pkg-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 24px 0;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.pkg-feat-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-footer {
  margin-top: auto;
}

.w-full {
  width: 100%;
}

.packages-notice {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 32px;
  font-weight: 500;
}

/* LOCATIONS SECTION */
.loc-section {
  padding: 100px 38px 0;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
}

.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.loc-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1;
}

.loc-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--moon);
}

.loc-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.loc-stats {
  display: flex;
  gap: 32px;
}

.loc-stat {
  text-align: right;
}

.loc-stat strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.loc-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.loc-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.loc-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  transition: color 0.3s ease;
}

.loc-tab:hover, .footer-social:hover {
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: 60px; /* space for mobile CTA */
}

.loc-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.loc-content {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 32px;
}

.loc-content.active {
  display: grid;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.loc-details {
  display: flex;
  flex-direction: column;
}

.loc-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.loc-name-row h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.loc-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 40px;
}

.loc-info-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.loc-info-item dt {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.loc-info-item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.loc-info-item dd strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.loc-info-item dd span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.subway-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-right: 4px;
  font-style: normal;
  vertical-align: text-top;
}
.subway-icon.line-9 { background-color: #CAA066; }
.subway-icon.line-8 { background-color: #E6186C; }
.subway-icon.line-2 { background-color: #00A84D; }
.subway-icon.line-shin { background-color: #D4003B; font-size: 9px; width: auto; padding: 0 5px; border-radius: 9px; letter-spacing: -0.5px; }

.hours-row {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
  color: var(--white);
}

.hours-row span {
  color: rgba(255, 255, 255, 0.5);
  width: 40px;
  display: inline-block;
}

.gold-text {
  color: #CBA474 !important;
  font-size: 18px !important;
  font-weight: 600;
}

.loc-actions {
  display: flex;
  gap: 16px;
}

.btn-gold {
  background: #B48B5D;
  color: #000;
  border: 1px solid #B48B5D;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: #cba474;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.loc-map {
  background: #1A1A1A;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 40%);
}

.map-caption {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-caption strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.map-caption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.btn-map {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.loc-transport {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transport-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.transport-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.transport-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.loc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}

.loc-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.loc-card.active {
  border-color: #B48B5D;
}

.loc-card h4 {
  font-size: 20px;
  margin: 0 0 8px;
}

.loc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}

.loc-card .hours {
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 60px 38px 40px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 8px;
}

.footer-brand .site-logo-icon {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

.footer-detail {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-social:hover {
  opacity: 1;
  color: var(--moon);
}

.icon-instagram {
  width: 16px;
  height: 16px;
}

.footer p {
  margin: 0;
}

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

  .intro-row,
  .intro-row.split {
    grid-template-columns: 1fr;
  }

  .intro-row.split div {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 16px;
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    top: 72px;
    right: 16px;
    left: 16px;
  }

  .mobile-cta-bar {
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }

  .hero {
    padding: 96px 20px;
  }

  .hero-bg {
    animation: none;
    transform: scale(1);
    object-position: center center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-outline {
    width: 100%;
  }

  .intro-row {
    padding: 86px 20px 28px;
  }

  .intro-row h1,
  .intro-row h2 {
    font-size: 54px;
  }

  .intro-row a:not(.more-link) {
    font-size: 25px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px 40px;
  }

  .pricing-editorial-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
  }

  .loc-section {
    padding: 60px 20px 0;
  }

  .loc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .loc-tabs {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .loc-tabs::-webkit-scrollbar {
    display: none;
  }

  .loc-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loc-info-item {
    grid-template-columns: 80px 1fr;
  }

  .loc-map {
    min-height: 280px;
  }

  .map-caption {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-map {
    text-align: center;
  }

  .loc-transport {
    flex-direction: column;
    gap: 24px;
  }

  .loc-cards {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 20px 80px;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }
}

/* Portfolio Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

/* Scroll Animation (Fade In) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0, 1), transform 0.8s cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion Styles (Shared) */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-question span {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  background: var(--moon);
}

.faq-question:hover span {
  color: var(--moon);
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after {
  background: var(--moon);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0, 0, 1), padding 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
}

/* Light Theme FAQ (for use on white background pages like Packages) */
.faq-list.light .faq-item {
  border-color: rgba(0, 0, 0, 0.08);
}

.faq-list.light .faq-question span {
  color: var(--ink);
}

.faq-list.light .faq-icon::before,
.faq-list.light .faq-icon::after {
  background: rgba(0, 0, 0, 0.3);
}

.faq-list.light .faq-item.active .faq-icon::before {
  background: var(--moon-deep);
}

.faq-list.light .faq-question:hover span {
  color: var(--moon-deep);
}

.faq-list.light .faq-question:hover .faq-icon::before,
.faq-list.light .faq-question:hover .faq-icon::after {
  background: var(--moon-deep);
}

.faq-list.light .faq-answer p {
  color: var(--muted);
}


.faq-back {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-back a:hover {
  color: var(--moon);
}

@media (max-width: 640px) {
  .faq-page {
    padding: 120px 20px 80px;
  }
  .faq-question span {
    font-size: 15px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.mail-btn {
  background: var(--moon);
}

.phone-btn {
  background: var(--white);
}

@media (max-width: 640px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
