/* ==============================================================
   Silver Nest — Vibrant Rainbow Stylesheet
   ============================================================== */

/* === Design Tokens === */
:root {
  /* Rainbow palette */
  --purple: #8B5CF6;
  --purple-dark: #7C3AED;
  --purple-light: #A78BFA;
  --pink: #EC4899;
  --pink-dark: #DB2777;
  --pink-light: #F472B6;
  --orange: #F97316;
  --teal: #14B8A6;
  --yellow: #FBBF24;

  /* Semantic */
  --primary: var(--purple);
  --accent: var(--pink);

  /* Dark backdrop */
  --dark: #0F0A1F;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #FAFAFA;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;

  /* Gradients */
  --gradient-rainbow: linear-gradient(135deg, #8B5CF6 0%, #EC4899 33%, #F97316 66%, #14B8A6 100%);
  --gradient-warm: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
  --gradient-cool: linear-gradient(135deg, #8B5CF6 0%, #14B8A6 100%);
  --gradient-hero: linear-gradient(135deg, #2A1B4A 0%, #6B21A8 50%, #DB2777 100%);
  --gradient-soft: linear-gradient(135deg, #FAF5FF 0%, #FCE7F3 50%, #FFEDD5 100%);
  /* Heading gradient (used by .grad on light backgrounds). Darkened so every stop
     clears WCAG AA for large text on white — the old teal/orange stops failed contrast. */
  --gradient-text: linear-gradient(90deg, #7C3AED, #DB2777, #EA580C);
  --gradient-purple-pink: linear-gradient(135deg, #8B5CF6, #EC4899);

  /* Shadows */
  --shadow: 0 4px 16px rgba(15, 10, 31, .08);
  --shadow-lg: 0 24px 64px -12px rgba(139, 92, 246, .25);
  --shadow-glow: 0 0 40px rgba(236, 72, 153, .35);
  --shadow-card: 0 12px 40px rgba(139, 92, 246, .15);

  /* Radii */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 999px;

  /* Layout */
  --container: 1240px;
  --header-h: 76px;

  /* Transitions */
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: clip;
}
body.menu-open, body.lb-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* Visible focus ring for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible,
.filter-btn:focus-visible,
.faq-q:focus-visible,
.dot-btn:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--gray-700); }

/* === Utilities === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px;
}
.section-head .section-eyebrow { justify-content: center; }
.section-head p { margin-top: 18px; font-size: 1.1rem; color: var(--gray-600); }

.grad {
  background: var(--gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
  display: inline-block;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, .4); }
  50% { box-shadow: 0 0 40px rgba(236, 72, 153, .7), 0 0 60px rgba(139, 92, 246, .4); }
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.btn-warm {
  background: var(--gradient-warm);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(236, 72, 153, .3);
}
.btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236, 72, 153, .5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(139, 92, 246, .05);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.btn-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* FULLY OPAQUE background. A translucent navbar (e.g. rgba(255,255,255,.96))
     looks beautiful when the page is static, but during scroll the constantly
     changing content visible through the 4% transparency causes a shimmering /
     vibrating effect — the rendered navbar color subtly shifts every frame as
     different pixels pass behind it. Solid white eliminates this entirely. */
  background: #ffffff;
  height: var(--header-h);
  border-bottom: 1px solid var(--gray-200);
  /* NOTE: backdrop-filter intentionally OMITTED — it creates a containing
     block for position:fixed descendants, which traps the mobile drawer
     relative to the (sticky) header instead of the viewport.
     NOTE: NO `transition` on background/box-shadow — when the .scrolled
     class toggles near the threshold, an animated transition fires repeatedly
     and the navbar shimmers against itself. Switch states instantly. */
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(139, 92, 246, .1);
}
/* When the mobile menu is open, lift the header (and its nested .main-nav)
   above the .mobile-overlay so menu links are clickable. */
body.menu-open .site-header { z-index: 90; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}
/* Brand logo image (440x180 source). Height-locked, width auto-scales,
   so it always fits the 76px header with breathing room. */
.logo-img {
  height: 58px;
  width: auto;
  display: block;
}
/* The supplied logo is light silver — readable on the dark footer, but faint
   on the white header. Darken it to a charcoal-silver for the header ONLY so
   it reads clearly. Footer keeps the original silver (see .logo-light below). */
.site-header .logo-img {
  filter: brightness(0.42) contrast(1.08);
}

/* Skip-to-content link — visible only on keyboard focus (WCAG 2.4.1 Bypass Blocks) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  padding: 10px 16px;
  background: #fff;
  color: var(--purple);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  outline: 3px solid var(--pink);
}

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block;
  padding: 10px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition);
}
.main-nav a:hover {
  color: var(--purple);
  background: rgba(139, 92, 246, .08);
}
.main-nav a.active {
  color: var(--white);
  background: var(--gradient-purple-pink);
  box-shadow: 0 4px 12px rgba(139, 92, 246, .35);
}
.header-cta { padding: 10px 22px; font-size: .9rem; }
.main-nav .mobile-cta,
.mobile-cta { display: none; }
.mobile-close, .mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.mobile-toggle:hover { background: rgba(139, 92, 246, .1); color: var(--purple); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 31, .6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 70;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-h));
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Calmer overlay: a darkening wash at the bottom-left for text legibility,
     subtle warm tint top-right, the image stays clearly visible in the centre.
     No more clashing 4-stop rainbow wash over every slide. */
  background:
    linear-gradient(180deg, rgba(15, 10, 31, .15) 0%, rgba(15, 10, 31, .65) 100%),
    linear-gradient(90deg, rgba(15, 10, 31, .35) 0%, rgba(15, 10, 31, 0) 60%);
}
.slide-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  /* IMPORTANT: anchor content to a FIXED vertical position (not centered).
     When slides have different text lengths, centering causes every element
     (eyebrow, h1, lead, CTAs) to jump as the slider advances. With a fixed
     top offset, the eyebrow always renders at the same y-coordinate and
     content stacks downward from there — no more layout jitter. */
  padding: clamp(80px, 22vh, 220px) 24px 80px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  align-self: flex-start;
  margin-bottom: 24px;
  animation: fadeInUp .8s ease backwards;
}
.slide-content h1,
.slide-content .slide-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
  /* Reserve at least two lines so a short title ("Lights. Sound. Magic.")
     doesn't collapse the layout — the next slide's longer title fills the
     same space. Keeps the lead+CTAs anchored at a fixed y-position. */
  min-height: calc(clamp(2.6rem, 6vw, 5rem) * 1.15 * 2);
  animation: fadeInUp .8s .15s ease backwards;
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.slide-content .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, .9);
  max-width: 640px;
  margin-bottom: 36px;
  /* Reserve two lines of lead text so single-line vs two-line leads don't
     shift the CTA buttons up and down between slides. */
  min-height: calc(clamp(1.05rem, 1.6vw, 1.3rem) * 1.65 * 2);
  animation: fadeInUp .8s .3s ease backwards;
}
.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp .8s .45s ease backwards;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.dot-btn {
  width: 36px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .35);
  transition: var(--transition);
}
.dot-btn.active {
  width: 60px;
  background: var(--gradient-warm);
  box-shadow: 0 0 12px rgba(236, 72, 153, .6);
}
.arrow-prev, .arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(12px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.arrow-prev { left: 30px; }
.arrow-next { right: 30px; }
.arrow-prev:hover, .arrow-next:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-50%) scale(1.08);
}

