:root {
  --ruby: #C0392B;
  --marigold: #E8A838;
  --teal: #1A8A7D;
  --blush: #E8B4B8;
  --forest: #2D6A4F;
  --cream: #FDF6EC;
  --deep: #1A1A2E;
  --lavender: #9B72AA;
  --coral: #E07A5F;
  --gold-light: #F5DEB3;
  --text-dark: #2C2C2C;
  --text-light: #F8F4EF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   APERTURE PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.aperture {
  width: 120px;
  height: 120px;
  position: relative;
}

.aperture-blade {
  position: absolute;
  width: 50px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  animation: apertureOpen 1.8s ease-in-out forwards;
}

.aperture-blade::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--marigold);
  clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%);
  opacity: 0.9;
}

.aperture-blade:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.aperture-blade:nth-child(2) { transform: translate(-50%, -50%) rotate(51.4deg); }
.aperture-blade:nth-child(3) { transform: translate(-50%, -50%) rotate(102.8deg); }
.aperture-blade:nth-child(4) { transform: translate(-50%, -50%) rotate(154.3deg); }
.aperture-blade:nth-child(5) { transform: translate(-50%, -50%) rotate(205.7deg); }
.aperture-blade:nth-child(6) { transform: translate(-50%, -50%) rotate(257.1deg); }
.aperture-blade:nth-child(7) { transform: translate(-50%, -50%) rotate(308.6deg); }

@keyframes apertureOpen {
  0% { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateY(0); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) translateY(-60px); opacity: 0; }
}

.preloader-text {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  letter-spacing: 6px;
  animation: preloaderPulse 1s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════
   FLASH OVERLAY
   ═══════════════════════════════════════ */
.flash-overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.05s ease;
}

.flash-overlay.flash {
  animation: cameraFlash 0.5s ease-out;
}

@keyframes cameraFlash {
  0% { opacity: 0.95; }
  15% { opacity: 0.7; }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR — MINIMAL GOLD RING
   ═══════════════════════════════════════ */
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
  width: auto;
  height: auto;
  background: none;
  border: none;
}

.cursor-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #E8A838;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  background: transparent;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: #E8A838;
  border-radius: 50%;
  transition: all 0.15s ease;
}

.custom-cursor.on-interactive .cursor-ring {
  transform: scale(1.6);
  border-color: #ffffff;
  background: rgba(229, 57, 53, 0.12);
}

.custom-cursor.on-interactive .cursor-dot {
  background: #ffffff;
}

.custom-cursor.clicking .cursor-ring {
  transform: scale(0.7);
}

.cursor-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 999998;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #E8A838;
  transform: translate(-50%, -50%);
  animation: cursorRipple 0.6s ease-out forwards;
}

@keyframes cursorRipple {
  0%   { width: 22px; height: 22px; opacity: 0.8; }
  100% { width: 64px; height: 64px; opacity: 0; }
}

/* Show only on desktop */
@media (hover: hover) {
  .custom-cursor { display: block; }
  body { cursor: none; }
  a, button, input, textarea, select { cursor: none; }
}

/* ═══════════════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════════════ */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 3px;
  justify-self: end;
}

.lang-btn {
  border: none;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border-radius: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255,255,255,0.5);
  background: transparent;
  letter-spacing: 1px;
}

.lang-btn.active {
  background: var(--marigold);
  color: var(--deep);
  box-shadow: 0 2px 12px rgba(232,168,56,0.4);
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

nav.scrolled {
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(16px);
  padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo span { color: var(--marigold); }

.logo-lens { display: none !important;
  width: 30px;
  height: 30px;
  border: 2px solid var(--marigold);
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: lensRotate 8s linear infinite;
}

.logo-lens::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(232,168,56,0.5);
  border-radius: 50%;
}

.logo-lens::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--marigold);
  border-radius: 50%;
}

@keyframes lensRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-right: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--marigold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ═══════════════════════════════════════
   HERO — VIEWFINDER
   ═══════════════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg .color-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-bg .orb1 { width: 500px; height: 500px; background: var(--ruby); top: -100px; left: -100px; }
.hero-bg .orb2 { width: 400px; height: 400px; background: var(--teal); bottom: -80px; right: -60px; animation-delay: -3s; }
.hero-bg .orb3 { width: 350px; height: 350px; background: var(--marigold); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -5s; }
.hero-bg .orb4 { width: 300px; height: 300px; background: var(--lavender); top: 20%; right: 10%; animation-delay: -2s; }

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

/* Viewfinder overlay */
.viewfinder {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.vf-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(232,168,56,0.5);
  border-style: solid;
  opacity: 0;
  animation: vfAppear 0.5s 0.1s forwards;
}

.vf-corner.tl { top: 80px; left: 40px; border-width: 2px 0 0 2px; }
.vf-corner.tr { top: 80px; right: 40px; border-width: 2px 2px 0 0; }
.vf-corner.bl { bottom: 40px; left: 40px; border-width: 0 0 2px 2px; }
.vf-corner.br { bottom: 40px; right: 40px; border-width: 0 2px 2px 0; }

