/* ============================================================
   FRANCI'S STYLE — Design System
   Palette: Deep Plum + Royal Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@100;300;400;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --purple-deepest: #0d0510;
  --purple-deep:    #1a0a2e;
  --purple-mid:     #2d1155;
  --purple-rich:    #4a1e8a;
  --purple-vivid:   #7b2fd4;
  --purple-light:   #b47dff;
  --purple-glow:    rgba(123,47,212,0.35);

  --gold-deep:      #7a5c00;
  --gold-rich:      #c8960c;
  --gold-bright:    #f5c518;
  --gold-pale:      #fde899;
  --gold-glow:      rgba(245,197,24,0.4);

  --white:          #fff;
  --off-white:      #f8f3ff;
  --text-muted:     #b8a0d8;
  --text-dim:       #7a6a96;

  --card-bg:        rgba(45,17,85,0.6);
  --card-border:    rgba(245,197,24,0.18);
  --glass:          rgba(26,10,46,0.72);

  --nav-h:          76px;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Cormorant Garamond', Georgia, serif;
  --font-ui:        'Josefin Sans', sans-serif;

  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);

  --shadow-gold:    0 0 40px rgba(245,197,24,0.25), 0 0 80px rgba(245,197,24,0.1);
  --shadow-purple:  0 0 40px rgba(123,47,212,0.4), 0 0 80px rgba(123,47,212,0.2);
  --shadow-card:    0 24px 64px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--purple-deepest);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease-smooth), width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: screen;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.38s var(--ease-smooth);
}
body:hover .cursor { opacity: 1; }

img, video { max-width: 100%; display: block; }

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

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ─── Grain overlay ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-rich); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 1200px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 60px;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled .nav-inner {
  background: rgba(13,5,16,0.92);
  border-color: rgba(245,197,24,0.25);
  box-shadow: 0 12px 60px rgba(0,0,0,0.7), var(--shadow-gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-shadow: 0 0 20px var(--gold-glow);
  flex-shrink: 0;
}

.nav-logo-3d {
  width: 42px; height: 42px;
  position: relative;
  transform-style: preserve-3d;
  animation: logoSpin 12s linear infinite;
}

@keyframes logoSpin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 30px;
  position: relative;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  background: rgba(245,197,24,0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-glow);
}

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-bright) 60%, #ffe580 100%);
  color: var(--purple-deepest);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35), 0 0 0 1px rgba(255,255,255,0.2) inset;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s;
}

.nav-cta:hover::before { left: 150%; }
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(245,197,24,0.55), 0 0 0 1px rgba(255,255,255,0.25) inset;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile dock */
.mobile-dock {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8999;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 40px;
  padding: 10px 20px;
  gap: 24px;
  align-items: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: none;
}

.dock-item svg { width: 20px; height: 20px; }
.dock-item:hover, .dock-item.active { color: var(--gold-bright); }

.dock-cta {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  color: var(--purple-deepest);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  cursor: none;
  text-decoration: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx,50%) var(--ry,50%), rgba(255,255,255,0.3) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn:active::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-bright) 60%, #ffe580 100%);
  color: var(--purple-deepest);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.8rem;
  box-shadow: 0 6px 30px rgba(245,197,24,0.4), 0 0 0 1px rgba(255,255,255,0.2) inset;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 50px rgba(245,197,24,0.6), 0 0 0 1px rgba(255,255,255,0.3) inset;
}

.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid rgba(245,197,24,0.5);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(245,197,24,0.08);
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.2);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 6vw 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

/* Background orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(123,47,212,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero::after {
  content: none; /* grain is on body */
}

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

