/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0d0d0d;
  --white:   #fafaf8;
  --gold:    #b8956a;
  --gold-lt: #d4b28a;
  --gold-dk: #8f6e4a;
  --cream:   #f5f0e8;
  --gray:    #888;
  --border:  #e8e2d8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --shadow: 0 8px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  /* WEB3 FUTURISTIC COLORS */
  --neon-cyan: #00f0ff;
  --neon-purple: #d946ef;
  --neon-blue: #0099ff;
  --neon-pink: #ff006e;
  --neon-green: #00ff00;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SPLASH SCREEN ===== */
.splash-screen {
  position: fixed;
  inset: 0;
  background: #080604;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out;
  overflow: hidden;
}

.splash-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgba(184,149,106,.22) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 18% 88%, rgba(140,105,68,.12) 0%, transparent 55%),
    radial-gradient(ellipse 25% 25% at 82% 12%, rgba(200,165,110,.10) 0%, transparent 50%);
  animation: splashGlowDrift 10s ease-in-out infinite;
  z-index: 1;
}
.splash-screen.opening::before { animation: none; opacity: 0; }
@keyframes splashGlowDrift {
  0%,100% { opacity: 1; }
  50%     { opacity: .5; }
}

.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.splash-screen.opening {
  background: transparent;
  animation: splashOpening 1.2s ease-in-out forwards;
}

@keyframes splashOpening {
  0%   { background: #080604; }
  60%  { background: rgba(8,6,4,.5); }
  100% { background: transparent; }
}

.splash-content {
  text-align: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.splash-screen.opening .splash-content {
  opacity: 0;
  pointer-events: none;
}

/* Splash screen balloons */
.splash-balloon {
  position: absolute;
  width: 30px;
  height: 35px;
  border-radius: 50% 50% 50% 40%;
  pointer-events: none;
  opacity: 0.6;
  animation: splashBalloonFloat linear forwards;
}

.splash-screen.opening .splash-balloon {
  animation: none;
  display: none;
}

.splash-balloon::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes splashBalloonFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.8);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-120vh) translateX(var(--drift, 0px)) scale(1);
  }
}

/* Splash miniature explosions */
.splash-mini-explosion {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.splash-screen.opening .splash-mini-explosion {
  display: none;
}

.splash-mini-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

@keyframes splashMiniExplode {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.2);
  }
}

/* Hero section background balloons */
.hero-bg-balloon {
  position: absolute;
  width: 50px;
  height: 60px;
  border-radius: 50% 50% 50% 40%;
  pointer-events: none;
  opacity: 0.4;
  animation: heroBalloonFloat linear forwards;
}

.hero-bg-balloon::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes heroBalloonFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.7);
  }
  10% {
    opacity: 0.4;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) translateX(var(--drift, 0px)) scale(1);
  }
}

.splash-logo {
  width: 200px;
  height: 200px;
  cursor: grab;
  margin-bottom: 30px;
  animation: splashLogoPulse 2s ease-in-out infinite, splashLogoSpin 8s linear infinite;
  transition: transform 0.3s ease;
  user-select: none;
  position: relative;
  z-index: 10001;
}