@keyframes vfAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vf-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  opacity: 0;
  animation: vfAppear 0.5s 0.2s forwards;
}

.vf-crosshair::before, .vf-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(232,168,56,0.4);
}

.vf-crosshair::before { width: 1px; height: 100%; left: 50%; top: 0; }
.vf-crosshair::after { height: 1px; width: 100%; top: 50%; left: 0; }

.vf-focus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: vfAppear 0.6s 2s forwards, focusPulse 3s 2.5s ease-in-out infinite;
}

@keyframes focusPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.8; }
}

.vf-info {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,168,56,0.5);
  opacity: 0;
  animation: vfAppear 0.5s 0.4s forwards;
}

.vf-info.top-info { top: 88px; left: 50%; transform: translateX(-50%); }
.vf-info.bottom-info { bottom: 48px; right: 48px; }
.vf-info.rec { bottom: 48px; left: 48px; display: flex; align-items: center; gap: 6px; }
.vf-info.rec::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ruby);
  border-radius: 50%;
  animation: recBlink 1.5s infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Floating camera elements */
.float-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.float-el {
  position: absolute;
  opacity: 0.06;
  animation: floatDrift 30s linear infinite;
}

.float-el svg {
  width: 100%;
  height: 100%;
}

.float-el:nth-child(1) { width: 80px; top: 15%; left: 5%; animation-delay: 0s; animation-duration: 25s; }
.float-el:nth-child(2) { width: 60px; top: 70%; left: 15%; animation-delay: -5s; animation-duration: 22s; }
.float-el:nth-child(3) { width: 100px; top: 25%; right: 8%; animation-delay: -10s; animation-duration: 28s; }
.float-el:nth-child(4) { width: 50px; top: 80%; right: 20%; animation-delay: -15s; animation-duration: 18s; }
.float-el:nth-child(5) { width: 70px; top: 45%; left: 80%; animation-delay: -8s; animation-duration: 24s; }

@keyframes floatDrift {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-40px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Lens flare particles */
.lens-flares {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lens-flare {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.6), transparent 70%);
  animation: flarePulse 4s ease-in-out infinite;
}

.lens-flare:nth-child(1) { width: 8px; height: 8px; top: 30%; left: 25%; animation-delay: 0s; }
.lens-flare:nth-child(2) { width: 12px; height: 12px; top: 20%; right: 30%; animation-delay: -1.5s; }
.lens-flare:nth-child(3) { width: 6px; height: 6px; top: 65%; left: 70%; animation-delay: -3s; }
.lens-flare:nth-child(4) { width: 15px; height: 15px; top: 45%; left: 15%; animation-delay: -0.8s; background: radial-gradient(circle, rgba(192,57,43,0.4), transparent 70%); }
.lens-flare:nth-child(5) { width: 10px; height: 10px; top: 75%; right: 15%; animation-delay: -2.2s; background: radial-gradient(circle, rgba(26,138,125,0.5), transparent 70%); }
.lens-flare:nth-child(6) { width: 20px; height: 20px; top: 50%; left: 50%; animation-delay: -1s; }

@keyframes flarePulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.8); }
}

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

.hero-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 24px;
  opacity: 0;
  animation: shutterReveal 0.6s 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 96px);
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: shutterReveal 0.6s 0.35s forwards;
}

.hero-title em { font-style: italic; color: var(--marigold); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 28px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0;
  animation: shutterReveal 0.6s 0.5s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  background: var(--marigold);
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  animation: shutterReveal 0.6s 0.65s forwards;
  box-shadow: 0 4px 24px rgba(232,168,56,0.3);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(232,168,56,0.5);
}

.hero-cta .cta-shutter {
  width: 22px;
  height: 22px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta .cta-shutter::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--deep);
  border-radius: 50%;
}

@keyframes shutterReveal {
  0% { opacity: 0; clip-path: inset(0 50% 0 50%); }
  60% { clip-path: inset(0 0 0 0); }
  100% { opacity: 1; clip-path: none; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: shutterReveal 0.6s 0.8s forwards;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--marigold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════
   SHUTTER TRANSITION between sections
   ═══════════════════════════════════════ */
.shutter-divider {
  position: relative;
  height: 6px;
  overflow: hidden;
  background: var(--deep);
}

.shutter-divider::before,
.shutter-divider::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  transition: width 0.5s;
}

.shutter-divider::before { left: 0; background: var(--ruby); }
.shutter-divider::after { right: 0; background: var(--marigold); }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
section { padding: 100px 40px; }

.section-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label .shutter-icon {
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-label .shutter-icon::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #666;
  max-width: 600px;
  font-style: italic;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   ABOUT — with aperture illustration
   ═══════════════════════════════════════ */
.about { background: var(--cream); position: relative; }

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-visual .color-block {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 20px 20px;
  background: linear-gradient(135deg, var(--ruby), var(--coral));
  position: relative;
  overflow: hidden;
}

.about-visual .color-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="18" fill="rgba(255,255,255,0.15)"/><circle cx="30" cy="70" r="12" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="65" r="15" fill="rgba(255,255,255,0.08)"/></svg>');
}

/* Aperture decoration on the about image */
.aperture-deco {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
}

.aperture-deco svg {
  width: 100%;
  height: 100%;
  animation: lensRotate 15s linear infinite;
}

.about-visual .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  box-shadow: 0 8px 32px rgba(232,168,56,0.4);
  animation: gentleBounce 3s ease-in-out infinite;
}

