@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
  --void: #07060d;
  --night: #120e1e;
  --deep: #1a1530;
  --violet: #6d3fc4;
  --violet-glow: #8b5cf6;
  --violet-soft: #a78bfa;
  --gold: #d4a854;
  --gold-bright: #f0d078;
  --gold-glow: rgba(212, 168, 84, 0.4);
  --bone: #f0e8da;
  --bone-dim: #a89888;
  --line: rgba(212, 168, 84, 0.12);
  --glass: rgba(18, 14, 30, 0.75);
  --glass-border: rgba(212, 168, 84, 0.15);

  --font-display: 'Playfair Display', serif;
  --font-ceremonial: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--bone);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section { position: relative; padding: 100px 0; }

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

/* ─── Preloader ─── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

.preloader-symbol {
  font-size: 3rem;
  animation: preloaderPulse 1.4s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.preloader-ring {
  width: 50px; height: 50px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ─── Custom Cursor ─── */

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, transform 0.15s;
    mix-blend-mode: difference;
  }

  .cursor-ring.hovering {
    width: 60px; height: 60px;
    border-color: var(--violet-glow);
    background: rgba(139, 92, 246, 0.08);
  }

  a, button, .service-card, .testimonial-card { cursor: none; }
}

/* ─── Background Effects ─── */

#noise-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb:nth-child(1) {
  width: 500px; height: 500px;
  background: var(--violet);
  top: -10%; left: -10%;
  animation-delay: 0s;
}

.ambient-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -10%; right: -10%;
  animation-delay: -7s;
  opacity: 0.1;
}

.ambient-orb:nth-child(3) {
  width: 350px; height: 350px;
  background: var(--violet-glow);
  top: 50%; left: 50%;
  animation-delay: -14s;
  opacity: 0.08;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.9); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ─── Header / Nav ─── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
  mix-blend-mode: initial;
}

.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: var(--font-ceremonial);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
  text-decoration: none;
}

.logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-icon .moon-body {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  transform-origin: center;
  animation: logoMoon 6s ease-in-out infinite;
}

@keyframes logoMoon {
  0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(8deg); }
}

.logo-icon .moon-star {
  fill: var(--gold-bright);
  transform-origin: center;
  animation: logoStar 3s ease-in-out infinite;
}

@keyframes logoStar {
  0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.logo-icon .logo-glow {
  fill: none;
  stroke: var(--violet-glow);
  stroke-width: 0.8;
  opacity: 0;
  transform-origin: center;
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

.logo-icon .logo-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.4;
  stroke-dasharray: 2 4;
  opacity: 0.3;
  transform-origin: center;
  animation: logoRing 12s linear infinite;
}

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

.logo-text {
  position: relative;
  background: linear-gradient(135deg, var(--bone) 0%, var(--gold-bright) 50%, var(--bone) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 4s ease-in-out infinite;
}

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

.logo-text-dot {
  display: inline-block;
  color: var(--violet-glow);
  -webkit-text-fill-color: var(--violet-glow);
  animation: logoDot 2s ease-in-out infinite;
}

@keyframes logoDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.logo:hover .logo-icon .moon-body {
  animation-duration: 3s;
}

.logo:hover .logo-icon .logo-glow {
  animation-duration: 2s;
  opacity: 0.8;
}

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  position: relative;
  padding: 4px 0;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--violet-glow));
  transition: width 0.4s var(--ease-out-expo);
  border-radius: 99px;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1001;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 99px;
  overflow: hidden;
  font-family: var(--font-ceremonial);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.lang-switch a {
  padding: 6px 12px;
  color: var(--bone-dim);
  transition: all 0.3s;
}

.lang-switch a.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--void);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--bone);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
  border-radius: 99px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 13, 0.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-nav-overlay.open { opacity: 1; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--night);
    border-left: 1px solid var(--line);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links a::before { display: none; }

  .nav-links a::after {
    content: '→';
    margin-left: auto;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
  }

  .nav-links a:hover::after { opacity: 1; transform: translateX(0); }

  .nav-toggle { display: flex; }
  .mobile-nav-overlay { display: block; }
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 99px;
  font-family: var(--font-ceremonial);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--void);
}

