/* ===== VARIABLES ===== */
:root {
  --pink: #f472b6;
  --pink-light: #fce7f3;
  --pink-dark: #db2777;
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --blue: #38bdf8;
  --blue-dark: #0284c7;
  --yellow: #fbbf24;
  --cream: #fffbf5;
  --dark: #1e1b2e;
  --gray: #6b7280;
  --radius: 20px;
  --radius-lg: 28px;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes floatR {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(244,114,182,.4); }
  50% { box-shadow: 0 4px 30px rgba(244,114,182,.7); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scaleIn {
  0% { transform: scale(.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes popKernel {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-18px) scale(1.3); opacity: 1; }
  100% { transform: translateY(-30px) scale(0.8); opacity: 0; }
}
@keyframes drip {
  0% { transform: translateY(-8px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@keyframes brushStroke {
  0% { stroke-dashoffset: 60; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 60; }
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(219,39,119,.08);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}
nav.scrolled {
  padding: 8px 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink-dark), var(--purple));
  transition: width .3s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--pink-dark); }
.nav-link:hover::after { width: 100%; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 15px rgba(219,39,119,.3);
  transition: transform .2s, box-shadow .2s;
}
.nav-phone:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px rgba(219,39,119,.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff0f9, #f0e6ff 30%, #e0f2fe 60%, #fef9c3);
  background-size: 300% 300%;
  animation: gradShift 12s ease infinite;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
  pointer-events: none;
}
.hero-blob-1 {
  top: -80px; right: -60px;
  width: 420px; height: 420px;
  background: var(--pink);
  animation: blob 8s ease-in-out infinite, float 6s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  background: var(--blue);
  animation: blob 10s ease-in-out infinite reverse, floatR 7s ease-in-out infinite;
}
.hero-blob-3 {
  top: 40%; left: 50%;
  width: 280px; height: 280px;
  background: var(--purple);
  opacity: .15;
  animation: blob 12s ease-in-out infinite;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: .18;
}
.hero-deco-1 { top: 15%; right: 6%; animation: float 5s ease-in-out infinite; }
.hero-deco-2 { top: 28%; left: 4%; animation: floatR 7s ease-in-out infinite; }
.hero-deco-3 { bottom: 18%; right: 10%; animation: float 6s ease-in-out infinite 1s; }
.hero-deco-4 { bottom: 28%; left: 8%; animation: floatR 5.5s ease-in-out infinite .5s; }
.hero-deco svg { width: 80px; height: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  color: var(--pink-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 2px solid rgba(219,39,119,.15);
  box-shadow: 0 4px 20px rgba(244,114,182,.15);
  animation: scaleIn .6s ease forwards, pulse 3s ease-in-out infinite .6s;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: scaleIn .8s ease forwards;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--pink-dark), var(--purple-dark), var(--blue-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-sub {
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  animation: scaleIn 1s ease forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: scaleIn 1.2s ease forwards;
}
.hero-photos {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
  animation: scaleIn 1.4s ease forwards;
}
.hero-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
}
.hero-photo:nth-child(even) { transform: translateY(12px); }
.hero-photo:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 14px 40px rgba(219,39,119,.25);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(219,39,119,.35);
  transition: transform .3s, box-shadow .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(219,39,119,.45);
}
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(37,211,102,.35);
  transition: transform .3s, box-shadow .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(37,211,102,.45);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #fff;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  position: relative;
  z-index: 2;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-icon.pk { background: var(--pink-light); }
.trust-icon.bl { background: #dbeafe; }
.trust-icon.yl { background: #fef3c7; }
.trust-icon.pr { background: #f3e8ff; }

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 60px 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.ps-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  aspect-ratio: 3/4;
}
.ps-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ps-item:hover img { transform: scale(1.08); }
.ps-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,27,46,.4) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.ps-item:hover::after { opacity: 1; }
.ps-item:nth-child(2) { margin-top: 40px; }
.ps-label {
  position: absolute;
  bottom: 16px; right: 16px; left: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
}
.ps-item:hover .ps-label { opacity: 1; transform: translateY(0); }

/* ===== SECTION TITLE ===== */
.stitle { text-align: center; padding: 20px 24px 10px; }
.stitle h2 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3rem);
}
.stitle h2 span {
  background: linear-gradient(135deg, var(--pink-dark), var(--purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stitle p { color: var(--gray); margin-top: 10px; font-size: 1.05rem; }
.tline {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--pink-dark), var(--purple), var(--blue));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===== SERVICES ===== */
.services { padding: 30px 20px 80px; max-width: 1100px; margin: 0 auto; }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.srv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  position: relative;
  border: 1px solid rgba(0,0,0,.04);
}
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-dark), var(--purple), var(--blue));
  opacity: 0;
  transition: opacity .3s;
}
.srv-card:hover::before { opacity: 1; }
.srv-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.srv-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.srv-card:hover .srv-img { transform: scale(1.08); }
.srv-emoji {
  font-size: 3.5rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), #f3e8ff, #dbeafe);
}
.srv-body { padding: 24px; }
.srv-body h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.srv-body p { font-size: .92rem; color: var(--gray); line-height: 1.65; }
.srv-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(219,39,119,.3);
}