.floating-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.floating-badge .label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-text .section-title span { color: var(--ruby); }

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 24px;
}

/* ═══════════════════════════════════════
   SERVICES — with film strip accents
   ═══════════════════════════════════════ */
.services {
  background: var(--deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

/* Film strip running along top */
.film-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 40px;
  display: flex;
  animation: filmScroll 20s linear infinite;
  opacity: 0.06;
}

.film-strip .frame {
  width: 60px;
  height: 40px;
  border: 2px solid white;
  border-radius: 3px;
  margin: 0 4px;
  flex-shrink: 0;
  position: relative;
}

.film-strip .frame::before,
.film-strip .frame::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 1px;
}

.film-strip .frame::before { top: 2px; left: 2px; }
.film-strip .frame::after { bottom: 2px; right: 2px; }

@keyframes filmScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.services .section-label { color: var(--marigold); }
.services .section-title { color: white; }
.services .section-desc { color: rgba(255,255,255,0.5); }

.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover { transform: translateY(-8px) scale(1.02); }

.service-card .card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.service-card:hover .card-bg { transform: scale(1.08); }

.service-card:nth-child(1) .card-bg { background: linear-gradient(135deg, var(--ruby) 0%, #8B1A2B 100%); }
.service-card:nth-child(2) .card-bg { background: linear-gradient(135deg, var(--teal) 0%, #0D5C54 100%); }
.service-card:nth-child(3) .card-bg { background: linear-gradient(135deg, var(--marigold) 0%, #C4851C 100%); }
.service-card:nth-child(4) .card-bg { background: linear-gradient(135deg, var(--lavender) 0%, #6B4D7A 100%); }

.service-card .card-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  backdrop-filter: blur(8px);
}

/* Focus ring animation on card hover */
.service-card .focus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .focus-ring {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.service-card .focus-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}

.service-card .card-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p { font-size: 14px; opacity: 0.7; line-height: 1.5; }

/* ═══════════════════════════════════════
   GALLERY — filterable masonry + lightbox
   ═══════════════════════════════════════ */
.gallery { background: var(--cream); }

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-header .section-title span { color: var(--coral); }
.gallery-header .section-label { justify-content: center; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.gallery-tab {
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #ddd;
}

.gallery-tab.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.gallery-masonry {
  max-width: 1200px;
  margin: 0 auto;
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  background: white;
  padding: 8px 8px 36px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.gallery-item:nth-child(even):hover {
  transform: scale(1.02) rotate(1deg);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

.gallery-item .overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 36px;
  background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 2px;
}

.gallery-item:hover .overlay { opacity: 1; }

.overlay span {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.gallery-item::after {
  content: 'Gleam Shots Photography';
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: #bbb;
  font-style: italic;
  letter-spacing: 1px;
}

/* Placeholder gradient swatches — will be replaced by real images */
.gallery-item .placeholder-swatch {
  width: 100%;
  display: block;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10003;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  animation: lightboxZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoom {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--ruby);
  border-color: var(--ruby);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--marigold);
  color: var(--marigold);
}

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

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .lightbox img { max-width: 95%; max-height: 75vh; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  background: linear-gradient(135deg, var(--forest), var(--teal));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -200px;
  left: -200px;
}

.testimonials .section-label {
  color: var(--marigold);
  justify-content: center;
}

.testimonials-wrapper {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card { display: none; }
.testimonial-card.active { display: block; animation: fadeIn 0.6s ease; }

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

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--marigold);
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--marigold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--marigold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════
   CONTACT — with lens decoration
   ═══════════════════════════════════════ */
.contact { background: var(--cream); position: relative; overflow: hidden; }

.contact-lens-deco {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 40px solid rgba(26,138,125,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.contact-lens-deco::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 20px solid rgba(232,168,56,0.04);
  border-radius: 50%;
}

.contact-lens-deco::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 10px solid rgba(192,57,43,0.04);
  border-radius: 50%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-info .section-title span { color: var(--teal); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.contact-detail .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail:nth-child(2) .icon-circle { background: rgba(192,57,43,0.1); color: var(--ruby); }
.contact-detail:nth-child(3) .icon-circle { background: rgba(26,138,125,0.1); color: var(--teal); }
.contact-detail:nth-child(4) .icon-circle { background: rgba(155,114,170,0.1); color: var(--lavender); }
.contact-detail:nth-child(5) .icon-circle { background: rgba(232,168,56,0.1); color: var(--marigold); }

.contact-detail .detail-text h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-detail .detail-text p { color: #777; font-size: 15px; }
.contact-detail .detail-text a { color: var(--teal); text-decoration: none; font-size: 15px; }

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ruby), var(--marigold), var(--teal), var(--lavender));
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #888;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #FAFAFA;
  color: var(--text-dark);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26,138,125,0.1);
  background: white;
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--ruby), var(--coral));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.35);
}

.submit-btn .btn-success { display: none; }
.submit-btn.success { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.submit-btn.success .btn-text { display: none; }
.submit-btn.success .btn-success { display: inline; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Film strip along footer bottom */
.footer-film {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 24px;
  display: flex;
  animation: filmScroll 30s linear infinite reverse;
  opacity: 0.04;
}

.footer-film .fframe {
  width: 40px;
  height: 24px;
  border: 1.5px solid white;
  border-radius: 2px;
  margin: 0 3px;
  flex-shrink: 0;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}

.footer-logo span { color: var(--marigold); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--marigold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--deep);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 13px;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(20px);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  animation: slideUpBanner 0.6s 2.5s forwards;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
  display: none;
}

@keyframes slideUpBanner {
  to { transform: translateY(0); }
}

.cookie-text {
  flex: 1;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--marigold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
}

.cookie-btn.accept {
  background: var(--marigold);
  color: var(--deep);
}

.cookie-btn.accept:hover {
  box-shadow: 0 4px 16px rgba(232,168,56,0.4);
  transform: translateY(-1px);
}

.cookie-btn.settings {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.cookie-btn.settings:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  padding: 12px 16px;
}

.cookie-btn.decline:hover { color: white; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════
   LEGAL MODALS (Impressum, Datenschutz)
   ═══════════════════════════════════════ */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.legal-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.legal-modal {
  background: white;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.legal-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ruby), var(--marigold), var(--teal), var(--lavender));
  border-radius: 20px 20px 0 0;
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #555;
}

.legal-modal-close:hover {
  background: var(--ruby);
  color: white;
}

.legal-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--deep);
}

.legal-modal h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--deep);
  letter-spacing: 0.5px;
}

.legal-modal p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.legal-modal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-modal li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .legal-modal { padding: 32px 20px; }
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

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

/* Flash on reveal - disabled for smoother experience */

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  section { padding: 70px 20px; }

  /* Nav - simple 2 column: logo left, hamburger right */
  nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
  }

  /* Hide nav links and lang toggle in the bar */
  .nav-links { display: none; }
  .lang-toggle { display: none; }

  /* ── Fullscreen mobile menu overlay ── */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0);
    z-index: 9000;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .nav-links.open li {
    list-style: none;
    width: 100%;
    text-align: center;
  }

  .nav-links.open a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 0;
    text-decoration: none;
    transition: color 0.25s;
  }

  .nav-links.open a:hover,
  .nav-links.open a[style*="marigold"] {
    color: var(--marigold) !important;
  }

  /* Lang toggle pinned to bottom of overlay */
  nav.menu-open .lang-toggle {
    display: flex;
    position: fixed;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9002;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 6px 8px;
    gap: 4px;
  }

  /* ── Hamburger / × button ──
     Must be position:fixed so it floats ABOVE the overlay,
     NOT trapped inside the nav bar which sits behind the menu. */
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 9001;       /* above overlay (9000), below lang toggle (9002) */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  nav.scrolled { padding: 12px 20px; }

  /* Nav bar stays well below the overlay */
  nav {
    z-index: 100 !important;
  }

  nav.menu-open {
    z-index: 100 !important;
  }

  .logo { font-size: 18px; }
  .logo-lens { display: none !important; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(32px, 7vw, 56px); }
  .hero-subtitle { font-size: 18px; margin-bottom: 30px; }
  .hero-cta { padding: 14px 36px; font-size: 12px; letter-spacing: 1.5px; }
  .hero-tag { font-size: 11px; letter-spacing: 4px; }
  .vf-corner { width: 30px; height: 30px; }
  .vf-corner.tl, .vf-corner.bl { left: 16px; }
  .vf-corner.tr, .vf-corner.br { right: 16px; }
  .vf-corner.tl, .vf-corner.tr { top: 70px; }
  .vf-corner.bl, .vf-corner.br { bottom: 16px; }
  .vf-info { font-size: 8px; }
  .vf-info.top-info { top: 76px; }
  .vf-info.bottom-info { bottom: 22px; right: 22px; }
  .vf-info.rec { bottom: 22px; left: 22px; }
  .vf-focus-ring { width: 150px; height: 150px; }
  .scroll-indicator { bottom: 24px; }
  .float-elements { opacity: 0.03; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 280px; margin: 0 auto; }
  .about-visual .floating-badge { width: 100px; height: 100px; bottom: -14px; right: -14px; }
  .floating-badge .number { font-size: 28px; }
  .floating-badge .label { font-size: 9px; }
  .aperture-deco { width: 70px; height: 70px; top: -20px; left: -20px; }
  .about-text p { font-size: 15px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card .card-content { padding: 16px; }
  .service-card .card-number { font-size: 40px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 12px; }
  .service-card .card-icon { width: 44px; height: 44px; font-size: 20px; top: 16px; left: 16px; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 10px; }
  .gallery-item { padding: 5px 5px 28px 5px; margin-bottom: 10px; }
  .gallery-item::after { font-size: 9px; bottom: 8px; right: 10px; }
  .gallery-tabs { gap: 8px; }
  .gallery-tab { padding: 8px 18px; font-size: 11px; }

  /* Testimonials */
  .testimonial-text { font-size: 19px; }
  .testimonial-quote { font-size: 52px; }

  /* Contact */
  .contact-container { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 20px; }
  .contact-lens-deco { width: 250px; height: 250px; top: -60px; right: -60px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 6vw, 40px); }
  .section-desc { font-size: 17px; }
  .section-label { font-size: 11px; letter-spacing: 3px; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-links { gap: 16px; }
  .footer-links a { font-size: 11px; letter-spacing: 1.5px; }
  .footer-logo { font-size: 22px; }

  /* Cursor - disabled on mobile/tablet */
  .custom-cursor { display: none !important; }
  body { cursor: auto; }
  a, button, input, textarea, select { cursor: auto; }

  /* Cookie banner mobile */
  .cookie-banner { padding: 20px 16px; }
  .cookie-text { font-size: 13px; }

  /* Legal modals */
  .legal-modal-overlay { padding: 20px 12px; }
  .legal-modal { padding: 32px 20px; border-radius: 16px; max-height: 90vh; }
  .legal-modal h2 { font-size: 22px; }
}