.btn-primary::before {
  background: linear-gradient(135deg, var(--gold-bright), #fff5d0);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -8px var(--gold-glow);
}

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

.btn-primary .btn-label,
.btn-whatsapp .btn-label { position: relative; z-index: 1; }

.btn-whatsapp {
  background: linear-gradient(135deg, #1a3a2a, #2a5a40);
  color: #e0f5e8;
  border: 1px solid rgba(70, 180, 120, 0.3);
}

.btn-whatsapp::before {
  background: linear-gradient(135deg, #2a5a40, #3a7a50);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.3);
}

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

.btn svg { width: 16px; height: 16px; position: relative; z-index: 1; }

.btn-submit { width: 100%; }
.btn-submit[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── Section Heading ─── */

.section-head {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-ceremonial);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--bone-dim);
  font-size: 1rem;
  max-width: 560px;
}

.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }
.section-head.centered .section-eyebrow::before { display: none; }

/* ─── Hero ─── */

.hero {
  position: relative;
  padding: 130px 0 50px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-symbol {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16rem, 38vw, 38rem);
  color: rgba(212, 168, 84, 0.035);
  pointer-events: none;
  line-height: 1;
  user-select: none;
  font-family: var(--font-display);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.hero-symbol {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0;
  animation: heroFade 0.8s var(--ease-out-expo) 0.1s forwards;
}

.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.58rem;
  color: var(--bone-dim);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  font-family: var(--font-ceremonial);
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade 0.7s var(--ease-out-expo) 0.2s forwards;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.9s var(--ease-out-expo) 0.35s forwards;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--violet-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px auto;
  max-width: 220px;
  opacity: 0;
  animation: heroFade 0.7s var(--ease-out-expo) 0.5s forwards;
}

.hero-divider span:first-child,
.hero-divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-divider span:nth-child(2) {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 0.88rem;
  color: var(--bone-dim);
  max-width: 460px;
  line-height: 1.6;
  margin: 0 auto 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade 0.7s var(--ease-out-expo) 0.65s forwards;
}

@media (max-width: 600px) {
  .hero-tagline { font-size: 0.82rem; }
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade 0.7s var(--ease-out-expo) 0.8s forwards;
}

@media (max-width: 600px) {
  .hero-actions .btn { padding: 11px 20px; font-size: 0.6rem; }
}

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

/* ─── Split Text Reveal ─── */

.split-line {
  overflow: hidden;
  display: block;
}

.split-line .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(20deg);
  animation: splitReveal 0.8s var(--ease-out-expo) forwards;
}

@keyframes splitReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ─── Reveal on Scroll ─── */

.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

.reveal-skew {
  opacity: 0;
  transform: translateY(40px) skewY(2deg);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-skew.is-visible { opacity: 1; transform: translateY(0) skewY(0); }

/* ─── About ─── */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-visual {
  position: relative;
}

.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--deep), var(--void));
  border: 1px solid var(--line);
  transition: border-color 0.6s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-portrait::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--gold), var(--violet-glow), var(--gold), transparent);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
  animation: borderGlow 4s ease-in-out infinite;
}

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

.about-portrait:hover::before { opacity: 1; }
.about-portrait:hover { border-color: transparent; }

.about-candle {
  width: 70%;
  max-width: 200px;
}

.candle-svg { width: 100%; height: auto; }

.flame-group { transform-origin: 100px 130px; }

.flame-outer {
  animation: flameFlicker 0.8s ease-in-out infinite alternate;
  transform-origin: 100px 130px;
}

.flame-core {
  animation: flameFlicker 0.6s ease-in-out infinite alternate 0.1s;
  transform-origin: 100px 130px;
}

.flame-inner {
  animation: flameFlicker 0.5s ease-in-out infinite alternate 0.2s;
  transform-origin: 100px 130px;
}

.flame-tip {
  animation: flameFlicker 0.7s ease-in-out infinite alternate 0.05s;
  transform-origin: 100px 130px;
}

@keyframes flameFlicker {
  0% { transform: scaleX(1) scaleY(1) translate(0, 0); }
  25% { transform: scaleX(0.92) scaleY(1.04) translate(-2px, -1px); }
  50% { transform: scaleX(1.05) scaleY(0.97) translate(1px, 0); }
  75% { transform: scaleX(0.97) scaleY(1.02) translate(2px, -1px); }
  100% { transform: scaleX(1.03) scaleY(0.98) translate(-1px, 0); }
}

