:root {
  --green-deep: #5f7893;
  --green: #86a0b4;
  --green-soft: #c8d6e2;
  --green-pale: #e8eef4;
  --paper: #faf7f3;
  --paper-alt: #efede7;
  --gold: #bfa880;
  --ink: #697e98;
  --white: #fff;
  --shadow: 0 8px 18px rgba(105,132,158,.2);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "M2 DM",Arial,sans-serif;
  overflow-x: hidden;
}

body.page-locked {
  overflow: hidden;
}

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

button, a {
  font-family: inherit;
}

main {
  max-width: 100vw;
  overflow: hidden;
}

.save-date-entry {
  min-height: 100vh;
  background: #f7f4ef;
  color: #1f1a17;
  overflow: hidden;
}

.save-date-card {
  min-height: 100vh;
}

.save-date-link {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(430px,1fr);
  min-height: 100vh;
  color: inherit;
  text-decoration: none;
  background: #f9f8f5;
}

.save-date-photo {
  position: relative;
  overflow: hidden;
  background: #d8d2c7;
}

.save-date-photo img, .save-date-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.save-date-photo video {
  display: block;
}

.save-date-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 34px 40px;
  text-align: center;
  background: #fbfaf7;
}

.save-date-title {
  margin: 0 0 42px;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(4.2rem,11vw,9.2rem);
  font-weight: 300;
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: -.085em;
}

.save-date-title::first-line {
  letter-spacing: -.08em;
}

.save-date-kicker {
  margin: 0 0 26px;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(1.05rem,2vw,1.55rem);
  font-style: italic;
  letter-spacing: .35em;
}

.save-date-copy h1 {
  margin: 0;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(1.65rem,3vw,2.5rem);
  font-weight: 400;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .36em;
}

.save-date-copy h1 span {
  font-size: 1.1em;
  letter-spacing: 0;
  text-transform: none;
}

.save-date-date {
  margin: 28px 0 0;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(1.2rem,2.2vw,1.8rem);
  letter-spacing: .24em;
}

.save-date-note {
  margin: 26px 0 0;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(1rem,1.8vw,1.45rem);
  font-style: italic;
  letter-spacing: .35em;
}

.save-date-open {
  display: inline-flex;
  margin-top: 32px;
  padding: 10px 22px;
  border: 1px solid rgba(31,26,23,.22);
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .62;
  transition: opacity .25s ease,transform .25s ease;
}

.save-date-link:hover .save-date-open {
  opacity: 1;
  transform: translateY(-2px);
}

.preloader-natural {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  background: var(--green-soft);
}

.heart-loader-image {
  width: 52px;
  height: 52px;
  animation: assetHeartBeat 1.05s ease-in-out infinite;
}

@keyframes assetHeartBeat {
  0%, 100% {
    transform: scale(.82);
    opacity: .72;
  }
  45% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.heart-loader, .small-heart {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--gold);
  transform: rotate(45deg);
}

.heart-loader:before, .heart-loader:after, .small-heart:before, .small-heart:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
}

.heart-loader:before, .small-heart:before {
  left: -50%;
}

.heart-loader:after, .small-heart:after {
  top: -50%;
}

.heart-loader {
  animation: heartBeat 1.05s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    transform: rotate(45deg) scale(.82);
    opacity: .75;
  }
  45% {
    transform: rotate(45deg) scale(1.12);
    opacity: 1;
  }
}