@media (max-width: 550px) {
  section { padding: 60px 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 2/1; }
  .service-card .card-content { padding: 20px; }
  .service-card .card-number { font-size: 48px; }
  .service-card h3 { font-size: 18px; }

  .gallery-masonry { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }

  .hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hero-cta { padding: 12px 30px; font-size: 11px; }

  .about-visual { max-width: 240px; }

  .contact-detail { gap: 12px; }
  .contact-detail .icon-circle { width: 42px; height: 42px; font-size: 16px; }
  .contact-detail .detail-text h4 { font-size: 12px; }
  .contact-detail .detail-text p,
  .contact-detail .detail-text a { font-size: 13px; }

  .testimonial-text { font-size: 17px; }

  .footer-links { gap: 12px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  .hero-tag { font-size: 10px; letter-spacing: 3px; }
  nav { padding: 12px 14px !important; }
  .logo { font-size: 16px; }
  .section-title { font-size: 24px; }
  .gallery-tab { padding: 7px 14px; font-size: 10px; }
}


/* ═══════════════════════════════════════
   PAGE TRANSITION — Smooth Fade
   ═══════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  background: var(--deep);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-transition.opening {
  animation: pageFadeOut 0.3s ease forwards;
}

.page-transition.closing {
  animation: pageFadeIn 0.3s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pageFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}


/* ═══════════════════════════════════════
   PAGE HEADER (for inner pages)
   ═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, rgba(232,180,184,0.3), rgba(253,246,236,0.95), rgba(26,138,125,0.15));
  padding: 160px 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--ruby);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--deep);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 em {
  color: var(--marigold);
  font-style: italic;
}

.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(26,26,46,0.6);
  font-style: italic;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .vf-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-hero .vf-c {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(26,26,46,0.2);
  border-style: solid;
}

.page-hero .vf-c.tl { top: 80px; left: 40px; border-width: 2px 0 0 2px; }
.page-hero .vf-c.tr { top: 80px; right: 40px; border-width: 2px 2px 0 0; }
.page-hero .vf-c.bl { bottom: 30px; left: 40px; border-width: 0 0 2px 2px; }
.page-hero .vf-c.br { bottom: 30px; right: 40px; border-width: 0 2px 2px 0; }

/* ═══════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ═══════════════════════════════════════ */
.about-full {
  padding: 80px 40px;
  background: var(--cream);
}

.about-full-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-story h2 span { color: var(--ruby); }

.about-story p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.value-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--marigold);
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-image-col {
  position: relative;
}