.candle-aura {
  animation: auraPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes auraPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.candle-body {
  animation: candleGlow 4s ease-in-out infinite;
}

@keyframes candleGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.wax-drip {
  animation: waxDrip 8s ease-in-out infinite;
}

@keyframes waxDrip {
  0%, 30% { transform: translateY(0) scaleY(1); opacity: 0.6; }
  50% { transform: translateY(4px) scaleY(1.1); opacity: 0.8; }
  70% { transform: translateY(2px) scaleY(1); opacity: 0.6; }
  100% { transform: translateY(0) scaleY(1); opacity: 0.6; }
}

.about-floating-card {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
}

.about-floating-card .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-floating-card .label {
  font-size: 0.65rem;
  color: var(--bone-dim);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .about-floating-card { bottom: 0; right: 0; padding: 14px 18px; }
  .about-floating-card .num { font-size: 1.2rem; }
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--bone-dim);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--bone-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Services ─── */

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

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

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

.service-card {
  background: linear-gradient(160deg, rgba(26, 21, 48, 0.6), rgba(7, 6, 13, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  transform: translateY(0);
  perspective: 800px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

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

.service-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -20px rgba(139, 92, 246, 0.2);
}

.service-card .icon-wrap {
  width: 50px; height: 50px;
  margin-bottom: 28px;
  color: var(--gold);
  position: relative;
}

.service-card .icon-wrap svg { width: 100%; height: 100%; }

.service-card .icon-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 84, 0.1), transparent);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--bone-dim);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 24px;
  line-height: 1.65;
}

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-note {
  font-size: 0.72rem;
  color: var(--bone-dim);
  font-style: italic;
}

.service-link {
  font-family: var(--font-ceremonial);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.service-link svg {
  width: 12px; height: 12px;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-link:hover svg { transform: translateX(5px); }

.featured-tag {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-ceremonial);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--gold-glow);
  border-radius: 99px;
  background: rgba(212, 168, 84, 0.06);
}

/* ─── Process ─── */

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 40px;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--violet), transparent);
  }
}

@media (min-width: 901px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), var(--gold), var(--violet), transparent);
  }
}

.process-step {
  position: relative;
  padding: 40px 28px;
  text-align: center;
}

@media (min-width: 901px) {
  .process-step { padding-top: 60px; }
}

@media (max-width: 900px) {
  .process-step {
    text-align: left;
    padding: 28px 0 28px 24px;
    border-left: 1px solid var(--line);
    margin-left: -1px;
  }
}

.process-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

@media (min-width: 901px) {
  .process-num { margin-top: 8px; }
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--bone-dim);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .process-step h3 { font-size: 1.1rem; }
  .process-step p { font-size: 0.85rem; }
}

/* ─── Testimonials ─── */

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 920px) {
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(26, 21, 48, 0.4), rgba(7, 6, 13, 0.6));
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -16px rgba(139, 92, 246, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--line);
  pointer-events: none;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--bone);
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-name {
  font-family: var(--font-ceremonial);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Order Form ─── */

.order-section {
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.order-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

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

.order-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: linear-gradient(160deg, rgba(26, 21, 48, 0.4), rgba(7, 6, 13, 0.6));
  position: sticky;
  top: 100px;
}

@media (max-width: 920px) {
  .order-info-card { position: static; }
}

.order-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.order-info-card > p {
  color: var(--bone-dim);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--bone-dim);
  margin-bottom: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s;
}

.contact-line:hover { border-color: var(--glass-border); }

.contact-line svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.order-form {
  display: grid;
  gap: 20px;
}

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

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field {
  position: relative;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.field:focus-within label { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(240, 232, 218, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease-out-expo);
  outline: none;
}

.field select option {
  background: #1a1525;
  color: var(--bone);
  padding: 12px;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 168, 84, 0.03);
  box-shadow: 0 0 0 3px rgba(212, 168, 84, 0.06);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(168, 152, 136, 0.4); }

.field .input-highlight {
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet-glow));
  border-radius: 99px;
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.field:focus-within .input-highlight { width: 100%; }

.form-privacy {
  font-size: 0.74rem;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-privacy svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.form-feedback {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(70, 180, 120, 0.4);
  background: rgba(70, 180, 120, 0.08);
  color: #d0f0d8;
  font-size: 0.88rem;
  animation: fadeSlideUp 0.5s var(--ease-out-expo) forwards;
}

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

.form-feedback.show { display: block; }

.form-feedback.error {
  border-color: rgba(180, 70, 70, 0.5);
  background: rgba(180, 70, 70, 0.08);
  color: #f0d0d0;
}

/* ─── Footer ─── */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

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

.footer-logo {
  font-family: var(--font-ceremonial);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline { color: var(--bone-dim); font-size: 0.9rem; max-width: 280px; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-ceremonial);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--bone-dim);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-social { display: flex; gap: 12px; margin-top: 10px; }

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
}

