/* ============================================
   HORA LOCA ZARAGOZA - Hoja de estilos principal
   ============================================ */

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img,video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Variables de marca --- */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fff7fa;
  --color-pink-neon: #ff4d8f;
  --color-pink-neon-dark: #e63d7d;
  --color-pink-pastel: #fbd0da;
  --color-pink-flower: #f4a6c0;
  --color-text: #1a1a1a;
  --color-text-soft: #5a5a5a;
  --color-gold: #c9a96e;
  --color-border: #f0d8e0;

  --font-script: 'Sacramento', 'Great Vibes', cursive;
  --font-body: 'Questrial', 'Inter', system-ui, sans-serif;

  --shadow-soft: 0 10px 30px rgba(255, 77, 143, 0.08);
  --shadow-card: 0 20px 50px rgba(255, 77, 143, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1200px;
  --header-h: 80px;
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; font-weight: 400; }
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-text);
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  max-width: 640px;
  margin: 0 auto 60px;
}

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

/* --- Decoraciones de fondo (acuarela / flores) --- */
.deco-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.55;
}
.deco-blob.top-left  { top: -60px;  left: -60px;  width: 320px; }
.deco-blob.top-right { top: -40px;  right: -80px; width: 360px; }
.deco-blob.bottom-right { bottom: -60px; right: -60px; width: 320px; }
.deco-blob.bottom-left  { bottom: -40px; left: -60px;  width: 280px; }

.container,
section > * { position: relative; z-index: 1; }

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--color-pink-neon);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 77, 143, 0.35);
}
.btn-primary:hover {
  background: var(--color-pink-neon-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 77, 143, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn-ghost:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 4px 20px rgba(255, 77, 143, 0.06);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 56px; width: auto; }
.nav-logo .brand-text {
  font-family: var(--font-script);
  font-size: 1.4rem;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-pink-neon);
  transition: width .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-pink-neon); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-text);
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text .pre {
  display: inline-block;
  background: var(--color-pink-pastel);
  color: var(--color-pink-neon-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 16px;
}
.hero-text h1 .highlight { color: var(--color-pink-neon); }
.hero-text .lead {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 50px rgba(255, 77, 143, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-14px) rotate(2deg); }
}

/* Petal background SVG */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.65;
}
.hero::before {
  top: -80px; left: -80px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><radialGradient id='g' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23ffd4e0' stop-opacity='0.9'/><stop offset='100%25' stop-color='%23ffd4e0' stop-opacity='0'/></radialGradient></defs><circle cx='100' cy='100' r='100' fill='url(%23g)'/></svg>");
}
.hero::after {
  bottom: -120px; right: -120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><radialGradient id='g2' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23f4a6c0' stop-opacity='0.7'/><stop offset='100%25' stop-color='%23f4a6c0' stop-opacity='0'/></radialGradient></defs><circle cx='100' cy='100' r='100' fill='url(%23g2)'/></svg>");
}

/* Hero variant for inner pages */
.page-hero {
  min-height: 50vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--color-text-soft);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.55;
}
.page-hero::before {
  top: -60px; left: -100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><radialGradient id='g3' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23ffd4e0' stop-opacity='0.9'/><stop offset='100%25' stop-color='%23ffd4e0' stop-opacity='0'/></radialGradient></defs><circle cx='100' cy='100' r='100' fill='url(%23g3)'/></svg>");
}
.page-hero::after {
  bottom: -80px; right: -120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><radialGradient id='g4' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='%23f4a6c0' stop-opacity='0.7'/><stop offset='100%25' stop-color='%23f4a6c0' stop-opacity='0'/></radialGradient></defs><circle cx='100' cy='100' r='100' fill='url(%23g4)'/></svg>");
}

/* --- Feature cards (Por qué nosotros) --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-pink-pastel);
  box-shadow: var(--shadow-card);
}
.feature-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--color-pink-pastel);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-pink-neon);
  font-size: 1.7rem;
  font-weight: 700;
}
.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { color: var(--color-text-soft); font-size: 0.95rem; }

/* --- Services grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card .img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--color-pink-pastel);
  overflow: hidden;
  position: relative;
}
.service-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .body { padding: 24px; flex: 1; }
.service-card h3 {
  font-family: var(--font-script);
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.service-card p { color: var(--color-text-soft); font-size: 0.95rem; }

/* Placeholder pattern */
.placeholder {
  background: linear-gradient(135deg, var(--color-pink-pastel), var(--color-pink-flower));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-script);
  font-size: 1.8rem;
  text-align: center;
  padding: 20px;
}