.splash-logo.opening {
  cursor: default;
  animation: none;
  pointer-events: none;
  transition: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: logoOpening 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoOpening {
  0% {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    width: 150vw;
    height: 150vw;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.splash-logo:hover {
  transform: scale(1.05);
}

.splash-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.splash-text {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes splashLogoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes splashLogoSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Logo explosion particles */
.logo-particle {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
}

.logo-particle.neon {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

@keyframes explode {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(360deg) scale(0.2);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

/* ===== ROTATING LOGO ANIMATION ===== */
@keyframes spinLogo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo {
  display: inline-block;
  animation: spinLogo 8s linear infinite;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: var(--transition), box-shadow .3s, border-color .3s;
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--neon-cyan);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(184,149,106,.35), 0 0 20px rgba(0, 240, 255, .4), 0 0 40px rgba(0, 240, 255, .2);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 22px 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: height var(--transition);
}
.site-header.scrolled .logo img {
  height: 48px;
}
.footer-logo img {
  height: 56px;
}

.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a { color: var(--black); }
.site-header.scrolled .main-nav a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  padding-top: 8px;
}
.has-dropdown:hover .dropdown,
.has-dropdown .dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: .8rem;
  color: var(--black) !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--cream); color: var(--gold) !important; }
.dropdown li a::after { display: none; }

.arrow { font-size: .7rem; margin-left: 2px; }
.header-cta { font-size: .78rem; padding: 10px 22px; color: var(--white) !important; border-color: rgba(255,255,255,.5); }
.site-header.scrolled .header-cta { color: var(--black) !important; border-color: var(--black); }
.site-header.scrolled .header-cta:hover { background: var(--black); color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mobile-nav .btn { display: inline-flex; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #0d0d0d 100%);
  padding-top: 100px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 0%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
  animation: meshFlow 15s ease-in-out infinite;
  filter: blur(0.5px);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(184, 149, 106, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(217, 70, 239, 0.05) 50%, transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meshFlow {
  0% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 0%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
  }
  25% {
    background: 
      radial-gradient(circle at 30% 40%, rgba(184, 149, 106, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(0, 240, 255, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 50% 10%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
  }
  50% {
    background: 
      radial-gradient(circle at 40% 30%, rgba(184, 149, 106, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 60% 60%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 60% 20%, rgba(217, 70, 239, 0.12) 0%, transparent 50%);
  }
  75% {
    background: 
      radial-gradient(circle at 25% 45%, rgba(184, 149, 106, 0.16) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(0, 240, 255, 0.11) 0%, transparent 50%),
      radial-gradient(circle at 35% 15%, rgba(217, 70, 239, 0.09) 0%, transparent 50%);
  }
  100% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 0%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    filter: blur(40px);
  }
  50% {
    opacity: 0.8;
    filter: blur(60px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000% 0;
  }
  100% {
    background-position: 1000% 0;
  }
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.7s forwards;
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-top: 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-sub {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BALLOONS ===== */
.balloons-container {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.balloon {
  position: absolute;
  width: 60px;
  height: 70px;
  cursor: pointer;
  pointer-events: auto;
  bottom: -100px;
  opacity: 0;
  animation: floatUp 8s ease-in forwards;
}

.balloon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 85%;
  border-radius: 50% 50% 50% 40%;
  top: 0;
  left: 0;
}

.balloon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  top: 85%;
  transform: translateX(-50%);
}

/* Balloon colors - sort og hvid */
.balloon.gold::before {
  background: linear-gradient(135deg, #b8956a 0%, #8f6e4a 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.2), -4px -4px 15px rgba(184, 149, 106, 0.4),
    0 0 20px rgba(184, 149, 106, 0.3);
}

.balloon.neon-cyan::before {
  background: linear-gradient(135deg, #00f0ff 0%, #00d9ff 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), -4px -4px 15px rgba(0, 240, 255, 0.5),
    0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.3);
}

.balloon.neon-purple::before {
  background: linear-gradient(135deg, #d946ef 0%, #c42ec5 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), -4px -4px 15px rgba(217, 70, 239, 0.5),
    0 0 30px rgba(217, 70, 239, 0.6), 0 0 60px rgba(217, 70, 239, 0.3);
}

.balloon.neon-pink::before {
  background: linear-gradient(135deg, #ff006e 0%, #ff1493 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), -4px -4px 15px rgba(255, 0, 110, 0.5),
    0 0 30px rgba(255, 0, 110, 0.6), 0 0 60px rgba(255, 0, 110, 0.3);
}

.balloon.neon-blue::before {
  background: linear-gradient(135deg, #0099ff 0%, #0077ff 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3), -4px -4px 15px rgba(0, 153, 255, 0.5),
    0 0 30px rgba(0, 153, 255, 0.6), 0 0 60px rgba(0, 153, 255, 0.3);
}

.balloon.white::before {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.2), -4px -4px 15px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.3);
}

.balloon:hover::before {
  filter: brightness(1.1);
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-50vh) translateX(var(--drift, 0px)) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(-120vh) translateX(var(--drift, 0px)) scale(1);
  }
}

@keyframes popBalloon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.balloon.popping {
  animation: popBalloon 0.5s ease-out forwards !important;
}

/* Balloon shine effect */
.balloon::before {
  position: relative;
}

.balloon::before::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  border-radius: 50%;
  top: 8px;
  left: 12px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.services-statement {
  text-align: center;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-statement h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--black);
}

.services-statement p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: start;
}

.service-statement {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-statement h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
  transition: color 0.3s ease;
}

.service-statement p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-statement:hover h3 {
  color: var(--gold);
}

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(0, 240, 255, .4));
  opacity: .7;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--black) 0%, var(--gold) 38%, #c8a060 50%, var(--gold) 62%, var(--black) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headingShimmer 7s linear infinite;
  text-shadow: 0 0 30px rgba(0, 240, 255, .15);
  filter: drop-shadow(0 0 20px rgba(217, 70, 239, .1));
}
@keyframes headingShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: -250% center; }
}
.testimonials .section-header h2 {
  background: linear-gradient(90deg, #fff 0%, var(--gold-lt) 38%, #f5e4b8 50%, var(--gold-lt) 62%, #fff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headingShimmer 7s linear infinite;
}
.section-sub {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}
.service-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 70px rgba(0,0,0,.13), 0 0 45px rgba(184,149,106,.14), 0 0 30px rgba(0, 240, 255, .2), inset 0 0 60px rgba(184,149,106,.05);
  transform: translateY(-6px) perspective(1200px) rotateX(5deg);
}
.service-card.featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 240, 255, .15), 0 8px 32px rgba(0, 0, 0, .3);
}
.service-card.featured:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 60px rgba(184,149,106,.22), 0 0 50px rgba(0, 240, 255, .3), 0 0 100px rgba(184,149,106,.15);
  transform: translateY(-8px) perspective(1200px) rotateX(3deg);
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.price {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.price strong { color: var(--gold); font-weight: 500; }

.service-features { margin-bottom: 32px; }
.service-features li {
  font-size: .88rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }

.pastel-purple { background: linear-gradient(135deg, #e8d5f5, #d4c5f0); }
.pastel-green  { background: linear-gradient(135deg, #d5ecd8, #c5e0ca); }
.pastel-gold   { background: linear-gradient(135deg, #f5e8c5, #e8d4a0); }
.pastel-blue   { background: linear-gradient(135deg, #c5d8f5, #b5c8e8); }
.pastel-pink   { background: linear-gradient(135deg, #f5c5d5, #e8b5c8); }

/* Album grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.album-card {
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  /* Glassmorphic effect */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 8px;
  animation: albumEnter 0.6s ease-out forwards;
  opacity: 0;
}

.album-card:nth-child(1) { animation-delay: 0.1s; }
.album-card:nth-child(2) { animation-delay: 0.2s; }
.album-card:nth-child(3) { animation-delay: 0.3s; }
.album-card:nth-child(4) { animation-delay: 0.4s; }
.album-card:nth-child(5) { animation-delay: 0.5s; }

.album-card:hover {
  transform: translateY(-10px) perspective(1200px) rotateX(5deg) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, .4), 0 12px 40px rgba(0, 0, 0, .3);
}

@keyframes albumEnter {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.album-cover {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease-out, backdrop-filter 0.4s ease-out;
  backdrop-filter: blur(0px);
}
.album-card:hover .album-overlay {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.album-open-icon {
  color: var(--white);
  font-size: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.album-card:hover .album-open-icon {
  transform: scale(1.3) rotate(8deg);
}
.album-open-text {
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  transform: translateY(10px);
}
.album-card:hover .album-open-text {
  opacity: 1;
  transform: translateY(0);
  animation: textPulse 0.6s ease-out;
}
.album-placeholder-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(0,0,0,.3);
  pointer-events: none;
}
.album-count-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  border-radius: 4px;
  transition: all 0.3s ease-out;
  border: 1px solid rgba(0, 240, 255, 0);
}
.album-card:hover .album-count-badge {
  background: rgba(0, 240, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.album-info {
  padding: 14px 0 0;
  text-align: center;
  transition: all 0.3s ease-out;
}
.album-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  transition: color 0.3s ease-out;
}
.album-card:hover .album-info h4 {
  color: var(--gold);
  font-weight: 500;
}

@keyframes textPulse {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Album hover particles */
.album-hover-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(135deg, var(--neon-cyan), var(--gold));
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6), 0 0 12px var(--neon-cyan);
  animation: albumSparkle var(--duration, 1s) ease-out forwards;
  z-index: 100;
}

@keyframes albumSparkle {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--x, 0px), var(--y, 0px)) scale(0);
  }
}

/* Album modal */
.album-modal {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1500;
  display: none;
  overflow-y: scroll;                   /* block scroll — NOT flex (flex breaks iOS scroll) */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;    /* momentum scroll on iOS */
  overscroll-behavior: contain;
}
.album-modal.open { display: block; }  /* block, not flex — critical for mobile scroll */

.album-modal-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 80px;
  flex-shrink: 0;      /* prevent flex from collapsing content — needed for iOS scroll */
}

.album-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.album-modal-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  white-space: nowrap;
}
.album-modal-back:hover { color: var(--gold); }

.album-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  flex: 1;
}

.album-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--gray);
  transition: color var(--transition);
  flex-shrink: 0;
}
.album-modal-close:hover { color: var(--black); }
.album-modal-close:hover { color: var(--gold); }

.album-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.album-img-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(184, 149, 106, 0.2);
  animation: albumImgEnter 0.5s ease-out forwards;
  opacity: 0;
}

.album-img-card:nth-child(1) { animation-delay: 0.05s; }
.album-img-card:nth-child(2) { animation-delay: 0.1s; }
.album-img-card:nth-child(3) { animation-delay: 0.15s; }
.album-img-card:nth-child(4) { animation-delay: 0.2s; }
.album-img-card:nth-child(5) { animation-delay: 0.25s; }
.album-img-card:nth-child(6) { animation-delay: 0.3s; }
.album-img-card:nth-child(7) { animation-delay: 0.35s; }
.album-img-card:nth-child(8) { animation-delay: 0.4s; }
.album-img-card:nth-child(9) { animation-delay: 0.45s; }

@keyframes albumImgEnter {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.album-img-card .gallery-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease;
}
.album-img-card:hover .gallery-thumb { transform: scale(1.05); }
.album-img-card:hover .gallery-overlay { opacity: 1; }
.album-img-card .gallery-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(184, 149, 106, 0.9);
  color: var(--white);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  border-radius: 4px;
  font-weight: 500;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease;
}
.gallery-card:hover .gallery-thumb { transform: scale(1.05); }

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