.natural-pill, .white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.natural-pill {
  min-width: 145px;
  padding: 11px 25px;
  color: var(--green);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.white-pill {
  min-width: 220px;
  padding: 11px 24px;
  color: var(--green);
  background: #fff;
  box-shadow: 0 2px 7px rgba(105,132,158,.18);
  font-size: .83rem;
  font-weight: 700;
}

.natural-pill:hover, .white-pill:hover {
  color: var(--green-deep);
  transform: translateY(-2px);
}

.asset-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.botanical-corner {
  position: absolute;
  width: 260px;
  height: 260px;
  pointer-events: none;
}

.botanical-corner:before {
  content: "";
  position: absolute;
  width: 210px;
  height: 3px;
  left: 20px;
  top: 115px;
  background: var(--gold);
  transform: rotate(42deg);
  transform-origin: left;
}

.botanical-corner i, .botanical-crown i, .leaf-spray i {
  position: absolute;
  width: 48px;
  height: 22px;
  border-radius: 100% 0 100% 0;
  background: #afc1d0;
  transform: rotate(24deg);
}

.botanical-corner i:nth-child(1) {
  left: 32px;
  top: 64px;
}

.botanical-corner i:nth-child(2) {
  left: 62px;
  top: 94px;
  background: #92a9be;
  transform: rotate(75deg);
}

.botanical-corner i:nth-child(3) {
  left: 98px;
  top: 112px;
  background: #86a0b4;
  transform: rotate(20deg);
}

.botanical-corner i:nth-child(4) {
  left: 125px;
  top: 148px;
  background: #c8d6e2;
  transform: rotate(80deg);
}

.botanical-corner i:nth-child(5) {
  left: 162px;
  top: 166px;
  background: #86a0b4;
  transform: rotate(22deg);
}

.botanical-corner i:nth-child(6) {
  left: 190px;
  top: 197px;
  background: #92a9be;
  transform: rotate(82deg);
}

.botanical-corner-top {
  left: -45px;
  top: -25px;
  transform: rotate(12deg);
}

.botanical-corner-bottom {
  right: -35px;
  bottom: -15px;
  transform: rotate(190deg);
}

.botanical-crown {
  position: relative;
  width: 285px;
  height: 70px;
  margin: 10px auto;
  border-bottom: 1px solid rgba(255,255,255,.65);
}

.botanical-crown i:nth-child(1) {
  left: 40px;
  top: 32px;
}

.botanical-crown i:nth-child(2) {
  left: 78px;
  top: 12px;
  transform: rotate(70deg);
  background: #92a9be;
}

.botanical-crown i:nth-child(3) {
  left: 120px;
  top: 24px;
  background: #86a0b4;
}

.botanical-crown i:nth-child(4) {
  left: 164px;
  top: 10px;
  transform: rotate(70deg);
  background: #d6e1eb;
}

.botanical-crown i:nth-child(5) {
  left: 205px;
  top: 32px;
  background: #7897ae;
}

.botanical-crown-bottom {
  transform: rotate(180deg);
}

.photo-cover {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #263643;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #263643;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.8s ease-in-out,transform 7s ease-out;
  backface-visibility: hidden;
  will-change: opacity,transform;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.02);
}

.hero-slide.is-entering {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.photo-cover-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,rgba(31,44,53,.58),rgba(31,44,53,.7));
}

.cover-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.cover-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 65px;
  font-size: 1.25rem;
  letter-spacing: .08em;
}

.cover-date span {
  width: 135px;
  height: 1px;
  background: #fff;
}

