/* ============================================
   GANGINA — Page Styles
   ============================================ */

/* ===== HOME PAGE ===== */

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  padding: calc(var(--nav-height) + var(--space-md)) var(--space-md) calc(var(--space-2xl) + env(safe-area-inset-bottom, 12px));
  overflow: hidden;
  transition: background 0.5s ease;
}

/* Ambient Chrome Glow Behind Logo */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 75vw, 720px);
  height: clamp(340px, 75vw, 720px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(215, 210, 230, 0.55) 0%,
    rgba(225, 230, 240, 0.35) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
  transition: background 0.6s ease, opacity 0.6s ease;
  animation: glowFloat 9s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.hero.glow-aurora .hero__glow {
  background: radial-gradient(
    circle,
    rgba(235, 210, 250, 0.6) 0%,
    rgba(195, 225, 245, 0.4) 40%,
    rgba(255, 255, 255, 0) 70%
  );
}

.hero.glow-none .hero__glow {
  opacity: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--text-dark);
  padding: var(--space-sm) var(--space-md);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(var(--hero-content-offset-y, -20px));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center-stage Logo */
.hero__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--hero-logo-gap, var(--space-md));
  width: 100%;
  transform: translateY(var(--hero-logo-offset-y, -20px));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.3s ease;
}

.hero__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(clamp(190px, 36vh, 320px) * var(--hero-logo-scale, 1.80));
  transition: min-height 0.3s ease, transform 0.4s var(--ease-out);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
}

.hero__logo-frame:hover {
  transform: scale(1.02);
}

.hero__logo {
  max-width: calc(clamp(250px, 65vw, 460px) * var(--hero-logo-scale, 1.80));
  max-height: calc(clamp(170px, 34vh, 320px) * var(--hero-logo-scale, 1.80));
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.09));
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.4s ease;
}

/* Logo Motion Modes */
.hero.logo-motion-float .hero__logo {
  animation: logoFloat 6s ease-in-out infinite alternate;
}

.hero.logo-motion-pulse .hero__logo {
  animation: logoPulse 4s ease-in-out infinite alternate;
}

.hero.logo-motion-none .hero__logo {
  animation: none;
}

@keyframes logoFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.02); }
}

@keyframes logoPulse {
  0% { transform: scale(0.98); }
  100% { transform: scale(1.02); }
}

/* Logo Shadow & Glow Effects */
.hero.logo-shadow-subtle .hero__logo {
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.12));
}

.hero.logo-shadow-glow .hero__logo {
  filter: drop-shadow(0 0 45px rgba(220, 225, 245, 0.95)) drop-shadow(0 0 90px rgba(180, 200, 240, 0.6)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.16));
}