/* Decorative floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 380px; height: 380px; background: rgba(139, 92, 246, .35); top: 10%; left: -100px; animation: floatY 8s ease-in-out infinite; }
.blob-2 { width: 320px; height: 320px; background: rgba(236, 72, 153, .3); bottom: 20%; right: -80px; animation: floatY 10s ease-in-out infinite reverse; }
.blob-3 { width: 280px; height: 280px; background: rgba(249, 115, 22, .25); top: 50%; left: 40%; animation: floatY 12s ease-in-out infinite; }

/* === Page Hero (inner pages) === */
.page-hero {
  position: relative;
  padding: 100px 0 90px;
  /* Dark base — the parallax image on top is what gives this section colour now. */
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: -2;
  will-change: transform;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Soft dark wash for text legibility, no aggressive color tint. */
  background: linear-gradient(180deg, rgba(15, 10, 31, .25) 0%, rgba(15, 10, 31, .55) 100%);
  z-index: -1;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.page-hero p { color: rgba(255, 255, 255, .9); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }
.page-hero .slide-eyebrow { margin-bottom: 24px; }

/* === Breadcrumb === */
.breadcrumb-nav {
  background: var(--gray-50);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .9rem;
  color: var(--gray-600);
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gray-700);
}
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .separator { color: var(--gray-400); }
.breadcrumb .current {
  color: var(--pink-dark);
  font-weight: 600;
}