.about-image-col .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ruby), var(--coral));
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image-col .badge-circle {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  box-shadow: 0 8px 28px rgba(232,168,56,0.4);
}

.badge-circle .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.badge-circle .lbl {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   PRICES PAGE SPECIFIC
   ═══════════════════════════════════════ */
.prices-section {
  padding: 80px 40px;
  background: var(--cream);
}

.prices-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.price-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.price-card-header {
  padding: 32px 32px 24px;
  position: relative;
}

.price-card:nth-child(1) .price-card-header { background: linear-gradient(135deg, var(--ruby), var(--coral)); }
.price-card:nth-child(2) .price-card-header { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.price-card:nth-child(3) .price-card-header { background: linear-gradient(135deg, var(--marigold), #C4851C); }
.price-card:nth-child(4) .price-card-header { background: linear-gradient(135deg, var(--lavender), #6B4D7A); }

.price-card-header .card-emoji {
  font-size: 36px;
  margin-bottom: 12px;
}

.price-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}

.price-card-header .price-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,1);
  letter-spacing: 1px;
}

.price-card-body {
  padding: 28px 32px 32px;
}

.price-card-body .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #555;
}

.price-card-body .feature:last-child { border-bottom: none; }

.price-card-body .feature .check {
  width: 20px;
  height: 20px;
  background: rgba(26,138,125,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 11px;
  flex-shrink: 0;
}

.price-card-body .book-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.price-card:nth-child(1) .book-btn { background: rgba(192,57,43,0.1); color: var(--ruby); }
.price-card:nth-child(2) .book-btn { background: rgba(26,138,125,0.1); color: var(--teal); }
.price-card:nth-child(3) .book-btn { background: rgba(232,168,56,0.1); color: var(--marigold); }
.price-card:nth-child(4) .book-btn { background: rgba(155,114,170,0.1); color: var(--lavender); }

.price-card .book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.prices-note {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #888;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CONTACT PAGE FULL
   ═══════════════════════════════════════ */
.contact-full {
  padding: 80px 40px;
  background: var(--cream);
}

.contact-full .contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   INNER PAGE RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .page-hero { padding: 130px 30px 60px; }
  .about-full { padding: 60px 20px; }
  .about-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { max-width: 300px; margin: 0 auto; order: -1; }
  .prices-section { padding: 60px 20px; }
  .prices-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-full { padding: 60px 20px; }
}

@media (max-width: 550px) {
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 17px; }
  .value-card { padding: 20px; }
}


/* ═══════════════════════════════════════
   NAV LAYOUT FIX — Logo left, links center, lang right (desktop only)
   ═══════════════════════════════════════ */
@media (min-width: 601px) {
  nav {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
  }

  nav .logo { justify-self: start; }
  nav .nav-links { justify-self: center; margin-right: 0 !important; }
  nav .lang-toggle { justify-self: end; }
  nav .menu-toggle { justify-self: end; }
}

/* ═══════════════════════════════════════
   BOOKING STEPS SECTION
   ═══════════════════════════════════════ */
.booking-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--deep);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.step-connector {
  display: none;
}

@media (min-width: 901px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 52px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(232,168,56,0.3);
  }
}