/* ===== EVENTS ===== */
.events-section {
  background: linear-gradient(135deg, #fdf2f8, #f3e8ff, #eff6ff);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.events-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.chip {
  background: #fff;
  border: 2px solid var(--pink-light);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: all .3s;
  cursor: default;
}
.chip:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(219,39,119,.12);
  border-color: var(--pink);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
}
.how-step {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(219,39,119,.12);
}
.how-num {
  position: absolute;
  top: -16px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(219,39,119,.3);
}
.how-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.how-step p {
  font-size: .95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section { padding: 80px 20px; max-width: 1100px; margin: 0 auto; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  position: relative;
  cursor: pointer;
}
.gal-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  z-index: 2;
}
.gal-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gal-item:hover img { transform: scale(1.1); }
.gal-item.tall img { height: 360px; }
.gal-item.span2 { grid-column: span 2; }
.gal-item.span2 img { height: 280px; }
.gal-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,27,46,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov span { color: #fff; font-weight: 700; font-size: 1rem; }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(160deg, #1e1b2e, #2d1b4e 50%, #1e1b2e);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.contact-section .stitle h2 { color: #fff; }
.contact-section .stitle p { color: rgba(255,255,255,.6); }
.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
  backdrop-filter: blur(16px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  direction: rtl;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(219,39,119,.15);
}
.form-group select option { color: var(--dark); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-dark), var(--purple));
  color: #fff;
  border: none;
  padding: 17px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(219,39,119,.4);
  transition: transform .3s, box-shadow .3s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s;
}
.form-submit:hover::before { left: 100%; }
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(219,39,119,.5);
}
.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  background: rgba(37,211,102,.12);
  border-radius: var(--radius);
  border: 1px solid rgba(37,211,102,.25);
  color: #4ade80;
  font-weight: 700;
  font-size: 1.15rem;
}
.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .3s, box-shadow .3s;
}
.contact-btn:hover { transform: translateY(-3px) scale(1.03); }
.contact-btn.phone {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: 0 6px 25px rgba(2,132,199,.4);
}
.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 25px rgba(37,211,102,.4);
}

/* ===== FOOTER ===== */
footer {
  background: #0d0b15;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 36px 24px 28px;
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer p + p { margin-top: 6px; }
footer a { color: var(--pink); text-decoration: none; }

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,.5);
  text-decoration: none;
  z-index: 99;
  animation: bounce 2s infinite;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .25s; }
.stagger > *:nth-child(5) { transition-delay: .3s; }
.stagger > *:nth-child(6) { transition-delay: .35s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
  }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .ps-item:nth-child(3) { display: none; }
  .ps-item:nth-child(2) { margin-top: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .srv-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-item.span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .trust-bar { gap: 20px; }
  .trust-item { font-size: .85rem; }
  .hero-deco svg { width: 50px; height: 50px; }
  .hero-photos { gap: 12px; margin-top: 36px; }
  .hero-photo { width: 80px; height: 80px; border-width: 3px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 18px 60px; }
  .hero h1 { font-size: 2.4rem; }
  .nav-phone span { display: none; }
}