/* === Stats === */
.stats {
  position: relative;
  padding: 70px 0;
  background: var(--white);
  z-index: 2;
  margin-top: -60px;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat {
  text-align: center;
  padding: 24px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
  margin-bottom: 10px;
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--gray-600);
  font-size: .95rem;
  letter-spacing: .04em;
}

/* === Split (image + content) === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-reverse .split-img { order: 2; }
.split-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform .8s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(236, 72, 153, .2) 100%);
  pointer-events: none;
}
.float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.float-badge .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.float-badge strong { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--dark); }
.float-badge span { font-size: .85rem; color: var(--gray-600); }

.split h2 { margin-bottom: 20px; }
.split p { margin-bottom: 14px; font-size: 1.05rem; }
.split .btn { margin-top: 24px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.feature-grid .feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}
.feature-grid .feature svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 3px;
}

/* === Services Grid === */
.services-bg {
  background: var(--gradient-soft);
  position: relative;
}
.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, .15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, .15), transparent 40%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
  margin: -2px;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 31, .4) 100%);
}
.service-card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  z-index: 1;
  box-shadow: 0 6px 20px rgba(236, 72, 153, .25);
}
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}
.service-card p {
  color: var(--gray-600);
  margin-bottom: 18px;
  flex: 1;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--purple);
  transition: var(--transition);
}
.service-card-cta:hover { color: var(--pink); gap: 12px; }

/* === Services page split blocks === */
.service-block {
  padding: 80px 0;
  position: relative;
}
.service-block:nth-child(even) { background: var(--gradient-soft); }
.service-block .split { align-items: center; }
.service-block-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, .1);
  color: var(--purple-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-block ul.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.service-block ul.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  font-size: .98rem;
}
.service-block ul.features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gradient-warm);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* === Parallax CTA Band === */
.parallax-band {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark wash for legibility + very subtle warm color hint at the top.
     Image is now the star — text still readable thanks to the dark base. */
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .18) 0%, rgba(236, 72, 153, .12) 100%),
    linear-gradient(180deg, rgba(15, 10, 31, .55) 0%, rgba(15, 10, 31, .7) 100%);
}
.parallax-band > .container { position: relative; z-index: 1; }
.parallax-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.parallax-band p {
  color: rgba(255, 255, 255, .92);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 32px;
}
.parallax-band .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .parallax-band { background-attachment: scroll; padding: 90px 0; }
}

/* === Gallery === */
.gallery-section { background: var(--gray-50); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--gray-700);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active {
  background: var(--gradient-purple-pink);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(139, 92, 246, .35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Uniform 4:3 aspect across every tile keeps the gallery aligned. */
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  /* Tiles are <button> elements — reset native button box, stretch to grid cell. */
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 31, .85) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption h4 { color: var(--white); margin-bottom: 4px; font-size: 1.05rem; }
.gallery-caption span { font-size: .8rem; color: rgba(255, 255, 255, .8); display: inline-flex; align-items: center; gap: 4px; }
.gallery-item.is-hidden { display: none; }

/* === Process Timeline === */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  opacity: .25;
  border-radius: 2px;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
  z-index: 1;
}
.process-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(139, 92, 246, .2);
  box-shadow: 0 12px 28px rgba(139, 92, 246, .18);
  margin: 0 auto 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}
