:root {
  --primary: #2d1b5f;
  --primary-light: #6d3582;
  --accent: #d8d7e8;
  --bg: #fffae8;
  --bg-dark: #ebe4d6;
  --white: #ffffff;
  --text: #2d1b5f;
  --text-soft: #6b5570;
  --shadow: 0 10px 40px rgba(45, 27, 95, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 27, 95, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

.paper-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.32 0 0 0 0 0.13 0 0 0 0 0.39 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.32 0 0 0 0 0.13 0 0 0 0 0.39 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.55rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h1 em {
  font-style: normal;
  background: linear-gradient(120deg, transparent 60%, var(--accent) 60%);
  padding: 0 8px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.lede {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 20px 24px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.last-spots {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--accent);
  border: 2px dashed var(--primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.image-placeholder:hover {
  transform: rotate(0deg) scale(1.02);
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(81, 34, 100, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(81, 34, 100, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.about {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.about .big-text {
  font-size: 1.25rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-soft);
}

.about strong {
  color: var(--primary);
}

.benefits {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-soft);
}

.includes {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.includes-list {
  list-style: none;
  max-width: 680px;
  margin: 40px auto 0;
}

.includes-list li {
  padding: 18px 24px;
  margin-bottom: 12px;
  background: var(--accent);
  border-radius: 14px;
  position: relative;
  padding-left: 56px;
}

.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing {
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
}

.pricing-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

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

.price-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--white);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.price-card.featured .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.price-card.featured .btn-primary:hover {
  background: var(--accent);
}

.ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.price-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 1rem 0;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 6px;
}

.price-card p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  min-height: 48px;
}

.sold-out-banner {
  display: none;
  background: #b91c1c;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 14px 14px 0 0;
  margin: -40px -32px 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sold-out-banner.visible {
  display: block;
}

.btn-primary:disabled {
  background: #9ca3af;
  color: #fff;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-primary:disabled:hover {
  background: #9ca3af;
  transform: none;
  box-shadow: none;
}

.price-card.featured .btn-primary:disabled {
  background: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
}

.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  display: block;
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.gallery {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.slider-track {
  overflow: hidden;
  flex: 1;
}

.slider-inner {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}

.slide {
  flex: 0 0 calc((100% - 24px) / 3);
}

.slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: var(--primary-light);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
}

.instagram {
  padding: 48px 0;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
}

.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ig-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #e1306c;
}

.ig-label {
  font-size: 1rem;
}

.ig-handle {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 500;
}

@media (max-width: 500px) {
  .instagram-link {
    flex-direction: column;
    gap: 6px;
    padding: 16px 28px;
  }
}

.footer {
  padding: 40px 0;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  position: relative;
  z-index: 2;
}

.footer p {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer .small {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
  font-weight: 400;
}

.footer-legal {
  margin-top: 16px;
}

.vop-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vop-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-mail {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-mail:hover {
  color: #fff;
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 48px 40px 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-soft);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--accent);
}

.vop-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.vop-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0.6rem;
}

/* ── Tablet (≤820px) ── */
@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-meta {
    gap: 18px;
  }
  .about,
  .benefits,
  .includes,
  .gallery,
  .pricing {
    padding: 56px 0;
  }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 40px;
  }
  .about,
  .benefits,
  .includes,
  .gallery,
  .pricing {
    padding: 40px 0;
  }
  .pricing {
    padding-bottom: 56px;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-meta {
    gap: 12px;
    padding: 16px 18px;
  }
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .price {
    font-size: 2.2rem;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .benefit-grid {
    gap: 20px;
  }
  /* Gallery: 1 image full width on mobile */
  .slide {
    flex: 0 0 100%;
  }
  .slider-inner {
    gap: 0;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .modal-box {
    padding: 40px 20px 28px;
  }
}

/* ── Cookie Consent Bar ─────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(45, 27, 95, 0.13);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid var(--accent);
}

.cookie-bar.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid var(--primary);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.btn-cookie-accept:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--primary);
}

.btn-cookie-reject:hover {
  background: var(--accent);
}

@media (max-width: 540px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .btn-cookie {
    width: 100%;
    text-align: center;
  }
}