.hero.logo-shadow-lilac .hero__logo {
  filter: drop-shadow(0 0 45px rgba(215, 175, 255, 0.85)) drop-shadow(0 0 95px rgba(175, 150, 250, 0.5)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero.logo-shadow-cyber .hero__logo {
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 65px rgba(190, 220, 255, 0.85)) drop-shadow(0 0 110px rgba(170, 150, 255, 0.65)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero.logo-shadow-none .hero__logo {
  filter: none;
}

/* --- Subtitle Spacing & Offset --- */
.hero__subtitle {
  font-size: var(--text-xs);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--hero-sub-gap, var(--space-2xl));
  font-weight: 400;
  transform: translateY(var(--hero-sub-offset-y, 0px));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.3s ease;
}

/* Spacing Presets */
.hero.spacing-compact {
  --hero-logo-gap: 8px;
  --hero-sub-gap: 16px;
}

.hero.spacing-balanced {
  --hero-logo-gap: 18px;
  --hero-sub-gap: 28px;
}

.hero.spacing-spacious {
  --hero-logo-gap: 28px;
  --hero-sub-gap: 46px;
}

/* Button Shape Presets */
.hero.shape-pill {
  --hero-btn-radius: 9999px;
}

.hero.shape-rounded {
  --hero-btn-radius: 8px;
}

.hero.shape-sharp {
  --hero-btn-radius: 0px;
}

/* --- Hero Booking Button Base & Variants --- */
.hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 44px;
  border-radius: var(--hero-btn-radius, 0px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  transform: translateY(var(--hero-sub-offset-y, 0px));
  -webkit-tap-highlight-color: transparent;
}

/* 1. Obsidian Black (Classic Luxury Dark) */
.hero-btn--obsidian {
  background: var(--text-dark, #111113);
  color: #ffffff;
  border: 1px solid var(--text-dark, #111113);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn--obsidian:hover {
  background: #ffffff;
  color: var(--text-dark, #111113);
  border-color: var(--text-dark, #111113);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 2px));
}

/* 2. Chrome Metallic Sheen (Matches reflective logo) */
.hero-btn--chrome {
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #e2dfeb 40%, #a8a4b8 70%, #686478 100%);
  color: #121018;
  border: 1.5px solid rgba(17, 17, 19, 0.35);
  font-weight: 600;
  box-shadow: 
    0 10px 28px rgba(0, 0, 0, 0.15),
    0 0 18px rgba(220, 210, 245, 0.45),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-btn--chrome::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.hero-btn--chrome:hover::after {
  left: 150%;
}

.hero-btn--chrome:hover {
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 2px)) scale(1.03);
  box-shadow: 
    0 14px 36px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(215, 195, 255, 0.8),
    inset 0 2px 4px rgba(255, 255, 255, 1);
}

/* 3. Frosted Glass (Glassmorphic) */
.hero-btn--glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-dark, #111113);
  border: 1.5px solid rgba(17, 17, 19, 0.3);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.hero-btn--glass:hover {
  background: #ffffff;
  border-color: var(--text-dark, #111113);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 2px));
}

/* 4. Lilac Iridescent Chrome Halo */
.hero-btn--lilac {
  background: linear-gradient(135deg, #f8f4ff 0%, #e2d7f8 50%, #c8b7f2 100%);
  color: #201732;
  border: 1.5px solid rgba(120, 95, 185, 0.5);
  font-weight: 600;
  box-shadow: 
    0 8px 24px rgba(185, 160, 240, 0.35),
    0 0 16px rgba(215, 190, 255, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 1);
}

.hero-btn--lilac:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ede5ff 50%, #d6c6fa 100%);
  box-shadow: 
    0 12px 34px rgba(185, 160, 240, 0.55),
    0 0 28px rgba(215, 190, 255, 0.75);
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 2px));
}

/* 5. Editorial Outline */
.hero-btn--outline {
  background: #ffffff;
  color: var(--text-dark, #111113);
  border: 1.5px solid var(--text-dark, #111113);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hero-btn--outline:hover {
  background: var(--text-dark, #111113);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 2px));
}

/* 6. Minimalist Link with Arrow */
.hero-btn--minimal {
  background: transparent;
  color: var(--text-dark, #111113);
  border: none;
  border-bottom: 1.5px solid var(--text-dark, #111113);
  padding: 8px 16px;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.3em;
}

.hero-btn--minimal:hover {
  opacity: 0.65;
  transform: translateY(calc(var(--hero-sub-offset-y, 0px) - 1px));
}

/* Mobile responsive lift for Samsung Internet / Mobile Viewports */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
    padding-top: calc(var(--nav-height) + 4px);
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 16px));
  }
  
  .hero__content {
    /* Lift up by an extra 10px on mobile to give perfect visual clearance above bottom navigation bars */
    transform: translateY(calc(var(--hero-content-offset-y, -20px) - 8px));
  }
}

/* --- Floating Customizer Widget --- */
.floating-customizer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
}

.customizer-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(26, 26, 26, 0.9);
  color: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.customizer-trigger:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.customizer-sparkle {
  font-size: 0.85rem;
  color: #e5e0ff;
  display: inline-block;
  animation: sparkleSpin 4s ease-in-out infinite alternate;
}

@keyframes sparkleSpin {
  0% { transform: rotate(0deg) scale(0.9); }
  100% { transform: rotate(45deg) scale(1.2); }
}

.customizer-card {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  max-height: min(600px, calc(100vh - 110px));
  overflow-y: auto;
  scrollbar-width: thin;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: cardPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.customizer-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.customizer-stepper-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  user-select: none;
}

.customizer-stepper-btn:hover {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

.customizer-range {
  flex: 1;
  accent-color: var(--text-dark);
  height: 4px;
  cursor: pointer;
}

.customizer-size-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 42px;
  text-align: right;
}

.customizer-card[hidden] {
  display: none !important;
}

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

.customizer-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.customizer-card__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.customizer-card__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
}

.customizer-card__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.customizer-group-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.customizer-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.customizer-btn {
  flex: 1 1 auto;
  padding: 7px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: #ffffff;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.customizer-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.customizer-btn.active {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

/* --- Autumn Sale Featured Card --- */
.autumn-sale-card {
  position: relative;
  background: #fbf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  margin-bottom: var(--space-4xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.autumn-sale-card__watermark {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 65vw, 520px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.autumn-sale-card__watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.autumn-sale-card__inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.autumn-sale-card__badge {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace, var(--font-primary);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2xl);
}

.autumn-sale-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  font-family: 'Courier New', Courier, monospace, sans-serif;
  color: #1a1a1a;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
}

.autumn-sale-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.18);
  padding-bottom: 10px;
}

.autumn-sale-item {
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.autumn-sale-price {
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.autumn-sale-card__footer {
  margin-top: var(--space-2xl);
  text-align: center;
}

.autumn-sale-card__tag {
  font-family: 'Courier New', Courier, monospace, sans-serif;
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-transform: lowercase;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--space-5xl) var(--space-xl);
  background: #ffffff;
}

.cta-banner__title {
  font-size: var(--text-4xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.cta-banner__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}

/* --- Chrome Divider Line --- */
.chrome-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
  margin: 0;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
}

.about-hero__title {
  font-size: var(--text-5xl);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.about-hero__subtitle {
  font-size: var(--text-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__content h3 {
  font-size: var(--text-2xl);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.about-story__content p {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 2;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-2xl);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(180px, 20vw, 280px);
  gap: var(--space-xl);
  grid-auto-flow: dense;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
}

/* Asymmetrical layout rules */
.gallery-item:nth-child(5n+1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(5n+2) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(5n+3) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5n+4) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(5n+5) { grid-column: span 12; grid-row: span 2; }

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-grid:hover .gallery-item:not(:hover) img {
  filter: grayscale(1) brightness(0.4);
}

.gallery-item.is-active img {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.04);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  cursor: zoom-out;
}

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

.lightbox__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: clamp(260px, 60vw, 500px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 2003;
  transition: transform 0.6s var(--ease-out), opacity 0.5s ease;
  mix-blend-mode: multiply;
}

.lightbox.active .lightbox__watermark {
  transform: translate(-50%, -50%) scale(1);
}

.lightbox__watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lightbox__img {
  position: relative;
  z-index: 2001;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  color: var(--text-dark);
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2005;
}

@media (max-width: 768px) {
  .gallery-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: var(--space-md);
    padding: 0 var(--space-md) 60px;
  }
  .gallery-item {
    width: 100%;
    aspect-ratio: 4/5;
    margin-bottom: 0;
  }
  /* Reset desktop spans */
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; transform: none; }
  
  /* Mobile staggering */
  .gallery-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 16/10; }
  .gallery-item:nth-child(even):not(:nth-child(3n+1)) { transform: translateY(24px); }
  
  .gallery-grid {
    padding-bottom: 60px; /* Space for the translated items */
  }
}

/* ===== PRICES PAGE ===== */
.prices-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-2xl);
  text-align: center;
}

.price-category {
  margin-bottom: var(--space-3xl);
}

.price-category__title {
  font-size: var(--text-xl);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-xl);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.price-item__name {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
}

.price-item__desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.price-item__cost {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
}

/* ===== BOOK PAGE ===== */
.book-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-2xl);
  text-align: center;
}

.book-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--border-medium);
  background: transparent;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

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

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

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-2xl);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info__item {
  margin-bottom: var(--space-xl);
}

.contact-info__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: var(--text-lg);
  color: var(--text-dark);
}

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