.process-step:hover .process-circle {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(236, 72, 153, .3);
  border-color: var(--pink);
}
.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 6px;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-text);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .08em;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.3rem; }
.process-step p { color: var(--gray-600); font-size: .95rem; }

/* === Testimonials === */
.testimonials {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, .35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, .35), transparent 50%);
}
.testimonials > .container { position: relative; z-index: 1; }
.testimonials .section-eyebrow { color: var(--pink-light); }
.testimonials h2 { color: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
}
.testimonial:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(236, 72, 153, .4);
  transform: translateY(-6px);
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-quote::before {
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0;
  position: relative;
  top: 18px;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}
.testimonial-author strong { display: block; color: var(--white); font-family: 'Fraunces', serif; font-size: 1.05rem; }
.testimonial-author span { font-size: .82rem; color: rgba(255, 255, 255, .65); }

/* === Event Types Chips === */
.event-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.event-chips .chip {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  cursor: default;
}
.event-chips .chip:hover {
  background: var(--gradient-purple-pink);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, .35);
}

/* === FAQ === */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--pink); box-shadow: var(--shadow-card); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 26px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}
.faq-q svg { transition: transform .3s ease; color: var(--purple); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 26px 22px;
}
.faq-a p { color: var(--gray-600); line-height: 1.7; }

/* === Values === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  color: var(--white);
  margin-bottom: 22px;
  animation: gradientShift 8s ease infinite;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.value-card p { color: var(--gray-600); font-size: .95rem; }

/* === Team === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.team-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(236, 72, 153, .35));
  opacity: 0;
  transition: opacity .4s ease;
}
.team-card:hover .team-img::after { opacity: 1; }
.team-body { padding: 24px; }
.team-body h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-role {
  color: var(--pink-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.team-body p { font-size: .92rem; color: var(--gray-600); }

/* === Differentiators === */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: var(--transition);
}
.diff-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.diff-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.diff-card p { color: var(--gray-600); font-size: .94rem; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-form h2 { margin-bottom: 8px; font-size: 1.8rem; }
.contact-form > p { color: var(--gray-600); margin-bottom: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  font-size: .95rem;
  transition: var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea {
  border-color: var(--pink-dark);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.full { grid-column: 1 / -1; }
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.form-success { text-align: center; padding: 30px 20px; }
.form-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 18px;
}
.form-success h3 { margin-bottom: 10px; font-size: 1.6rem; }

.info-cards { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.info-card:hover {
  transform: translateX(6px);
  border-color: var(--pink);
  box-shadow: var(--shadow-card);
}
.info-card .info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.info-card strong { display: block; font-family: 'Poppins', sans-serif; font-size: .82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.info-card a, .info-card span { color: var(--dark); font-weight: 600; font-size: 1rem; }
.info-card a:hover { color: var(--pink); }

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* === Why choose us strip === */
.why-strip {
  background: var(--dark);
  padding: 50px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-rainbow);
  opacity: .25;
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.why-strip-item {
  text-align: center;
}
.why-strip-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--yellow), var(--pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.why-strip-label { color: rgba(255, 255, 255, .85); font-size: .95rem; }

/* === CTA Banner (in footer.php) === */
.cta-banner {
  padding: 80px 0;
  background: var(--white);
}
.cta-card {
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: gradientShift 10s ease infinite;
  border-radius: var(--radius-2xl);
  padding: 60px 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(139, 92, 246, .35);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 70%);
  border-radius: 50%;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-card h2 { color: var(--white); margin-bottom: 12px; font-size: 2.4rem; position: relative; }
.cta-card p { color: rgba(255, 255, 255, .92); font-size: 1.05rem; position: relative; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cta-actions .btn {
  justify-content: center;
}
.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  font-weight: 700;
}
.btn-white:hover { background: var(--gray-50); color: var(--purple-dark); transform: translateY(-2px); }

/* === Footer === */
.site-footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 22px; }
/* Footer sits on a dark background; the silver line-art logo shows cleanly.
   Slightly larger here since the footer has more vertical room. */
.logo-light .logo-img { height: 76px; }
.footer-tagline { color: rgba(255, 255, 255, .65); font-size: .95rem; line-height: 1.7; margin-bottom: 22px; }
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-pill {
  padding: 5px 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-full);
  font-size: .78rem;
  color: var(--yellow);
  font-weight: 600;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, .65); font-size: .95rem; }
.footer-col a:hover { color: var(--pink-light); padding-left: 4px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
}
.contact-list li svg { color: var(--pink-light); flex-shrink: 0; }
.contact-list a { color: rgba(255, 255, 255, .7); }
.contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255, 255, 255, .55); font-size: .88rem; margin: 0; }
.footer-credit { color: rgba(255, 255, 255, .55); font-size: .88rem; }
.dev-credit { color: var(--pink-light); font-weight: 600; }
.dev-credit:hover { color: #fff; }
/* Socials now live under the "Get in Touch" hours line in the footer column. */
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.socials a:hover {
  background: var(--gradient-warm);
  transform: translateY(-3px);
  color: var(--white);
}

/* === Scroll to top === */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(236, 72, 153, .4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 40;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px) scale(1.05); }

