:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --bg-card: #18182a;
  --fg: #f0f0f5;
  --fg-muted: #8888a0;
  --accent: #c864ff;
  --accent-glow: rgba(200, 100, 255, 0.3);
  --accent-2: #ff6b9d;
  --accent-3: #64d8ff;
  --gold: #ffd700;
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--fg);
}

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--fg);
}

.logo-accent {
  color: var(--accent);
}

.nav-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d18 100%);
}

.hero-noise {
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-glow);
  top: -100px;
  right: -100px;
  opacity: 0.4;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 157, 0.15);
  bottom: 0;
  left: -50px;
  opacity: 0.5;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px 80px;
  position: relative;
  z-index: 5;
}

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.text-glow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-surface);
  border: 1px solid rgba(200, 100, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 100, 255, 0.2);
}

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

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(200, 100, 255, 0.3);
  transform: translateY(-4px);
}

.service-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(200,100,255,0.08), rgba(255,107,157,0.05));
  border-color: rgba(200, 100, 255, 0.2);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 100px 0;
  background: var(--bg-surface);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text .section-title {
  margin-bottom: 20px;
}

.experience-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-marker {
  width: 4px;
  min-height: 48px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight strong {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.highlight p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.experience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  padding: 3px;
  animation: spin-slow 20s linear infinite;
}

.visual-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.visual-360 {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visual-card-inner p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 0 40px;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,100,255,0.2);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200,100,255,0.1), var(--bg-card));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-range {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  background: var(--bg-surface);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-location {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; letter-spacing: 0.5px; }
.btn-block { width: 100%; margin-top: 24px; padding: 16px 24px; font-size: 0.9rem; }

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

/* ===== HERO CTA ===== */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== PRICING FEATURES ===== */
.pricing-features {
  list-style: none;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== GALLERY PREVIEW (landing) ===== */
.gallery-preview {
  padding: 120px 0;
  background: var(--bg-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
}

.gallery-card-lg {
  grid-row: span 2;
}

.gallery-card-inner {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-card-inner:hover {
  border-color: rgba(200,100,255,0.3);
  transform: scale(1.02);
}

.gallery-icon {
  font-size: 2.4rem;
}

.gallery-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}

.gallery-card-inner-cta {
  background: linear-gradient(135deg, rgba(200,100,255,0.1), rgba(255,107,157,0.1));
  border-color: rgba(200,100,255,0.2) !important;
  gap: 20px;
}

.gallery-cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

/* ===== GALLERY PAGE ===== */
.gallery-page-hero {
  padding: 80px 0 60px;
  background: var(--bg);
}

.gallery-page-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.gallery-page-section {
  padding: 80px 0;
  background: var(--bg);
}

.gallery-category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.gallery-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gallery-cat-dot-purple { background: var(--accent); }
.gallery-cat-dot-pink { background: var(--accent-2); }
.gallery-cat-dot-blue { background: var(--accent-3); }
.gallery-cat-dot-gold { background: var(--gold); }

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gf-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.gf-card-lg { grid-column: span 2; }

.gf-inner {
  min-height: 180px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
  text-align: center;
}

.gf-inner:hover {
  border-color: rgba(200,100,255,0.25);
  transform: scale(1.02);
}

.gf-icon { font-size: 2rem; }

.gf-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}

.gf-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
  border-color: rgba(200,100,255,0.25);
  transform: translateY(-4px);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.video-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 2px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

.video-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.gallery-cta-section {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}

.gallery-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.gallery-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gallery-cta-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===== BOOKING PAGE ===== */
.book-page {
  min-height: 100vh;
  background: var(--bg);
}

.book-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.book-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.book-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.book-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.book-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

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

.form-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}

.form-input {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 100, 255, 0.1);
}

.form-input::placeholder { color: rgba(136, 136, 160, 0.5); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option { background: var(--bg-card); color: var(--fg); }

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

.package-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-option {
  cursor: pointer;
  display: block;
}

.package-option input[type="radio"] { display: none; }

.package-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.package-option input:checked + .package-card {
  border-color: var(--accent);
  background: rgba(200,100,255,0.08);
  box-shadow: 0 0 0 1px var(--accent);
}

.package-card:hover { border-color: rgba(200,100,255,0.35); }

.package-card-popular {
  border-color: rgba(200,100,255,0.25);
}

.package-popular-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 20px;
}

.package-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.package-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.package-card-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff6b6b;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 18px;
}

/* Aside */
.book-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

.aside-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
}

.aside-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg);
}

.aside-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: steps;
}

.aside-steps li {
  counter-increment: steps;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.aside-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
}

.aside-steps li strong {
  display: block;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.aside-card-contact {
  background: linear-gradient(135deg, rgba(200,100,255,0.08), rgba(255,107,157,0.05));
  border-color: rgba(200,100,255,0.15);
}

.aside-contact-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.aside-email {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 10px;
  word-break: break-all;
}

.aside-email:hover { text-decoration: underline; }

.aside-location {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Success overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.success-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,100,255,0.25);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.success-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

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

  .service-card-featured {
    grid-column: span 1;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-visual {
    order: -1;
  }

  .visual-card {
    width: 220px;
    height: 220px;
  }

  .visual-360 {
    font-size: 2.5rem;
  }

  .visual-card-inner p {
    font-size: 0.75rem;
    padding: 0 24px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav {
    padding: 20px 20px;
  }

  .hero-content {
    padding: 0 20px 60px;
  }
}

  .nav-links .nav-link { display: none; }

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

  .gallery-card-lg { grid-column: span 2; }

  .gallery-full-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gf-card-lg { grid-column: span 2; }

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .book-layout {
    grid-template-columns: 1fr;
  }

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

  .book-form {
    padding: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-cta .btn-lg {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

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

  .gallery-card-lg { grid-column: span 1; }

  .gallery-full-grid {
    grid-template-columns: 1fr;
  }

  .gf-card-lg { grid-column: span 1; }
}