@media (max-width: 900px) {
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════
   SERVICE CARDS V2 — No emojis, clean text
   ═══════════════════════════════════════ */
.services-grid-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.service-card-v2 {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 28px 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.service-card-v2 .card-bg-v2 {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.service-card-v2:hover .card-bg-v2 { transform: scale(1.06); }

.service-card-v2 h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}

.service-card-v2 p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.service-card-v2 .focus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover .focus-ring {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

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

@media (max-width: 550px) {
  .services-grid-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card-v2 { min-height: 100px; padding: 20px 16px; }
  .service-card-v2 h3 { font-size: 15px; }
}

/* ═══════════════════════════════════════
   PRICES V2 — Multi-package per category
   ═══════════════════════════════════════ */
.price-category {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.price-category-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--deep);
}

.price-category-title span {
  color: var(--marigold);
}

.price-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.price-rules {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 36px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.price-rules h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--deep);
}

.price-rules ul {
  list-style: none;
  padding: 0;
}

.price-rules li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-rules li::before {
  content: "•";
  color: var(--marigold);
  font-weight: 700;
  flex-shrink: 0;
}

.price-rules li:last-child { border-bottom: none; }

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 48px auto 0;
}

.faq-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover { background: rgba(232,168,56,0.05); }

.faq-question .faq-icon {
  font-size: 20px;
  color: var(--marigold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   FIX: Content behind fixed nav
   ═══════════════════════════════════════ */
.page-hero {
  padding-top: 140px !important;
}

/* ═══════════════════════════════════════
   PRICE ACCORDION
   ═══════════════════════════════════════ */
.price-accordion {
  max-width: 1100px;
  margin: 0 auto 24px;
}

.price-accordion-header {
  width: 100%;
  padding: 24px 32px;
  background: white;
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.price-accordion-header:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.price-accordion-header .acc-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-accordion-header .acc-color {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
}

.price-accordion-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--deep);
}

.price-accordion-header .acc-arrow {
  font-size: 24px;
  color: var(--marigold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.price-accordion.open .acc-arrow {
  transform: rotate(180deg);
}

.price-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-accordion.open .price-accordion-body {
  max-height: 2000px;
}

.price-accordion-body-inner {
  padding: 24px 0 0;
}

/* ═══════════════════════════════════════
   FOOTER REDESIGN
   ═══════════════════════════════════════ */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--marigold);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.9fr) minmax(280px, 1.4fr) minmax(220px, 1fr);
  gap: 40px 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
}