.gallery-placeholder-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(0,0,0,.3);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-zoom {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.gallery-card:hover .gallery-zoom { transform: scale(1.1); }

.gallery-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

/* Instagram banner */
.instagram-banner {
  margin-top: 56px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
  flex-wrap: wrap;
}
.ig-icon { color: var(--gold); flex-shrink: 0; }
.ig-text { flex: 1; min-width: 200px; }
.ig-text strong { display: block; font-size: 1rem; font-weight: 500; margin-bottom: 2px; }
.ig-text span { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ===== INSTAGRAM-STYLE VIEWER ===== */
.insta-viewer {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: none;
  flex-direction: column;
}
.insta-viewer.open { display: flex; }

/* Header bar: counter left, close right */
.iv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
  flex-shrink: 0;
}
.iv-counter {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}
.iv-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s;
}
.iv-close:hover { color: #fff; }

/* Swipeable image track */
.iv-track {
  flex: 1;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.iv-track::-webkit-scrollbar { display: none; }

.iv-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
}
.iv-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}
.iv-placeholder {
  width: 100%;
  height: 60vw;
  max-height: 460px;
  border-radius: 12px;
}

/* Footer: dots + caption */
.iv-footer {
  flex-shrink: 0;
  padding: 12px 20px 24px;
  text-align: center;
}
.iv-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.iv-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: background .2s, transform .2s;
}
.iv-dot.active {
  background: var(--gold, #b8956a);
  transform: scale(1.4);
}
.iv-caption h4 {
  font-family: var(--font-serif, serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}
.iv-caption p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

@media (max-width: 1024px) {
  .album-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .album-modal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .album-modal-header h3 { font-size: 1.4rem; }
  .instagram-banner { padding: 24px 20px; gap: 16px; }
}
@media (max-width: 480px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .album-modal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

/* ----- MODERN SECTION DECORATION ----- */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,149,106,.4), transparent);
  opacity: 0.5;
}