.footer-social a:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -8px var(--gold-glow);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--bone-dim);
}

/* ─── Floating WhatsApp ─── */

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  animation: waFloat 3.5s ease-in-out infinite;
  transition: transform 0.4s var(--ease-out-expo);
}

.wa-float:hover { transform: scale(1.1); }

.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes waFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
  50% { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ─── Utility ─── */

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

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

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

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* ─── Social Links in Header ─── */
.header-socials {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}

.header-socials a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-out-expo);
}

.header-socials a:hover {
  transform: translateY(-2px);
}

.header-socials a[href*="wa.me"]:hover {
  border-color: #25D366;
  color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.header-socials a[href*="instagram"]:hover {
  border-color: #E1306C;
  color: #E1306C;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
}

.header-socials a[href*="facebook"]:hover {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.header-socials a[href*="tiktok"]:hover {
  border-color: #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.header-socials a:hover svg {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .header-socials {
    display: none;
  }
}

/* ─── Share Button in Header ─── */
.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  padding: 0;
}

.share-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.4s var(--ease-out-expo);
}

.share-btn:hover {
  border-color: var(--violet-soft);
  color: var(--violet-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.share-btn:hover svg {
  transform: scale(1.1);
}

/* ─── Share Modal ─── */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.share-modal.open {
  opacity: 1;
  visibility: visible;
}

.share-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 13, 0.75);
  backdrop-filter: blur(8px);
}

.share-modal-content {
  background: rgba(18, 14, 30, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 440px;
  width: 90%;
  padding: 32px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 168, 84, 0.05);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
  text-align: center;
}

.share-modal.open .share-modal-content {
  transform: scale(1) translateY(0);
}

.share-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--bone-dim);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}

.share-modal-close:hover {
  color: var(--bone);
}

.share-modal-header h3 {
  font-family: var(--font-ceremonial);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 6px;
}

.share-modal-header p {
  font-size: 0.8rem;
  color: var(--bone-dim);
  margin-bottom: 24px;
}

/* QR Section */
.share-qr-section {
  margin-bottom: 24px;
}

.qr-container {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.qr-container img {
  width: 150px;
  height: 150px;
  display: block;
}

.qr-label {
  font-size: 0.72rem;
  color: var(--bone-dim);
  letter-spacing: 0.05em;
}

/* Copy Link Section */
.share-link-section {
  margin-bottom: 24px;
}

.copy-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 99px;
  overflow: hidden;
  padding: 4px;
  transition: border-color 0.3s;
}

.copy-input-wrap:focus-within {
  border-color: var(--violet-soft);
}

.copy-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 16px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  min-width: 0;
}

.copy-input-wrap button {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--void);
  border: none;
  border-radius: 99px;
  padding: 8px 18px;
  font-family: var(--font-ceremonial);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.copy-input-wrap button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.copy-check-icon {
  width: 12px;
  height: 12px;
  display: none;
}

.copy-input-wrap button.copied {
  background: #25D366;
  color: white;
}

.copy-input-wrap button.copied .copy-text {
  display: none;
}

.copy-input-wrap button.copied .copy-check-icon {
  display: block;
}

/* Social Grid Section */
.share-social-section .section-title {
  display: block;
  font-family: var(--font-ceremonial);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bone-dim);
  font-size: 0.68rem;
  transition: all 0.3s;
}

.share-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}

.share-icon svg {
  width: 18px;
  height: 18px;
}

.share-item:hover {
  color: var(--bone);
  transform: translateY(-3px);
}

.share-item.wa:hover .share-icon {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.share-item.fb:hover .share-icon {
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.share-item.ig:hover .share-icon {
  border-color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
  color: #E1306C;
}

.share-item.tt:hover .share-icon {
  border-color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
}

/* ─── Share Toast ─── */
.share-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 3000;
  background: rgba(18, 14, 30, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--gold);
  border-radius: 99px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--bone);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ─── Admin Access Button ─── */
.admin-access-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0.45;
  flex-shrink: 0;
}

.admin-access-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.4s var(--ease-out-expo);
}

.admin-access-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 84, 0.2);
}

.admin-access-btn:hover svg {
  transform: scale(1.1);
}