.footer-brand .footer-logo span { color: var(--marigold); }

.footer-brand p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.footer-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-social-row a:hover {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--deep);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 16px;
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--marigold); }


.footer-link-grid {
  display: grid;
  gap: 6px 20px;
}

.footer-link-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-grid-single {
  grid-template-columns: 1fr;
}

.footer-services {
  min-width: 0;
}

.footer-services .footer-col a,
.footer-services a {
  line-height: 1.5;
}

.footer-col p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 80px;
}

.footer-bottom-row {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-row p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--marigold); }

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1.1fr 1fr;
    padding: 60px 24px 40px;
    gap: 32px 36px;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    grid-column: span 1;
  }

  .footer-link-grid-two {
    grid-template-columns: 1fr;
  }

  .footer-divider {
    margin: 0 24px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
}

/* Hide scroll indicator */
.scroll-indicator { display: none !important; }

/* Fix: Button hover cursor */
.hero-cta,
.book-btn,
.submit-btn,
.cookie-btn,
.gallery-tab,
.faq-question,
.price-accordion-header {
  cursor: pointer !important;
}

.hero-cta:hover {
  cursor: pointer !important;
}


/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
   ═══════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--deep);
  border: none;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(232,168,56,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 990;
  margin-bottom: 28px;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(232,168,56,0.5);
}

@media (max-width: 550px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}