/* ----- FAQ QUESTION ANIMATED ----- */
.faq-question {
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184,149,106,.2));
  transition: width .4s cubic-bezier(.16,1,.3,1);
}

.faq-item.open .faq-question::before {
  width: 100%;
}
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #e8d5c5, #d5c5b5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder span {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(0,0,0,.15);
}

.about-logo {
  max-width: 85%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.18));
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.about-badge span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
}
.about-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: .95rem;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--black); color: var(--white); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-eyebrow { color: var(--gold); }

.google-badge {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 20px;
  font-size: .8rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-top: 12px;
}

.testimonial-slider { overflow: hidden; position: relative; }

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  min-width: 100%;
  padding: 60px 80px;
  text-align: center;
}
.testimonial-card .stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonial-card > p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}
.reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.reviewer strong { display: block; font-weight: 500; font-size: .9rem; }
.reviewer span { font-size: .78rem; color: rgba(255,255,255,.45); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}
.slider-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question span {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question span { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 22px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  color: #666;
  font-size: .9rem;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 24px; }

label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn { width: 100%; justify-content: center; padding: 18px; font-size: .9rem; }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0faf0;
  border: 1px solid #c3e6cb;
  color: #2d6a4f;
  font-size: .88rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 240px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-instagram {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 40px;
}
.footer-ig-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ig-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 10px;
  flex-shrink: 0;
}
.ig-icon svg { width: 22px; height: 22px; fill: #fff; }
.footer-ig-inner span {
  flex: 1;
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
  font-size: .95rem;
  min-width: 160px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 40px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner { padding: 20px 24px; }
  .main-nav > ul { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .services-grid.five { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .footer-instagram { padding: 24px; }
  .footer-ig-inner { gap: 14px; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item.large { grid-column: auto; grid-row: auto; }
  .portfolio-item.large .portfolio-img { min-height: 240px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .hero-content { padding-top: 100px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .testimonial-card { padding: 40px 24px; }
  .services-grid,
  .services-grid.five { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large .portfolio-img { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .about-badge { right: 0; bottom: -16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .service-card { padding: 32px 24px; }
}

/* ================================================================
   WOW MODERN EFFECTS
   ================================================================ */

/* ----- CUSTOM CURSOR ----- */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  transition: opacity .15s, transform .1s;
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(184,149,106,.55);
  transition: width .25s cubic-bezier(.16,1,.3,1),
              height .25s cubic-bezier(.16,1,.3,1),
              border-color .25s;
}
.cursor.expand   { transform: translate(-50%,-50%) scale(0); }
.cursor-follower.expand {
  width: 60px; height: 60px;
  border-color: var(--gold);
  background: rgba(184,149,106,.06);
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ----- HERO ANIMATED BLOBS ----- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
}
.hero-blob-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(184,149,106,.22) 0%, rgba(184,149,106,.08) 40%, transparent 70%);
  top: -240px; right: -180px;
  filter: blur(72px);
  animation: blob1 16s ease-in-out infinite, glow1 4s ease-in-out infinite;
}
.hero-blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(160,100,40,.18) 0%, rgba(160,100,40,.04) 40%, transparent 70%);
  bottom: -100px; left: -120px;
  filter: blur(90px);
  animation: blob2 22s ease-in-out infinite, glow2 5s ease-in-out infinite;
}
.hero-blob-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(220,170,80,.15) 0%, rgba(220,170,80,.02) 40%, transparent 70%);
  top: 38%; left: 38%;
  filter: blur(60px);
  animation: blob3 13s ease-in-out infinite, glow3 6s ease-in-out infinite;
}

@keyframes blob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(-100px, 80px) scale(1.15); }
  50%     { transform: translate(-180px, 200px) scale(1.05); }
  75%     { transform: translate(-60px, 120px) scale(1.12); }
}
@keyframes blob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(120px,-100px) scale(.95); }
  50%     { transform: translate(180px,-200px) scale(1.1); }
  75%     { transform: translate(80px,-140px) scale(.98); }
}
@keyframes blob3 {
  0%,100% { transform: translate(0,0); }
  25%     { transform: translate(-70px, 90px); }
  50%     { transform: translate(-120px, 150px); }
  75%     { transform: translate(-40px, 60px); }
}

