@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #101010;
  --black-soft: #171717;
  --panel: #222024;
  --panel-light: #2c2930;
  --white: #ffffff;
  --muted: #bbb6c2;
  --yellow: #ffbd00;
  --rose: #df6d7b;
  --line: rgba(255,255,255,.13);
  --max-width: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.04em;
}

h1 span, h2 span { color: var(--yellow); }

.site-header {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.brand-logo { width: 160px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 600;
}

.site-nav a { color: rgba(255,255,255,.8); }
.site-nav a:hover { color: var(--yellow); }

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--yellow);
  color: var(--yellow) !important;
}

.hero {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.1vw, 7.3rem);
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: var(--yellow);
  color: #0b0b0b;
}

.button-primary:hover { background: #ffd24a; }

.button-secondary { border-color: var(--line); }

.button-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* IMAGES */
.hero-media,
.design-image,
.preparation-image {
  overflow: hidden;
  border-radius: 28px;
}

/*
  El hero conserva la fotografía completa.
  No usamos object-fit: cover porque recorta los bordes.
*/
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
}

.celebration-image {
  height: 360px;
  overflow: hidden;
}

.celebration-image img,
.product-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-image img,
.preparation-image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  border-radius: 28px;
}

.product-image {
  height: 330px;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--black-soft);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.design-copy h2,
.preparation-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.centered-heading {
  max-width: 920px;
  margin: 0 auto 60px;
  text-align: center;
}

.celebration-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.celebration-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.celebration-content { padding: 28px; }

.card-label {
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.celebration-content h3 {
  margin: 18px 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.celebration-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.other-events {
  width: min(100%, var(--max-width));
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.other-events span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .88rem;
}

.design-section,
.preparation-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.design-copy > p,
.preparation-copy > p { color: var(--muted); }

.design-example {
  margin-top: 34px;
  padding: 28px;
  background: var(--yellow);
  color: #111;
  border-radius: 22px;
}

.design-example span,
.design-example strong,
.design-example small { display: block; }

.design-example span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.design-example strong {
  margin: 10px 0;
  font-size: 1.5rem;
}

.products-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card { min-height: 330px; }

.product-card-featured .product-image {
  outline: 1px solid rgba(223,109,123,.65);
}

.experience-flow {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.experience-flow article {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.experience-flow span {
  color: var(--yellow);
  font-weight: 800;
}

.experience-flow h3 { margin: 62px 0 12px; }

.experience-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

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

.idea-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, rgba(255,189,0,.09), transparent 55%), var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.idea-title {
  margin-bottom: auto;
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.idea-card strong { font-size: 1.25rem; }

.idea-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.check-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.gallery-item-large { grid-row: span 2; }

.packages-grid {
  width: min(100%, var(--max-width));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  min-height: 300px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.package-card-featured {
  border-color: var(--yellow);
  transform: translateY(-10px);
}

.package-number {
  color: var(--yellow);
  font-weight: 800;
}

.package-card h3 { margin: 88px 0 14px; }

.package-card p {
  margin: 0;
  color: var(--muted);
}

.faq-section { border-top: 1px solid var(--line); }

.faq-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  padding: 24px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 18px 0 0;
  color: var(--muted);
}

.final-cta {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto 80px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--yellow);
  color: #0d0d0d;
  border-radius: 30px;
}

.final-cta .eyebrow { color: #0d0d0d; }

.final-cta h2 {
  max-width: 930px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 4vw, 5rem);
}

.final-cta p {
  max-width: 740px;
  margin-bottom: 0;
}

.final-cta .button-primary {
  flex: 0 0 auto;
  background: #0d0d0d;
  color: var(--white);
}

.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-logo { width: 150px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a:hover { color: var(--yellow); }

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .82rem;
}

@media (max-width: 1100px) {
  .site-nav { display: none; }

  .hero,
  .section-intro,
  .design-section,
  .preparation-section {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .hero-media { order: -1; }

  .hero-image {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .celebration-grid,
  .products-grid,
  .ideas-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-flow { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-item-large { grid-row: span 1; }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header { min-height: 74px; }

  .brand-logo { width: 130px; }

  .hero { padding: 36px 0 72px; }

  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }

  .hero-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .section { padding: 84px 0; }

  .section-dark {
    padding-left: 16px;
    padding-right: 16px;
  }

  .celebration-grid,
  .products-grid,
  .experience-flow,
  .ideas-grid,
  .gallery-grid,
  .packages-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .celebration-image,
  .product-image {
    height: 360px;
  }

  .gallery-grid { grid-auto-rows: auto; }

  .gallery-item { min-height: 360px; }

  .package-card-featured { transform: none; }

  .final-cta {
    margin-bottom: 50px;
    padding: 38px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer { grid-template-columns: 1fr; }
}