/* Contact page grid layout (moved from inline to CSS) */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* Reviews page */
.reviews-hero { padding: 84px 24px 26px; background: linear-gradient(180deg, rgba(250,246,239,0.8) 0%, rgba(255,255,255,0.98) 100%); text-align: center; }
.reviews-intro { max-width: 820px; margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.reviews-page-grid { padding: 24px 24px 90px; max-width: 1280px; margin: 0 auto; }
.review-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review-panel { background: #fff; border: 1px solid rgba(59,46,46,0.08); border-radius: 22px; padding: 30px 26px; box-shadow: 0 18px 45px rgba(59,46,46,0.08); min-height: 100%; }
.review-stars { font-size: 18px; letter-spacing: 3px; color: var(--marigold); margin-bottom: 18px; }
.review-body { font-size: 17px; line-height: 1.9; color: var(--deep); margin-bottom: 18px; }
.review-name { font-weight: 700; margin-bottom: 4px; color: var(--deep); }
.review-type { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.reviews-page-cta { margin-top: 28px; display: flex; justify-content: center; }
.reviews-note-card { max-width: 760px; background: var(--cream); border: 1px solid rgba(201,168,107,0.24); border-radius: 24px; padding: 32px 28px; text-align: center; box-shadow: 0 14px 35px rgba(59,46,46,0.06); }
.reviews-note-card h2 { font-size: 30px; margin-bottom: 12px; }
.reviews-note-card p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.secondary-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 220px; padding: 16px 48px; border-radius: 999px; background: var(--marigold); color: var(--deep); font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; box-shadow: 0 10px 24px rgba(201,168,107,0.24); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.secondary-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(201,168,107,0.32); }
.all-reviews-cta { text-align: center; margin-top: 28px; }

/* Legal pages */
.legal-page-shell { padding: 84px 24px 96px; background: linear-gradient(180deg, rgba(250,246,239,0.8) 0%, rgba(255,255,255,0.98) 100%); }
.legal-page-card { max-width: 920px; margin: 0 auto; background: #fff; border-radius: 28px; border: 1px solid rgba(59,46,46,0.08); padding: 40px 34px; box-shadow: 0 22px 50px rgba(59,46,46,0.08); }
.legal-copy h2 { margin-top: 24px; margin-bottom: 10px; font-size: 24px; color: var(--deep); }
.legal-copy p { color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.legal-note { margin-top: 18px; padding: 16px 18px; background: rgba(201,168,107,0.12); border-radius: 16px; color: var(--deep); }

@media (max-width: 980px) { .review-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .reviews-hero { padding: 70px 18px 18px; } .reviews-intro { font-size: 16px; } .reviews-page-grid { padding: 18px 16px 72px; } .review-card-grid { grid-template-columns: 1fr; gap: 18px; } .review-panel { padding: 24px 20px; border-radius: 18px; } .reviews-note-card { padding: 24px 20px; border-radius: 18px; } .reviews-note-card h2 { font-size: 24px; } .legal-page-shell { padding: 72px 16px 72px; } .legal-page-card { padding: 28px 20px; border-radius: 20px; } .legal-copy h2 { font-size: 20px; } }


/* review CTA and reviews page fixes */
.secondary-cta, .secondary-cta:visited, .secondary-cta:hover, .secondary-cta:focus { text-decoration: none; }
.secondary-cta span { text-decoration: none; }
.all-reviews-cta { text-align: center; margin-top: 34px; }
.review-stars { color: var(--marigold); letter-spacing: 3px; font-size: 18px; margin-bottom: 14px; }
.review-body { color: var(--deep); line-height: 1.8; margin-bottom: 18px; font-size: 16px; }
.review-name { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--marigold); margin-bottom: 6px; }
.review-type { color: var(--muted); font-size: 14px; }


.legal-page-shell-plain {
  padding-top: 150px;
  min-height: 60vh;
}

.legal-title {
  margin-bottom: 12px;
}

.text-link {
  color: var(--marigold);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}
/* ═══════════════════════════════════════
   SERVICE ARTICLE PAGES
   ═══════════════════════════════════════ */
.service-article {
  padding: 80px 40px;
  background: var(--cream);
}

.service-article > div {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.service-article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--deep);
  margin: 40px 0 16px;
}

.service-article p {
  margin-bottom: 16px;
}

.service-article-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .service-article {
    padding: 60px 20px;
  }
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 20px;
}

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-row .hero-cta {
    margin-right: 0 !important;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   ABOUT VALUES — LENS DESIGN
   ═══════════════════════════════════════ */
.about-values-lens {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}

.lens-val-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lens-val-row.lens-val-reverse {
  flex-direction: row-reverse;
}

.lens-wrap {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
}

.lens-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--marigold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lens-mid {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1.5px dashed rgba(232,168,56,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lensSpinR 18s linear infinite;
}

.lens-inner {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,168,56,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lensSpinR 12s linear infinite;
}

.lens-spin-r {
  animation: lensSpinR 12s linear infinite !important;
}

.lens-core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tick-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.tick {
  position: absolute;
  width: 2px;
  height: 8px;
  background: rgba(232,168,56,0.4);
  left: calc(50% - 1px);
  top: 4px;
  transform-origin: 1px 56px;
  border-radius: 1px;
}

.tick.major {
  height: 12px;
  background: rgba(232,168,56,0.8);
  top: 4px;
}

@keyframes lensSpin {
  to { transform: rotate(360deg); }
}

@keyframes lensSpinR {
  to { transform: rotate(-360deg); }
}

.lens-val-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 8px;
}

.lens-val-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #666;
  margin: 0;
}

@media (max-width: 600px) {
  .lens-val-row,
  .lens-val-row.lens-val-reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ═══════════════════════════════════════
   IMAGE PROTECTION
   ═══════════════════════════════════════ */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.gallery-item img,
.about-image-col img,
.service-article img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ═══════════════════════════════════════
   SERVICE PAGE HERO COLORS
   ═══════════════════════════════════════ */

/* Maternity — soft rose/ruby */
.page-hero.hero-maternity {
  background: linear-gradient(135deg,
    rgba(192,57,43,0.15) 0%,
    rgba(253,246,236,0.95) 40%,
    rgba(224,122,95,0.12) 100%);
}

/* Newborn — soft mint/teal */
.page-hero.hero-newborn {
  background: linear-gradient(135deg,
    rgba(26,138,125,0.15) 0%,
    rgba(240,252,250,0.95) 40%,
    rgba(13,92,84,0.12) 100%);
}

/* Cake Smash — soft warm gold */
.page-hero.hero-cakesmash {
  background: linear-gradient(135deg,
    rgba(232,168,56,0.18) 0%,
    rgba(253,249,236,0.95) 40%,
    rgba(196,133,28,0.12) 100%);
}

/* Kids Growing Up — soft lavender */
.page-hero.hero-kidsgrowing {
  background: linear-gradient(135deg,
    rgba(155,114,170,0.18) 0%,
    rgba(248,244,252,0.95) 40%,
    rgba(107,77,122,0.12) 100%);
}

/* Baby Shower — soft coral/salmon */
.page-hero.hero-babyshower {
  background: linear-gradient(135deg,
    rgba(224,122,95,0.18) 0%,
    rgba(253,245,242,0.95) 40%,
    rgba(192,57,43,0.12) 100%);
}

/* Birthday — soft forest green */
.page-hero.hero-birthday {
  background: linear-gradient(135deg,
    rgba(45,106,79,0.15) 0%,
    rgba(242,250,245,0.95) 40%,
    rgba(26,138,125,0.12) 100%);
}

/* Gender Reveal — soft pink/lilac */
.page-hero.hero-genderreveal {
  background: linear-gradient(135deg,
    rgba(232,180,184,0.25) 0%,
    rgba(253,245,250,0.95) 40%,
    rgba(192,160,208,0.18) 100%);
}

/* Events — soft deep navy/blue */
.page-hero.hero-events {
  background: linear-gradient(135deg,
    rgba(26,26,78,0.15) 0%,
    rgba(240,242,252,0.95) 40%,
    rgba(42,42,78,0.12) 100%);
}