@keyframes glow1 {
  0%, 100% { filter: blur(72px) brightness(1); }
  50% { filter: blur(60px) brightness(1.3); }
}
@keyframes glow2 {
  0%, 100% { filter: blur(90px) brightness(1); }
  50% { filter: blur(75px) brightness(1.25); }
}
@keyframes glow3 {
  0%, 100% { filter: blur(60px) brightness(1); }
  50% { filter: blur(48px) brightness(1.35); }
}

/* ----- HERO FLOATING ORBS ----- */
.hero-orb {
  position: absolute;
  box-shadow: 0 0 40px rgba(184,149,106,.4);
  border-radius: 50% 50% 45% 45% / 60% 60% 50% 50%;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, .3));
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-orb:hover {
  transform: scale(1.12);
}

.hero-orb-1 {
  width: 60px;
  height: 80px;
  background: rgba(184,149,106,.35);
  top: 15%;
  left: 10%;
  animation: floatOrb3D1 14s ease-in-out infinite, orb3DRotate1 8s linear infinite;
  box-shadow: 0 0 100px rgba(184,149,106,.5), inset 0 0 40px rgba(184,149,106,.4), 0 0 60px rgba(0, 240, 255, .35), 0 0 120px rgba(184,149,106,.25);
}

.hero-orb-2 {
  width: 40px;
  height: 55px;
  background: rgba(220,170,80,.32);
  bottom: 20%;
  right: 15%;
  animation: floatOrb3D2 16s ease-in-out infinite, orb3DRotate2 10s linear infinite;
  box-shadow: 0 0 70px rgba(220,170,80,.4), 0 0 50px rgba(217, 70, 239, .35), 0 0 100px rgba(220,170,80,.2);
  filter: drop-shadow(0 0 25px rgba(217, 70, 239, .4));
}