.cover-names {
  margin: 0;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(3.4rem,8vw,6.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cover-names b {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--green-soft);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.quote-marks {
  max-width: 870px;
  margin: 45px auto 0;
  font-size: clamp(1.2rem,2.2vw,1.75rem);
  line-height: 1.55;
}

.quote-marks img {
  display: block;
  width: 46px;
  height: 42px;
  margin: 5px auto;
  object-fit: contain;
}

.flecha-continuar {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(82px,18vh,150px);
  width: 50px;
  height: 50px;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

.flecha-continuar-animada {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  animation: flechaOriginal 1.55s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

@keyframes flechaOriginal {
  0% {
    opacity: 0;
    transform: translateY(-9px);
  }
  25% {
    opacity: 1;
  }
  65% {
    opacity: 1;
    transform: translateY(3px);
  }
  100% {
    opacity: 0;
    transform: translateY(11px);
  }
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -70px;
  height: 135px;
  border-radius: 50% 50% 0 0/80% 80% 0 0;
  background: var(--paper);
}

.hero-foliage-top {
  width: 210px;
  left: -18px;
  top: -35px;
}

.hero-foliage-bottom {
  width: 300px;
  right: -75px;
  bottom: 10px;
  transform: rotate(8deg);
}

.organic-section {
  position: relative;
  padding: 90px 0;
  background: var(--paper);
}

.countdown-zone {
  min-height: 570px;
  padding-top: 40px;
  background: linear-gradient(168deg,var(--green) 0 16%,var(--paper-alt) 16.2% 25%,var(--paper) 25.2%);
}

.countdown-emblem {
  position: relative;
  width: 390px;
  height: 390px;
  margin: 0 auto;
}

.countdown-disc {
  position: absolute;
  inset: 38px;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.countdown-disc h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 285px;
}

.countdown-row div {
  padding: 0 10px;
  border-right: 1px solid #ddd;
}

.countdown-row div:last-child {
  border: 0;
}

.countdown-row strong, .countdown-row span {
  display: block;
}

.countdown-row strong {
  font-size: 1.05rem;
  color: #777;
}

.countdown-row span {
  font-size: 1rem;
  color: #aaa;
}

.small-heart {
  width: 28px;
  height: 28px;
  margin: 34px auto 0;
  background: var(--green);
}

.gold-frame {
  position: absolute;
  z-index: 1;
  width: 430px;
  max-width: none;
  left: -20px;
  top: -20px;
  transform: rotate(0deg);
}

.small-heart-image {
  display: block;
  width: 38px;
  height: 34px;
  margin: 30px auto 0;
}

.countdown-foliage {
  width: 220px;
  left: -35px;
  top: 170px;
}

.leaf-spray {
  position: absolute;
  width: 190px;
  height: 270px;
  z-index: 2;
}

.leaf-spray:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 2px;
  background: var(--green);
  transform: rotate(65deg);
  transform-origin: left;
}

.leaf-spray i:nth-child(1) {
  left: 20px;
  top: 30px;
}

.leaf-spray i:nth-child(2) {
  left: 48px;
  top: 73px;
  transform: rotate(85deg);
  background: #d6e1eb;
}

.leaf-spray i:nth-child(3) {
  left: 75px;
  top: 118px;
  background: #7897ae;
}

.leaf-spray i:nth-child(4) {
  left: 100px;
  top: 162px;
  transform: rotate(85deg);
  background: #92a9be;
}

.leaf-spray i:nth-child(5) {
  left: 128px;
  top: 205px;
  background: #7897ae;
}

.leaf-spray-left {
  left: 0;
  top: 115px;
}

.leaf-spray-right {
  right: -10px;
  top: 35px;
  transform: rotate(195deg);
}

.events-zone {
  padding-top: 55px;
  padding-bottom: 150px;
}

.event-column {
  text-align: center;
}

.round-icon {
  width: 92px;
  height: 92px;
  margin: -105px auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.round-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.ribbon-title {
  position: relative;
  display: inline-block;
  min-width: 255px;
  margin: 5px auto 42px;
  padding: 7px 28px;
  color: #fff;
  background: var(--green);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ribbon-title:before, .ribbon-title:after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 31px solid var(--green);
  border-bottom: 31px solid var(--green);
}

.ribbon-title:before {
  right: 100%;
  border-left: 18px solid transparent;
}

.ribbon-title:after {
  left: 100%;
  border-right: 18px solid transparent;
}

.event-column h3 {
  margin: 26px 0 14px;
  color: var(--green);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 1.35rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.event-column p {
  margin: 8px 0;
  font-size: 1.08rem;
}

.event-column .white-pill {
  margin: 14px 0 8px;
}

.bottom-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  background: url("../../assets/img/gold-wave-double.svg") center bottom/110% 100% no-repeat;
  overflow: hidden;
}

.bottom-waves i {
  display: none;
}

.gallery-zone, .party-zone {
  background: var(--paper-alt);
}

.script-heading {
  margin: 0;
  color: var(--green-deep);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(3.2rem,6vw,5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 900px;
  margin: 5px auto 25px;
  font-size: 1.15rem;
  line-height: 1.55;
}

.camera-symbol {
  display: block;
  width: 82px;
  height: 82px;
  margin: 15px auto 35px;
  object-fit: contain;
}

.gallery-slider {
  position: relative;
  min-height: 620px;
  margin: 24px auto 0;
  max-width: 820px;
}

.gallery-page {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px) scale(.985);
  transition: opacity .9s ease,transform .9s ease,visibility .9s ease;
  cursor: pointer;
}

.gallery-page.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.polaroid {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 7px rgba(69,95,121,.18);
  transform: rotate(-.5deg);
}

.gallery-page:nth-child(even) {
  transform: translateX(24px) scale(.985) rotate(.7deg);
}

.gallery-page.is-active:nth-child(even) {
  transform: translateX(0) rotate(.7deg);
}

.polaroid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 260px;
  margin: 24px auto 0;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: var(--green);
  transform: scale(1.25);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(31,44,53,.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease,visibility .28s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(100%,980px);
  max-height: 86vh;
  border: 10px solid #fff;
  object-fit: contain;
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  cursor: pointer;
}

.lightbox-close {
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.party-zone {
  padding-top: 65px;
  padding-bottom: 170px;
}

.party-card {
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
}

.party-card h3 {
  min-height: 78px;
  color: var(--gold);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.party-card p {
  min-height: 75px;
  margin: 20px 0;
  font-size: 1.05rem;
}

.line-icon {
  height: 82px;
  display: grid;
  place-items: center;
}

.line-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.reverse-waves {
  background-image: url("../../assets/img/gold-wave-single.svg");
}

.gifts-zone {
  min-height: 550px;
  padding-top: 75px;
}

.gift-copy {
  max-width: 980px;
}

.gift-icon, .rsvp-icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: 35px auto;
  object-fit: contain;
}

.gift-foliage {
  width: 270px;
  right: -35px;
  top: 20px;
}

.video-zone {
  padding-top: 40px;
}

.video-frame {
  position: relative;
  max-width: 1050px;
  margin: 35px auto 0;
  border: 12px solid #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #1f2c35;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 65px;
  color: #fff;
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 4.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0,0,0,.55);
  pointer-events: none;
}

.share-zone {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 80px 0;
  color: #fff;
  background: url("../../assets/img/modelo2-photo-5.webp") center/cover fixed;
  overflow: hidden;
}

.share-shade {
  position: absolute;
  inset: 0;
  background: rgba(95,120,147,.68);
}

.share-content {
  position: relative;
  z-index: 2;
}

.share-zone .script-heading {
  color: #fff;
}

.fake-qr, .qr-upload-card {
  width: 155px;
  height: 155px;
  margin: 28px auto;
  box-shadow: 0 0 0 5px #fff;
}

.fake-qr {
  border: 12px solid #fff;
  background: repeating-conic-gradient(#2f4f66 0 25%,#fff 0 50%) 0/20px 20px;
}

.qr-upload-card {
  display: block;
  padding: 8px;
  border: 8px solid #fff;
  border-radius: 10px;
  background: #fff;
  transition: transform .25s ease,box-shadow .25s ease;
}

.qr-upload-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 5px #fff,0 12px 28px rgba(0,0,0,.25);
}

.qr-upload-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rsvp-zone {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.natural-footer {
  position: relative;
  overflow: hidden;
  padding: 95px 0 75px;
  color: #fff;
  background: var(--green-deep);
}

.natural-footer h2 {
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: clamp(3rem,7vw,5.3rem);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.natural-footer h2 span {
  color: var(--gold);
  letter-spacing: 0;
}

.natural-footer h3 {
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-foliage {
  width: 330px;
  right: -80px;
  bottom: -70px;
  transform: rotate(165deg);
}

.floating-audio-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 11000;
}

.audio-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 22px rgba(47,79,102,.22);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease,background .25s ease,color .25s ease;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  background: #fff;
}

.audio-toggle.is-playing {
  color: #fff;
  background: rgba(95,120,147,.92);
}

#lugares .event-column, #lugares .event-column p, #lugares .event-column a.white-pill, #fiesta .party-card p, #fiesta .party-card button, #fiesta .party-card a.white-pill, #regalos .section-subtitle, #regalos .white-pill, #confirmacion .section-subtitle, #confirmacion .white-pill, .natural-modal p, .natural-modal a, .natural-modal button {
  color: var(--ink);
}

#lugares .event-column h3, #galeria .script-heading, #galeria .section-subtitle, #fiesta .script-heading, #regalos .script-heading, #confirmacion .script-heading, .natural-modal h2 {
  color: var(--green-deep);
}

#fiesta .party-card h3 {
  color: var(--gold);
}

.gallery-page.polaroid, .polaroid {
  padding: 16px !important;
  background: #fff !important;
  border: 1px solid rgba(191,168,128,.45) !important;
  box-shadow: 0 10px 26px rgba(69,95,121,.24) !important;
}

.gallery-page.polaroid img, .polaroid img {
  display: block;
  border: 0;
  width: 100%;
  object-fit: cover;
}

.natural-modal .modal-content {
  position: relative;
  padding: 42px;
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.natural-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.natural-modal h2 {
  color: var(--green-deep);
  font-family: "M2 Cormorant","Times New Roman",serif;
  font-size: 3rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-control, .form-select {
  border-color: #d6e1eb;
  border-radius: 10px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 .25rem rgba(134,160,180,.2);
}

@media (max-width:991.98px) {
  .cover-date {
    margin-bottom: 45px;
  }
}

@media (max-width:991.98px) {
  .countdown-zone {
    min-height: 510px;
  }
}

@media (max-width:991.98px) {
  .event-column {
    margin-bottom: 85px;
  }
}

@media (max-width:991.98px) {
  .events-zone {
    padding-top: 95px;
  }
}

@media (max-width:991.98px) {
  .gallery-slider {
    max-width: 620px;
    min-height: 560px;
  }
}

@media (max-width:991.98px) {
  .polaroid img {
    height: 500px;
  }
}

@media (max-width:991.98px) {
  .party-card {
    min-height: 360px;
  }
}

@media (max-width:991.98px) {
  .video-frame video {
    height: 420px;
  }
}

@media (max-width:991.98px) {
  .share-zone {
    background-attachment: scroll;
  }
}

@media (max-width:767.98px) {
  .save-date-link {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }
}

@media (max-width:767.98px) {
  .save-date-photo {
    height: 48vh;
    min-height: 330px;
  }
}

@media (max-width:767.98px) {
  .save-date-copy {
    min-height: 52vh;
    padding: 34px 22px 42px;
  }
}

@media (max-width:767.98px) {
  .save-date-title {
    margin-bottom: 26px;
    font-size: clamp(4rem,18vw,6.3rem);
  }
}

@media (max-width:767.98px) {
  .save-date-kicker {
    margin-bottom: 18px;
    font-size: 1rem;
    letter-spacing: .28em;
  }
}

@media (max-width:767.98px) {
  .save-date-copy h1 {
    font-size: 1.45rem;
    letter-spacing: .28em;
  }
}

@media (max-width:767.98px) {
  .save-date-date {
    margin-top: 20px;
    font-size: 1.05rem;
    letter-spacing: .18em;
  }
}

@media (max-width:767.98px) {
  .save-date-note {
    margin-top: 18px;
    font-size: .95rem;
    letter-spacing: .25em;
  }
}

@media (max-width:767.98px) {
  .save-date-open {
    margin-top: 22px;
  }
}

@media (max-width:575.98px) {
  .cover-date {
    gap: 12px;
    font-size: .95rem;
  }
}

@media (max-width:575.98px) {
  .cover-date span {
    width: 55px;
  }
}

@media (max-width:575.98px) {
  .cover-names b {
    display: block;
    margin: 8px auto;
  }
}

@media (max-width:575.98px) {
  .quote-marks {
    margin-top: 25px;
  }
}

@media (max-width:575.98px) {
  .flecha-continuar {
    bottom: clamp(72px,15vh,112px);
  }
}

@media (max-width:575.98px) {
  .hero-foliage-top {
    width: 145px;
  }
}

@media (max-width:575.98px) {
  .hero-foliage-bottom {
    width: 190px;
  }
}

@media (max-width:575.98px) {
  .countdown-emblem {
    width: 330px;
    height: 330px;
  }
}

@media (max-width:575.98px) {
  .gold-frame {
    width: 365px;
    left: -18px;
    top: -18px;
  }
}

@media (max-width:575.98px) {
  .countdown-disc {
    inset: 31px;
  }
}

@media (max-width:575.98px) {
  .countdown-row {
    width: 245px;
  }
}

@media (max-width:575.98px) {
  .countdown-row div {
    padding: 0 5px;
  }
}

@media (max-width:575.98px) {
  .countdown-foliage {
    width: 135px;
    left: -45px;
  }
}

@media (max-width:575.98px) {
  .events-zone {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width:575.98px) {
  .ribbon-title {
    min-width: 215px;
    font-size: 2.7rem;
  }
}

@media (max-width:575.98px) {
  .gallery-slider {
    min-height: 470px;
  }
}

@media (max-width:575.98px) {
  .polaroid {
    padding: 9px;
  }
}

@media (max-width:575.98px) {
  .polaroid img {
    height: 430px;
  }
}

@media (max-width:575.98px) {
  .gallery-lightbox {
    padding: 12px;
  }
}

@media (max-width:575.98px) {
  .gallery-lightbox img {
    max-height: 82vh;
    border-width: 6px;
  }
}

@media (max-width:575.98px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.9rem;
  }
}

@media (max-width:575.98px) {
  .lightbox-prev {
    left: 8px;
  }
}

@media (max-width:575.98px) {
  .lightbox-next {
    right: 8px;
  }
}

@media (max-width:575.98px) {
  .video-frame {
    border-width: 6px;
  }
}

@media (max-width:575.98px) {
  .video-frame video {
    height: 320px;
  }
}

@media (max-width:575.98px) {
  .video-caption {
    font-size: 3.5rem;
  }
}

@media (max-width:575.98px) {
  .share-zone {
    min-height: 630px;
  }
}

@media (max-width:575.98px) {
  .gift-foliage, .footer-foliage {
    opacity: .5;
  }
}

@media (max-width:575.98px) {
  .floating-audio-player {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width:575.98px) {
  .audio-toggle {
    width: 44px;
    height: 44px;
    font-size: 1.22rem;
  }
}

@media (max-width:575.98px) {
  .qr-upload-card, .fake-qr {
    width: 148px;
    height: 148px;
  }
}

@media (max-height:700px) and (max-width:575.98px) {
  .cover-date {
    margin-bottom: 24px;
  }
}

@media (max-height:700px) and (max-width:575.98px) {
  .quote-marks {
    margin-top: 14px;
    font-size: 1rem;
  }
}

@media (max-height:700px) and (max-width:575.98px) {
  .quote-marks img {
    width: 32px;
    height: 25px;
  }
}

@media (max-height:700px) and (max-width:575.98px) {
  .flecha-continuar {
    bottom: 58px;
  }
}

@media (max-height:700px) and (max-width:575.98px) {
  .gift-foliage, .footer-foliage {
    opacity: .5;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion:reduce) {
  .heart-loader-image, .flecha-continuar-animada {
    animation: none;
  }
}

.save-date-photo {
  background: #d8d2c7 url("../../assets/img/modelo2-photo-5.webp") center/cover no-repeat;
}

.video-frame {
  background: #1f2c35 url("../../assets/img/modelo2-photo-5.webp") center/cover no-repeat;
}

.save-date-photo video, .video-frame video {
  opacity: 0;
  transition: opacity .45s ease;
}

.save-date-photo.video-ready video, .video-frame.video-ready video {
  opacity: 1;
}

.save-date-photo.video-error video, .video-frame.video-error video {
  opacity: 0;
}

@media (max-width:767.98px) {
  .save-date-entry, .save-date-card {
    min-height: 100svh;
    min-height: 100dvh;
  }
}

@media (max-width:767.98px) {
  .save-date-link {
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    grid-template-rows: minmax(215px,42svh) minmax(0,1fr);
    overflow: hidden;
  }
}

@media (max-width:767.98px) {
  .save-date-photo {
    height: auto;
    min-height: 0;
  }
}

@media (max-width:767.98px) {
  .save-date-copy {
    min-height: 0;
    padding: clamp(18px,4svh,28px) 20px clamp(18px,4svh,30px);
  }
}

@media (max-width:767.98px) {
  .save-date-title {
    margin-bottom: clamp(14px,3svh,22px);
    font-size: clamp(3.2rem,15vw,5.1rem);
  }
}

@media (max-width:767.98px) {
  .save-date-kicker {
    margin-bottom: clamp(10px,2svh,16px);
    font-size: .92rem;
    letter-spacing: .22em;
  }
}

@media (max-width:767.98px) {
  .save-date-copy h1 {
    font-size: clamp(1.12rem,5vw,1.38rem);
    line-height: 1.28;
    letter-spacing: .22em;
  }
}

@media (max-width:767.98px) {
  .save-date-date {
    margin-top: clamp(10px,2.2svh,18px);
    font-size: .98rem;
    letter-spacing: .15em;
  }
}

@media (max-width:767.98px) {
  .save-date-note {
    margin-top: clamp(8px,2svh,16px);
    font-size: .88rem;
    letter-spacing: .18em;
  }
}

@media (max-width:767.98px) {
  .save-date-open {
    margin-top: clamp(10px,2.2svh,18px);
    padding: 8px 18px;
    font-size: .68rem;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-link {
    grid-template-rows: minmax(180px,38svh) minmax(0,1fr);
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-copy {
    padding: 14px 18px 16px;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-title {
    font-size: clamp(2.8rem,13vw,4.3rem);
    margin-bottom: 10px;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-kicker {
    margin-bottom: 8px;
    font-size: .8rem;
    letter-spacing: .18em;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-copy h1 {
    font-size: 1rem;
    line-height: 1.18;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-date {
    margin-top: 8px;
    font-size: .86rem;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-note {
    margin-top: 7px;
    font-size: .78rem;
  }
}

@media (max-width:767.98px) and (max-height:740px) {
  .save-date-open {
    margin-top: 9px;
    padding: 7px 16px;
  }
}