/* === Lightbox === */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 31, .96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 200;
}
.lb-overlay.open { opacity: 1; pointer-events: auto; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lb-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-close:hover { background: var(--pink); transform: rotate(90deg); }

/* === 404 === */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, .25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, .25), transparent 50%);
}
.error-content { text-align: center; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.error-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 16rem);
  line-height: 1;
  background: var(--gradient-rainbow);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.error-content h1 { font-size: 2.4rem; margin-bottom: 14px; }
.error-content p { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 30px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .slide-bg, .parallax-band, .page-hero::before, [data-parallax] {
    transform: none !important;
    background-attachment: scroll !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ==============================================================
   Responsive Breakpoints
   ============================================================== */

@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .services-grid, .testimonial-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-grid.preview { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .team-grid, .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .cta-card::before { display: none; }

  .header-cta { display: none; }
  .mobile-toggle, .mobile-close { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    background: linear-gradient(160deg, #ffffff 0%, #FAF5FF 50%, #FCE7F3 100%);
    z-index: 80;
    padding: 90px 30px 40px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: 0 16px 50px rgba(15, 10, 31, .25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-rainbow);
    background-size: 200% 100%;
    animation: gradientShift 6s ease infinite;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 420px;
  }
  .main-nav ul li { width: 100%; }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(236, 72, 153, .35);
  }
  .mobile-close:hover { transform: rotate(90deg); }
  .main-nav .mobile-cta,
  .mobile-cta {
    display: inline-flex;
    margin-top: 18px;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    padding: 16px 28px;
    font-size: 1rem;
  }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid, .gallery-grid.preview { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .feature-grid, .service-block ul.features, .form-grid { grid-template-columns: 1fr; }

  .arrow-prev, .arrow-next { display: none; }
  .hero, .hero-slider { min-height: 80vh; }
  .slide-content { padding: 60px 18px; }
  .slide-content h1 { font-size: 2.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-card { padding: 30px 24px; }
  .cta-card h2 { font-size: 1.8rem; }

  .parallax-band { padding: 80px 0; }
  .parallax-band h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 50px 0; }
  .services-grid, .testimonial-grid, .diff-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: .9rem; }
  .slide-actions { flex-direction: column; align-items: stretch; }
  .slide-actions .btn { justify-content: center; }
  .logo-img { height: 48px; }
  .stat-num { font-size: 2.2rem; }
}