.hero-orb-3 {
  width: 30px;
  height: 42px;
  background: rgba(184,149,106,.38);
  top: 45%;
  right: 8%;
  animation: floatOrb3D3 12s ease-in-out infinite, orb3DRotate3 9s linear infinite;
  box-shadow: 0 0 80px rgba(184,149,106,.35), 0 0 50px rgba(0, 240, 255, .3), 0 0 100px rgba(184,149,106,.15);
}

.hero-orb::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(184,149,106,.3), rgba(184,149,106,.1));
  border-radius: 1px;
}

@keyframes floatOrb3D1 {
  0%, 100% { transform: translate(0, 0) translateZ(20px); }
  25% { transform: translate(50px, -60px) translateZ(40px); }
  50% { transform: translate(80px, 40px) translateZ(-30px); }
  75% { transform: translate(20px, 80px) translateZ(35px); }
}

@keyframes orb3DRotate1 {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(180deg); }
}

@keyframes floatOrb3D2 {
  0%, 100% { transform: translate(0, 0) translateZ(-20px); }
  25% { transform: translate(-60px, 50px) translateZ(25px); }
  50% { transform: translate(-80px, -60px) translateZ(-40px); }
  75% { transform: translate(-20px, -40px) translateZ(30px); }
}

@keyframes orb3DRotate2 {
  0% { transform: rotateX(45deg) rotateY(45deg) rotateZ(0deg); }
  100% { transform: rotateX(405deg) rotateY(225deg) rotateZ(180deg); }
}

@keyframes floatOrb3D3 {
  0%, 100% { transform: translate(0, 0) translateZ(15px); }
  33% { transform: translate(-40px, 70px) translateZ(-35px); }
  66% { transform: translate(60px, -50px) translateZ(40px); }
}