/* --- Packs / Pricing --- */
.packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.pack-card {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.pack-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-pink-pastel);
  box-shadow: var(--shadow-card);
}
.pack-card.featured {
  border-color: var(--color-pink-neon);
  box-shadow: 0 20px 50px rgba(255, 77, 143, 0.2);
  transform: scale(1.03);
}
.pack-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pack-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-pink-neon);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pack-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-pink-neon);
}
.pack-card .price {
  font-family: var(--font-script);
  font-size: 3.5rem;
  line-height: 1;
  margin: 20px 0;
  color: var(--color-text);
}
.pack-card .price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-soft);
  display: block;
  margin-top: 6px;
}
.pack-card ul { margin: 24px 0; flex: 1; }
.pack-card li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}
.pack-card li:last-child { border-bottom: 0; }
.pack-card li.included::before { content: "✓ "; color: var(--color-pink-neon); font-weight: 700; }
.pack-card li.excluded { color: #b8b8b8; text-decoration: line-through; }
.pack-card .btn { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-filter {
  padding: 10px 22px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all .25s ease;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-pink-neon);
  border-color: var(--color-pink-neon);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-pink-pastel);
  aspect-ratio: 1 / 1;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:nth-child(3n) { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(5n) { aspect-ratio: 4 / 3; }
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 77, 143, 0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  transition: opacity .3s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img,
.lightbox video {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--color-pink-neon); }

/* --- Video hero (gallery) --- */
.video-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0;
  margin-top: var(--header-h);
}
.video-hero video,
.video-hero .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-hero .video-placeholder {
  background: linear-gradient(135deg, var(--color-pink-flower), var(--color-pink-neon));
  display: grid; place-items: center;
}
.video-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.video-hero .overlay h1 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5rem);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* --- Testimonials --- */
.testimonials {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial::before {
  content: "";
  font-family: var(--font-script);
  font-size: 6rem;
  color: var(--color-pink-pastel);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--color-text-soft);
  margin-bottom: 20px;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--color-pink-neon);
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

/* --- Sobre nosotros / split content --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split .split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-pink-pastel);
}
.split .split-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.split p { margin-bottom: 16px; color: var(--color-text-soft); }
.split.reverse > div:first-child { order: 2; }

/* --- Form --- */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info { font-size: 1.05rem; }
.contact-info h3 {
  font-family: var(--font-script);
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}
.contact-info .icon-circle {
  width: 44px; height: 44px;
  background: var(--color-pink-pastel);
  color: var(--color-pink-neon);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

form { background: #fff; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-pink-neon);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- WhatsApp float --- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .3s ease;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%     { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* --- Final CTA --- */
.cta-band {
  background: linear-gradient(135deg, var(--color-pink-neon), var(--color-pink-flower));
  color: #fff;
  text-align: center;
  padding: 90px 0;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 14px;
}
.cta-band p { margin-bottom: 32px; opacity: 0.95; font-size: 1.1rem; }
.cta-band .btn {
  background: #fff;
  color: var(--color-pink-neon);
}
.cta-band .btn:hover {
  background: var(--color-text);
  color: #fff;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-text);
  color: #ddd;
  padding: 60px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  margin-bottom: 18px;
  font-size: 1rem;
}
.site-footer a:hover { color: var(--color-pink-neon); }
.site-footer ul li { padding: 6px 0; font-size: 0.92rem; }
.site-footer .footer-logo {
  display: flex; gap: 12px; align-items: center; margin-bottom: 16px;
}
.site-footer .footer-logo img { height: 56px; }
.site-footer .footer-logo .script { color: #fff; font-size: 1.5rem; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--color-pink-neon); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--color-pink-neon);
}
.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 24px 0 10px;
}
.legal-content p,
.legal-content li {
  color: var(--color-text-soft);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 24px;
  padding-left: 0;
}
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--color-text); }
.legal-content a {
  color: var(--color-pink-neon);
  text-decoration: underline;
}
.legal-content .placeholder-tag {
  background: #fff3d6;
  color: #8a6d00;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95rem;
}
.legal-content table th,
.legal-content table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content table th {
  background: var(--color-bg-soft);
  font-weight: 700;
  color: var(--color-text);
}

/* Footer legal links */
.footer-legal-links {
  margin-top: 14px;
  font-size: 0.85rem;
}
.footer-legal-links a {
  color: #aaa;
  margin-right: 14px;
}
.footer-legal-links a:hover { color: var(--color-pink-neon); }

/* Form checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-pink-neon);
}
.form-check label { cursor: pointer; line-height: 1.45; }
.form-check a { color: var(--color-pink-neon); text-decoration: underline; }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-inner,
  .split,
  .form-wrap,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > div:first-child { order: 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 24px); padding-bottom: 60px; }
  .hero-visual { order: -1; }
  .hero-logo { max-width: 320px; }
  .hero-text { text-align: center; }
  .hero-text .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .pack-card.featured { transform: none; }
  .pack-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }
  .nav-logo img { height: 46px; }
  .nav-logo .brand-text { display: none; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: flex; }
  section { padding: 60px 0; }
  .cta-band { padding: 60px 20px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 1.6rem; }
}
