@font-face {
  font-family: "Abuget";
  src: url("assets/Abuget.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #e699c5;
  --pink-strong: #de69a0;
  --wine: #5e1e29;
  --wine-dark: #42141d;
  --white: #ffffff;
  --text: #594c52;
  --ink: #21181d;
  --bg: #fff6fa;
  --glass: rgba(255, 255, 255, 0.34);
  --glass-strong: rgba(255, 255, 255, 0.64);
  --line: rgba(230, 153, 197, 0.24);
  --shadow: 0 24px 70px rgba(98, 47, 66, 0.11);
  --shadow-hover: 0 34px 90px rgba(230, 153, 197, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  display: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 246, 250, 0.88), rgba(255, 246, 250, 0.96)),
    url("assets/motion-blur-bg.png") center / cover no-repeat;
}

body::after {
  content: "";
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(230, 153, 197, 0.28), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.5), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(230, 153, 197, 0.2), transparent 34%);
}

a {
  color: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 11vw, 150px) 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(22px, 4vw, 56px);
  color: var(--white);
  transition: padding 280ms ease, color 280ms ease, background 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 42px rgba(94, 56, 68, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 136px;
  transition: transform 240ms ease, filter 280ms ease;
}

.brand img {
  transition: filter 280ms ease;
}

.brand:hover {
  transform: scale(1.035);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  filter: drop-shadow(0 8px 18px rgba(230, 153, 197, 0.18));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1380%) hue-rotate(288deg) brightness(89%) contrast(88%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: transform 220ms ease, color 220ms ease, opacity 220ms ease;
}

.site-nav a:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-cta {
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: var(--pink-strong);
  box-shadow: 0 12px 30px rgba(230, 153, 197, 0.22);
}

.nav-cta:hover {
  color: var(--white) !important;
  box-shadow: 0 16px 38px rgba(230, 153, 197, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 108px 24px 70px;
  color: var(--white);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/motion-blur-bg.png") center / cover no-repeat;
  transform: scale(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(40, 19, 31, 0.22), rgba(70, 34, 52, 0.38) 58%, rgba(255, 246, 250, 0.92));
}

.hero-content {
  display: grid;
  place-items: center;
  width: min(1500px, 100%);
}

.hero-content picture {
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-art {
  place-self: center;
  width: min(96vw, 1380px);
  max-height: min(62vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 30px 58px rgba(39, 18, 31, 0.2));
}

.hero-kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.hero h1,
.theme-title h2,
.quote-banner h2,
.section-heading h2,
.program-info h2,
.final-cta h2,
.final-cta h2 + p {
  font-family: "Abuget", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  font-size: clamp(108px, 18vw, 240px);
  line-height: 0.78;
  text-shadow: 0 28px 55px rgba(39, 18, 31, 0.18);
}

.date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-copy {
  max-width: 560px;
  margin: 28px auto 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.button-primary {
  color: var(--white);
  background: var(--pink-strong);
  box-shadow: 0 22px 54px rgba(230, 153, 197, 0.34);
  animation: pulseGlow 3s ease-in-out infinite;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.button-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 72px rgba(230, 153, 197, 0.48);
  filter: brightness(1.04);
}

.button-large {
  min-height: 64px;
  padding: 0 36px;
  font-size: 14px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 32px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 50%;
  background: var(--white);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.theme-section,
.experience-section,
.program-section {
  background: var(--white);
}

.theme-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.theme-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(110px, 15vw, 210px);
  line-height: 0.62;
}

.theme-label {
  width: fit-content;
  margin: 0 0 clamp(8px, 1.4vw, 18px) clamp(118px, 9vw, 170px);
}

.theme-text {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 28px;
  align-items: center;
}

.theme-text p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.button-theme {
  min-height: 64px;
  margin-top: 28px;
  padding: 0 36px;
  font-size: 14px;
}

.extraordinary-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 84vw, 820px);
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) 0;
  color: var(--white);
  text-align: center;
}

.extraordinary-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/amigas-extraordinario-foto.jpg") center 24% / cover no-repeat;
}

.extraordinary-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(94, 30, 41, 0.32), rgba(94, 30, 41, 0.42)),
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.extraordinary-content {
  max-width: 1040px;
}

.extraordinary-section h2 {
  margin: 0;
  font-family: "Abuget", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(76px, 12vw, 158px);
  font-weight: 400;
  line-height: 0.78;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.theme-line {
  position: relative;
  width: 2px;
  min-height: 260px;
  background: linear-gradient(180deg, transparent, var(--pink-strong), transparent);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.program-info h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(88px, 12vw, 150px);
  line-height: 0.68;
  letter-spacing: 0;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.glass-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 34px 28px;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 153, 197, 0.28);
  box-shadow: var(--shadow-hover);
}

.glass-card h3,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}