@keyframes orb3DRotate3 {
  0% { transform: rotateX(30deg) rotateY(0deg) rotateZ(45deg); }
  100% { transform: rotateX(390deg) rotateY(360deg) rotateZ(225deg); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-60px, 50px); }
  50% { transform: translate(-80px, -60px); }
  75% { transform: translate(-20px, -40px); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 70px); }
  66% { transform: translate(60px, -50px); }
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  opacity: 0;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { opacity: 0;   transform: translateY(0)    scale(0); }
  12%  { opacity: .9;  transform: translateY(-28px) scale(1); }
  88%  { opacity: .25; }
  100% { opacity: 0;   transform: translateY(-240px) scale(.15); }
}

/* ===== FOOTER ===== */
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ===== MODERN CARD BORDERS ===== */
.service-card,
.album-card,
.gallery-card {
  position: relative;
}

.service-card::after,
.album-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, rgba(184,149,106,.3), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.service-card:hover::after,
.album-card:hover::after {
  opacity: 1;
  animation: borderShine 1.5s ease-in-out;
}

@keyframes borderShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ----- REVEAL ANIMATION ENHANCED ----- */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity .95s cubic-bezier(.16,1,.3,1),
              transform .95s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION SCROLL TRANSITIONS ===== */
section,
footer.site-footer {
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
              transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
/* Section is below viewport — slides up into view */
section.sect-below,
footer.site-footer.sect-below {
  opacity: 0;
  transform: translateY(50px);
}
/* Section has scrolled above viewport — fades out upward */
section.sect-above,
footer.site-footer.sect-above {
  opacity: 0;
  transform: translateY(-30px);
}

/* ----- SERVICE CARD ENHANCED 3D + GLOW ----- */
.service-card {
  will-change: transform;
  transition: border-color .35s, box-shadow .35s,
              transform .55s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,149,106,.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(0,0,0,.13), 0 0 45px rgba(184,149,106,.14), inset 0 0 60px rgba(184,149,106,.05);
  transform: translateY(-12px) rotateX(2deg);
}

.service-card:hover::before {
  opacity: 1;
}

/* ----- ALBUM CARD ENHANCED 3D + GLOW ----- */
.album-card {
  will-change: transform;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  position: relative;
}

.album-card:hover {
  transform: translateY(-12px) rotateY(-3deg) rotateX(1deg);
}

.album-card:hover .album-cover {
  box-shadow: 0 24px 56px rgba(0,0,0,.22), 0 0 32px rgba(184,149,106,.12), 0 0 80px rgba(184,149,106,.08);
}

/* ----- BUTTON GLOW ENHANCED ----- */
.btn-gold {
  position: relative;
  overflow: hidden;
  transition: var(--transition), box-shadow .3s;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 80%);
  opacity: 0;
  transition: opacity .3s;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(184,149,106,.55), 0 0 56px rgba(184,149,106,.2), 0 0 80px rgba(184,149,106,.1);
}

/* ----- SECTION EYEBROW LINES ----- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

/* ----- HERO EYEBROW LINE ----- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ----- SECTION HEADER GOLD UNDERLINE ----- */
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto 0;
  animation: underlineExpand 3s ease-in-out infinite;
}

@keyframes underlineExpand {
  0%, 100% { width: 40px; opacity: .6; }
  50% { width: 80px; opacity: 1; }
}

/* prevent double underline for gradient-text headings that have -webkit-text-fill */
.testimonials .section-header h2::after {
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  animation: underlineExpand 3s ease-in-out infinite;
}

/* ----- FEATURED SERVICE CARD PREMIUM GLOW ----- */
.service-card.featured {
  position: relative;
}

.service-card.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--gold), rgba(184,149,106,.3), var(--gold));
  background-size: 300% 300%;
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: .3; }
}

.service-card.featured:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 60px rgba(184,149,106,.22), 0 0 100px rgba(184,149,106,.15);
}