.hero-bg-orb2 {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 40px;
  padding: 8px 18px 8px 12px;
  margin-bottom: 28px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 40%, var(--gold-bright) 70%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.9s 0.1s var(--ease-out) both;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeSlideUp 1s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s 0.3s var(--ease-out) both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeSlideUp 1s 0.45s var(--ease-out) both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: 0 0 30px var(--gold-glow);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ─── 3D SCISSORS OBJECT ─── */
.hero-3d-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.scene-3d {
  width: 340px; height: 340px;
  position: relative;
  animation: heroFloat 3.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

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

.shadow-ellipse {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 30px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowBreath 3.5s ease-in-out infinite;
  filter: blur(8px);
}

@keyframes shadowBreath {
  0%,100% { transform: translateX(-50%) scaleX(1) scaleY(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scaleX(0.7) scaleY(0.6); opacity: 0.3; }
}

/* SVG 3D scissors */
.scissors-3d {
  width: 100%; height: 100%;
  animation: heroSpin 14s linear infinite;
  filter:
    drop-shadow(0 0 30px rgba(245,197,24,0.6))
    drop-shadow(0 0 60px rgba(123,47,212,0.4))
    drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

@keyframes heroSpin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section {
  padding: 100px 6vw;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}
.section-divider::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.divider-gem {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--purple-deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.4s;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-card), 0 0 40px rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--purple-rich), var(--purple-vivid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(123,47,212,0.4);
  transition: transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold-pale);
}

.service-card p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  border-top: 1px solid rgba(245,197,24,0.15);
  padding-top: 16px;
  margin-top: auto;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery { background: var(--purple-deepest); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: none;
  background: var(--purple-mid);
}

.gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 7 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 1 / 5; grid-row: 3 / 4; }
.gallery-item:nth-child(6) { grid-column: 5 / 9; grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 9 / 13; grid-row: 3 / 4; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-smooth);
  position: relative;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,5,16,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-pale);
}