.glass-card p {
  margin: 0;
  line-height: 1.6;
}

.quote-banner {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 24px;
  color: var(--white);
  background: url("assets/motion-blur-bg.png") center / cover no-repeat;
  text-align: center;
}

.quote-banner::before {
  content: none;
}

.banner-content {
  max-width: 900px;
}

.quote-banner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(96px, 13vw, 180px);
  line-height: 0.72;
}

.invite-copy {
  max-width: 760px;
  margin: 26px auto 34px;
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.invite-copy p {
  margin: 0 auto 16px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.invite-copy p:last-child {
  margin-bottom: 0;
}

.invite-copy strong {
  font-size: clamp(19px, 2vw, 25px);
}

.program-grid-single {
  display: block;
}

.program-grid-single .program-info {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.timeline div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 20px;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: left;
}

.timeline span {
  grid-row: span 2;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
}

.timeline strong {
  color: var(--ink);
  font-size: 18px;
}

.timeline p {
  margin: 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(60px, 8vw, 96px);
}

.image-space {
  margin: 0;
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.image-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-space:first-child img {
  object-position: center 24%;
}

.image-space:hover img {
  transform: scale(1.055);
}

.image-space:nth-child(2) img {
  object-fit: cover;
  padding: 0;
  background: none;
}

.why-date-section {
  background: url("assets/motion-blur-bg.png") center / cover no-repeat;
  text-align: center;
}

.why-date-content {
  max-width: 880px;
}

.why-date-content h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-family: "Abuget", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(88px, 12vw, 150px);
  line-height: 0.68;
}

.why-date-content p {
  margin: 0 auto 18px;
  color: var(--white);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.62;
}

.why-date-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 821px) {
  .why-date-content p:nth-of-type(1),
  .why-date-content p:nth-of-type(2) {
    display: inline;
    margin: 0;
  }

  .why-date-content p:nth-of-type(1)::after {
    content: " ";
  }

  .why-date-content p:nth-of-type(2)::after {
    content: "";
    display: block;
    margin-bottom: 18px;
  }
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(118px, 14vw, 180px) 0;
  text-align: center;
  background: var(--white);
}

.cta-content {
  max-width: 880px;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.7;
}

.final-cta span {
  display: block;
  margin-top: 18px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.button-final {
  min-height: 52px;
  padding: 0 28px;
  font-size: 13px;
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  margin-bottom: 22px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  line-height: 1.65;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-map {
  margin-top: 34px;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 26px;
  filter: saturate(0.88) contrast(0.95);
}

.copyright {
  width: min(1120px, calc(100% - 48px));
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease var(--delay, 0ms), transform 760ms ease var(--delay, 0ms);
}

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

.fade-left {
  transform: translateX(-34px);
}

.fade-right {
  transform: translateX(34px);
}

.zoom-soft {
  transform: scale(0.96);
}

.fade-left.is-visible,
.fade-right.is-visible {
  transform: translateX(0);
}

.zoom-soft.is-visible {
  transform: scale(1);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 22px 54px rgba(230, 153, 197, 0.34); }
  50% { box-shadow: 0 26px 78px rgba(230, 153, 197, 0.54); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(22px); }
}

@media (max-width: 1040px) {
  .experience-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .theme-text {
    max-width: 740px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .theme-section {
    scroll-margin-top: 86px;
  }

  .site-header {
    padding: 18px;
  }

  .brand {
    width: 120px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 76px;
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    color: var(--wine);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero h1 {
    font-size: clamp(104px, 31vw, 160px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .experience-cards,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: auto;
  }

  .theme-text {
    grid-template-columns: 1fr;
  }

  .theme-title {
    text-align: center;
  }

  .theme-label {
    margin-right: auto;
    margin-left: auto;
  }

  .theme-line {
    width: 100%;
    min-height: 2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink-strong), transparent);
  }

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

  .footer-map iframe {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-art {
    width: min(88vw, 390px);
    max-width: 100%;
    max-height: 42vh;
    margin-left: 0;
    transform: none;
  }

  .extraordinary-bg {
    background-position: center 24%;
  }

  .hero h1 {
    font-size: 104px;
  }

  .date-pill {
    width: 100%;
    padding: 0 18px;
    font-size: 11px;
  }

  .button-large {
    width: 100%;
    padding-inline: 20px;
  }

  .button-theme,
  .quote-banner .button-large,
  .button-final {
    width: auto;
    min-height: 52px;
    padding: 0 28px;
    font-size: 13px;
  }

  .theme-title h2,
  .quote-banner h2 {
    font-size: 88px;
  }

  .section-heading h2,
  .program-info h2,
  .why-date-content h2,
  .final-cta h2 {
    font-size: 84px;
  }

  .final-cta p {
    font-size: 74px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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