/* ----- ALBUM MODAL ENTRANCE ----- */
.album-modal.open {
  animation: modalSlideUp .45s cubic-bezier(.16,1,.3,1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- INSTAGRAM VIEWER ENTRANCE ----- */
.insta-viewer.open {
  animation: ivFadeIn .22s ease;
}
@keyframes ivFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ----- FOOTER GOLD TOP BORDER ----- */
.site-footer {
  border-top: 1px solid rgba(184,149,106,.22);
}

/* ----- GALLERY SECTION RICHER BG ----- */
.gallery {
  background: linear-gradient(180deg, #f0e8d8 0%, var(--cream) 50%, #ede5d5 100%);
}

/* ----- ABOUT SECTION RICHER GRADIENT ----- */
.about-img-placeholder {
  background: linear-gradient(145deg, #ecdccc, #d8c8b4, #c8b89e);
}

/* ----- GOOGLE BADGE GOLDEN ----- */
.google-badge {
  border-color: rgba(184,149,106,.35);
  color: rgba(255,255,255,.75);
}

/* ----- SCROLL INDICATOR GOLD LINE ----- */
.scroll-line {
  background: linear-gradient(to bottom, var(--gold), rgba(184,149,106,.2));
}

/* ----- TESTIMONIAL CARD ENHANCED ----- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: slideTop 3s ease-in-out infinite;
}

@keyframes slideTop {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.testimonial-card > p {
  text-shadow: 0 1px 12px rgba(0,0,0,.2);
}

/* ----- NOISE GRAIN OVERLAY (subtle premium feel) ----- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ===== WEB3 FUTURISTIC ENHANCEMENTS ===== */
input:focus, select:focus, textarea:focus {
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 0 2px rgba(0, 240, 255, .15), inset 0 0 10px rgba(0, 240, 255, .1);
}

/* Neon glow for links */
.main-nav a:hover {
  text-shadow: 0 0 10px rgba(0, 240, 255, .3);
}

/* Enhanced section border with neon */
section::before {
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, .15), rgba(184,149,106,.3), rgba(0, 240, 255, .15), transparent) !important;
}

/* ══════════════════════════════════════════════
   PASTEL-ROSE album color
   ══════════════════════════════════════════════ */
.pastel-rose { background: linear-gradient(135deg, #f9c5d1 0%, #f4a0b0 100%); }

/* ══════════════════════════════════════════════
   ALBUM CARD COVER SCROLLER
   ══════════════════════════════════════════════ */
.album-cover-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.album-cover-track::-webkit-scrollbar { display: none; }

.album-cover-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
}
.album-cover-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Keep overlay and badge above the track */
.album-cover { position: relative; }
.album-cover .album-overlay { position: absolute; inset: 0; z-index: 2; }
.album-cover .album-count-badge { position: relative; z-index: 3; }

/* ══════════════════════════════════════════════
   SUB-ALBUM CARDS (inside album modal)
   ══════════════════════════════════════════════ */
.sub-album-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.sub-album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.sub-album-cover {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.sub-album-cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sub-album-count {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .03em;
}
.sub-album-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-album-folder { font-size: 1.1rem; }
.sub-album-info h4 {
  font-size: .95rem;
  font-weight: 500;
  margin: 0;
  color: var(--dark);
}

/* Separator between sub-albums and top-level images */
.sub-album-separator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 4px;
  font-size: .78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sub-album-separator::before,
.sub-album-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
}

/* ===== HERO EYEBROW & BADGE STRIP ===== */
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(184,149,106,.35);
  opacity: 0;
  animation: fadeUp 1s ease-out 0.1s forwards;
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px auto 44px;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.6s forwards;
}

.hero-badge-tag {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 5px 16px;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.hero-badge-tag:hover {
  color: var(--gold);
  border-color: rgba(184,149,106,.5);
}

/* ===== SERVICE CARDS GRID ===== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.service-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.service-card-link {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link:hover {
  color: var(--gold-dk);
  gap: 8px;
}

/* Make service cards flex-column so link stays at bottom */
.service-cards-grid .service-card {
  display: flex;
  flex-direction: column;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(184,149,106,.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 0% 100%, rgba(184,149,106,.07) 0%, transparent 50%);
  pointer-events: none;
}
.process .section-eyebrow { color: var(--gold); }
.process .section-header h2 {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,106,.4), rgba(184,149,106,.4), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184,149,106,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 28px;
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(184,149,106,.35);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
}
.process-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

/* ===== RESPONSIVE: SERVICE CARDS & PROCESS ===== */
@media (max-width: 900px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .process-steps::before { display: none; }
}

@media (max-width: 600px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-badge-strip { gap: 6px; }
}