/* Gallery placeholder images */
.gallery-item:nth-child(1) .gallery-placeholder { background: linear-gradient(135deg, #2d1155 0%, #7b2fd4 50%, #4a1e8a 100%); }
.gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(135deg, #1a0a2e 0%, #4a1e8a 100%); }
.gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(135deg, #2d1155 0%, #c8960c 100%); }
.gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(135deg, #4a1e8a 0%, #1a0a2e 60%, #7a5c00 100%); }
.gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(135deg, #1a0a2e 0%, #7b2fd4 100%); }
.gallery-item:nth-child(6) .gallery-placeholder { background: linear-gradient(135deg, #2d1155 0%, #f5c518 100%); }
.gallery-item:nth-child(7) .gallery-placeholder { background: linear-gradient(135deg, #4a1e8a 0%, #2d1155 100%); }

.gallery-icon { font-size: 2.5rem; margin-bottom: 8px; opacity: 0.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--purple-deep);
  overflow: hidden;
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 -6vw;
  padding: 0 6vw;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 16px;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 380px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px;
  scroll-snap-align: start;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  cursor: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px var(--gold-glow);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-rich), var(--purple-vivid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-pale);
  border: 2px solid rgba(245,197,24,0.3);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-pale);
}

.testimonial-role {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--purple-deepest); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  color: var(--gold-pale);
  margin-bottom: 24px;
}

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

.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple-rich), var(--purple-vivid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(123,47,212,0.35);
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.contact-detail-text span {
  color: var(--text-muted);
  font-size: 1rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row .day {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(13,5,16,0.6);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,197,24,0.5);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.08);
}

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

.form-group select option { background: var(--purple-deep); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--purple-deep); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  pointer-events: none;
}

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

.step-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--purple-deepest);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(245,197,24,0.1), 0 8px 24px rgba(245,197,24,0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 0 12px rgba(245,197,24,0.15), 0 12px 32px rgba(245,197,24,0.5);
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--purple-deepest); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(123,47,212,0.2);
}

.team-photo {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.team-card:nth-child(1) .team-photo { background: linear-gradient(160deg, #2d1155, #7b2fd4); }
.team-card:nth-child(2) .team-photo { background: linear-gradient(160deg, #1a0a2e, #4a1e8a); }
.team-card:nth-child(3) .team-photo { background: linear-gradient(160deg, #4a1e8a, #c8960c); }
.team-card:nth-child(4) .team-photo { background: linear-gradient(160deg, #2d1155, #1a0a2e); }

.team-photo-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.team-card:hover .team-photo-shimmer { transform: translateX(100%); }

.team-info {
  padding: 24px;
  border-top: 1px solid rgba(245,197,24,0.1);
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================================
   PARTNERS / LOGOS
   ============================================================ */
.partners {
  background: var(--purple-deep);
  padding: 60px 6vw;
}

.partners-inner { max-width: 1100px; margin: 0 auto; }

.partners-track {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}

.partner-logo:hover {
  color: var(--gold-bright);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 0 20px rgba(245,197,24,0.1);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-rich) 0%, var(--purple-mid) 40%, var(--gold-deep) 100%);
  padding: 100px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog { background: var(--purple-deepest); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.blog-card:nth-child(1) .blog-thumb { background: linear-gradient(135deg, #2d1155, #7b2fd4); }
.blog-card:nth-child(2) .blog-thumb { background: linear-gradient(135deg, #1a0a2e, #c8960c); }
.blog-card:nth-child(3) .blog-thumb { background: linear-gradient(135deg, #4a1e8a, #f5c518); }

.blog-content { padding: 28px; }

.blog-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
  display: block;
}

.blog-content h3 {
  font-size: 1.15rem;
  color: var(--gold-pale);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.blog-meta {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after { background: var(--purple-deep); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: none;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
}

.ba-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.ba-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--off-white);
}

.ba-card:nth-child(1) .ba-img:first-child { background: linear-gradient(135deg, #1a0a2e, #4a1e8a); }
.ba-card:nth-child(1) .ba-img:last-child  { background: linear-gradient(135deg, #4a1e8a, #f5c518); }
.ba-card:nth-child(2) .ba-img:first-child { background: linear-gradient(135deg, #2d1155, #1a0a2e); }
.ba-card:nth-child(2) .ba-img:last-child  { background: linear-gradient(135deg, #7b2fd4, #c8960c); }
.ba-card:nth-child(3) .ba-img:first-child { background: linear-gradient(135deg, #0d0510, #2d1155); }
.ba-card:nth-child(3) .ba-img:last-child  { background: linear-gradient(135deg, #4a1e8a, #7b2fd4); }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-glow);
}

.ba-divider::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: var(--gold-bright);
  color: var(--purple-deepest);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.ba-label {
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.ba-label h4 {
  font-size: 1rem;
  color: var(--gold-pale);
  margin-bottom: 4px;
}

.ba-label span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--purple-deepest);
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 80px 6vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  text-shadow: 0 0 20px var(--gold-glow);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(123,47,212,0.2);
  border: 1px solid rgba(123,47,212,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.social-btn:hover {
  background: rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.3s;
  font-weight: 300;
}

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

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(13,5,16,0.6);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.footer-newsletter input:focus {
  border-color: rgba(245,197,24,0.5);
}

.footer-newsletter-btn {
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  color: var(--purple-deepest);
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.25s var(--ease-spring);
}

.footer-newsletter-btn:hover { transform: scale(1.05); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

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

.footer-legal a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* Parallax bg */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
}

/* ============================================================
   PAGE SPECIFIC — About, Services, Gallery, Contact
   ============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 6vw 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,212,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  position: relative;
}

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  position: relative;
}

.breadcrumb a { color: var(--gold-bright); }
.breadcrumb span { margin: 0 8px; }

/* About page */
.about-story {
  background: var(--purple-deep);
}

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

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

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--purple-rich), var(--purple-vivid), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  color: var(--purple-deepest);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 8px 30px rgba(245,197,24,0.4);
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.about-content h2 {
  background: linear-gradient(135deg, #fff, var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-pale);
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-text span {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* ============================================================
   MAP placeholder
   ============================================================ */
.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d0510, #1a0a2e, #2d1155);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(245,197,24,0.15);
  margin-top: 32px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.map-pin {
  font-size: 2.5rem;
  animation: pinBounce 2s ease-in-out infinite;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--nav-h) + 60px); }
  .hero-content { order: 2; }
  .hero-3d-wrap { order: 1; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-dock { display: flex; }

  .hero { padding-bottom: 120px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }

  .steps-grid::before { display: none; }

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

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }

  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 70px 5vw; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.8rem; }
  .scene-3d { width: 220px; height: 220px; }
  .testimonial-card { flex: 0 0 300px; }
  .nav { width: calc(100% - 32px); }
}
