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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  background-color: #fcfbfa;
  color: #3d3d3d;
  font-family: "Montserrat", sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.calendar,
.timing,
.rsvp {
  position: relative;
  z-index: 10;
  background-color: #fcfbfa;
}

.location {
  position: relative;
  z-index: 20;
  background-color: #fcfbfa;
}

.countdown {
  position: relative;
  z-index: 30;
  background-color: #fcfbfa;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vh-height, 100vh);
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
}
.header:focus {
  outline: none;
}
.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c5beb2;
}
.header__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform-origin: center center;
}
.header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(61, 61, 61, 0.4) 0%, rgba(61, 61, 61, 0.28) 8%, rgba(61, 61, 61, 0.15) 16%, rgba(61, 61, 61, 0.05) 24%, rgba(61, 61, 61, 0) 35%, rgba(61, 61, 61, 0) 65%, rgba(61, 61, 61, 0.05) 76%, rgba(61, 61, 61, 0.15) 84%, rgba(61, 61, 61, 0.28) 92%, rgba(61, 61, 61, 0.4) 100%);
}
.header__dimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #000000;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}
.header__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 24px 78px;
  box-sizing: border-box;
}
.header__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.header__badge {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-indent: 0.5em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.header__year {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  margin: 0;
}
.header__main {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.header__amp {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 240px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
@media (min-width: 768px) {
  .header__amp {
    font-size: 400px;
  }
}
.header__names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: 0;
  position: relative;
  z-index: 2;
}
.header__names:focus {
  outline: none;
}
.header__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .header__name {
    font-size: 64px;
  }
}
.header__date {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header__date-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.header__date-segment:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.header__date-num {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .header__date-num {
    font-size: 32px;
  }
}

@keyframes headerZoom {
  from {
    transform: scale(1) translateZ(0);
  }
  to {
    transform: scale(1.15) translateZ(0);
  }
}
@keyframes headerDim {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes headerExit {
  0%, 99% {
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}
@supports (animation-timeline: scroll()) {
  .header {
    animation: headerExit linear both;
    animation-timeline: scroll(root);
    animation-range: 0 calc(var(--vh-height, 100vh) - 54px);
  }
  .header__photo {
    animation: headerZoom linear both;
    animation-timeline: scroll(root);
    animation-range: 0 calc(var(--vh-height, 100vh) - 54px);
    will-change: transform;
  }
  .header__dimmer {
    animation: headerDim linear both;
    animation-timeline: scroll(root);
    animation-range: 0 calc(var(--vh-height, 100vh) - 54px);
    will-change: opacity;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__photo,
  .header__dimmer {
    animation: none !important;
  }
}
.welcome {
  position: relative;
  z-index: 10;
  margin-top: calc(var(--vh-height, 100vh) - 54px);
  background-color: #fcfbfa;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 40px rgba(44, 67, 51, 0.15);
  padding: 24px 16px 40px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  transition: border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome--docked {
  border-radius: 0;
  box-shadow: none;
}
.welcome__container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome__handle {
  width: 36px;
  height: 6px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 20px 0;
  margin-top: -20px;
  margin-bottom: 4px;
  transition: scale 0.1s ease, opacity 0.3s ease;
  animation: handleBounce 2s infinite ease-in-out;
}
.welcome__handle:active {
  scale: 0.85;
}
.welcome__handle::before, .welcome__handle::after {
  content: "";
  width: 20px;
  height: 5px;
  background-color: #1c3d5a;
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  top: calc(50% - 2.5px);
}
.welcome__handle::before {
  right: 50%;
  transform-origin: right center;
  transform: rotate(-25deg);
  margin-right: -1.5px;
}
.welcome__handle::after {
  left: 50%;
  transform-origin: left center;
  transform: rotate(25deg);
  margin-left: -1.5px;
}
.welcome--scrolled .welcome__handle {
  animation: none;
}
.welcome--scrolled .welcome__handle::before, .welcome--scrolled .welcome__handle::after {
  transform: rotate(0deg);
}
.welcome--docked .welcome__handle {
  opacity: 0;
}
.welcome__card {
  width: 100%;
  padding: 32px 20px;
  border: 1px solid rgba(28, 61, 90, 0.15);
  border-radius: 24px;
  background-color: transparent;
  text-align: center;
}
@media (min-width: 768px) {
  .welcome__card {
    padding: 44px 32px;
  }
}
.welcome__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1c3d5a;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .welcome__title {
    font-size: 2.2rem;
  }
}
.welcome__line-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 24px;
}
.welcome__line-divider::before, .welcome__line-divider::after {
  content: "";
  height: 1px;
  width: 40px;
  background-color: rgba(28, 61, 90, 0.25);
}
.welcome__line-node {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(28, 61, 90, 0.5);
  transform: rotate(45deg);
  margin: 0 10px;
  display: inline-block;
}
.welcome__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.welcome__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #3d3d3d;
}
@media (min-width: 768px) {
  .welcome__text {
    font-size: 0.98rem;
  }
}
.welcome__text--intro {
  font-weight: 300;
}
.welcome__text--action {
  font-weight: 500;
  color: #1c3d5a;
  letter-spacing: 0.01em;
}
.welcome__highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05em;
  font-style: italic;
  color: #1c3d5a;
  font-weight: 400;
}
.welcome__date-box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.welcome__date-border {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(28, 61, 90, 0.15);
  padding: 12px 36px;
}
.welcome__date-header {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(28, 61, 90, 0.5);
  margin-bottom: 4px;
}
.welcome__date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1c3d5a;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .welcome__date {
    font-size: 1.6rem;
  }
}
.welcome__date-footer {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: rgba(61, 61, 61, 0.7);
}

@keyframes handleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes welcomeDock {
  to {
    border-radius: 0;
    box-shadow: 0 0 0 transparent;
  }
}
@keyframes handleFade {
  to {
    opacity: 0;
  }
}
@keyframes handleFlattenLeft {
  to {
    transform: rotate(0deg);
  }
}
@keyframes handleFlattenRight {
  to {
    transform: rotate(0deg);
  }
}
@supports (animation-timeline: scroll()) {
  .welcome {
    animation: welcomeDock linear both;
    animation-timeline: scroll(root);
    animation-range: 0 calc(var(--vh-height, 100vh) - 54px);
  }
  .welcome__handle {
    animation: handleBounce 2s infinite ease-in-out, handleFade linear both;
    animation-timeline: auto, scroll(root);
    animation-range: normal, 0 calc(var(--vh-height, 100vh) - 54px);
  }
  .welcome__handle::before {
    animation: handleFlattenLeft linear both;
    animation-timeline: scroll(root);
    animation-range: 0 40px;
  }
  .welcome__handle::after {
    animation: handleFlattenRight linear both;
    animation-timeline: scroll(root);
    animation-range: 0 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .welcome,
  .welcome__handle,
  .welcome__handle::before,
  .welcome__handle::after {
    animation: none !important;
  }
}
.calendar {
  padding: 40px 16px;
  background-color: #fcfbfa;
}
.calendar__container {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
}
.calendar__header {
  text-align: center;
  margin-bottom: 32px;
}
.calendar__month {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1c3d5a;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  margin: 0;
}
.calendar__weekdays, .calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  align-items: center;
}
.calendar__weekdays {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(61, 61, 61, 0.4);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(28, 61, 90, 0.08);
  padding-bottom: 8px;
  width: 100%;
}
.calendar__days {
  row-gap: 14px;
  margin-bottom: 32px;
}
.calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
  color: #3d3d3d;
  position: relative;
  z-index: 1;
}
.calendar__day--empty {
  visibility: hidden;
}
.calendar__day--weekend {
  color: rgba(28, 61, 90, 0.6);
}
.calendar__day--highlighted {
  color: #fcfbfa;
  font-weight: 600;
  border-radius: 0 !important;
}
.calendar__day--highlighted::before, .calendar__day--highlighted::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 32px;
  background-color: #1c3d5a;
  border-radius: 20px 20px 0 0;
  z-index: -1;
}
.calendar__day--highlighted::before {
  transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg);
  animation: heartPulseLeft 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}
.calendar__day--highlighted::after {
  transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg);
  animation: heartPulseRight 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .calendar__day--highlighted::before, .calendar__day--highlighted::after {
    animation: none;
  }
}
.calendar__date-box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}
.calendar__date-border {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 40px;
  border: 1px solid rgba(28, 61, 90, 0.15);
  border-radius: 24px;
  background-color: rgba(28, 61, 90, 0.02);
  box-shadow: 0 10px 30px rgba(28, 61, 90, 0.04);
}
.calendar__date-header {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(28, 61, 90, 0.6);
  margin-bottom: 10px;
}
.calendar__date {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1c3d5a;
  font-variant-numeric: tabular-nums;
}

@keyframes heartPulseLeft {
  0% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1);
  }
  14% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1.12);
  }
  28% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1);
  }
  42% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1.12);
  }
  70% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1);
  }
  100% {
    transform: translate3d(calc(-50% - 5px), -50%, 0) rotate(-45deg) scale(1);
  }
}
@keyframes heartPulseRight {
  0% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1);
  }
  14% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1.12);
  }
  28% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1);
  }
  42% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1.12);
  }
  70% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1);
  }
  100% {
    transform: translate3d(calc(-50% + 5px), -50%, 0) rotate(45deg) scale(1);
  }
}
.countdown {
  padding: 40px 16px;
  background-color: #fcfbfa;
  display: flex;
  justify-content: center;
  align-items: center;
}
.countdown__container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.countdown__photo-wrapper {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(28, 61, 90, 0.15);
  padding: 8px;
  background-color: rgba(28, 61, 90, 0.02);
  box-shadow: 0 10px 30px rgba(28, 61, 90, 0.04);
}
.countdown__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.countdown__content {
  position: relative;
  z-index: 2;
  margin: -50px auto 0;
  width: 100%;
  max-width: 480px;
  background-color: rgba(252, 251, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate3d(0, 0, 0);
  border-radius: 24px;
  padding: 32px 16px;
  border: 1px solid rgba(28, 61, 90, 0.1);
  box-shadow: 0 15px 40px rgba(28, 61, 90, 0.08);
}
.countdown__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(44, 67, 51, 0.7);
  margin-bottom: 24px;
}
.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.countdown__digits {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #2c4333;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.12s ease-in-out, transform 0.12s ease-in-out;
  will-change: opacity, transform;
}
.countdown__digits--changing {
  opacity: 0;
  transform: scale(0.96);
}
.countdown__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(44, 67, 51, 0.5);
  margin-top: 8px;
  width: 100%;
  text-align: center;
}
.countdown__divider {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: rgba(44, 67, 51, 0.3);
  line-height: 1;
  user-select: none;
}
@media (min-width: 768px) {
  .countdown {
    padding: 60px 40px;
  }
  .countdown__photo-wrapper {
    max-width: 320px;
    margin-bottom: 0;
  }
  .countdown__content {
    margin-top: -46px;
    padding: 48px 32px;
    max-width: 600px;
  }
  .countdown__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .countdown__timer {
    gap: 16px;
  }
  .countdown__item {
    min-width: 104px;
  }
  .countdown__digits, .countdown__divider {
    font-size: 4.5rem;
  }
  .countdown__label {
    font-size: 0.8125rem;
    margin-top: 12px;
  }
}

.location {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  background-color: #fcfbfa;
}
.location__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 600px;
}
.location__frame {
  position: relative;
  width: 100%;
  padding: 48px 20px 32px;
  border: 1px solid rgba(28, 61, 90, 0.25);
  border-radius: 140px 140px 40px 40px;
  background-color: #fcfbfa;
  text-align: center;
  box-shadow: 0 20px 60px rgba(28, 61, 90, 0.08);
}
.location__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #1c3d5a;
  margin-bottom: 16px;
}
.location__divider {
  width: 50%;
  height: 1px;
  background-color: rgba(28, 61, 90, 0.35);
  margin: 0 auto 20px;
}
.location__type {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(28, 61, 90, 0.65);
  margin-bottom: 12px;
}
.location__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1c3d5a;
  margin-bottom: 8px;
}
.location__address {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #3d3d3d;
  margin-bottom: 24px;
}
.location__time-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(28, 61, 90, 0.15);
  border-bottom: 1px solid rgba(28, 61, 90, 0.15);
  padding: 8px 28px;
  margin-bottom: 32px;
}
.location__time-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(61, 61, 61, 0.5);
  margin-bottom: 2px;
}
.location__time-value {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1c3d5a;
  font-variant-numeric: tabular-nums;
}
.location__preview {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  border-radius: 24px 24px 16px 16px;
  overflow: hidden;
  background-color: #c5beb2;
}
.location__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
}
.location__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.location__photo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, #c5beb2 0%, #a39b8c 100%);
}
.location__preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 16px;
  background: linear-gradient(to top, rgba(28, 61, 90, 0.75) 0%, rgba(28, 61, 90, 0) 100%);
}
.location__button {
  background-color: transparent;
  color: #1c3d5a;
  border: 1px solid #1c3d5a;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
  -webkit-appearance: none;
}
.location__button:active {
  transform: scale(0.97);
}
@media (min-width: 768px) {
  .location__button:hover {
    background-color: #1c3d5a;
    color: #ffffff;
  }
}

.timing {
  background-color: #fcfbfa;
  padding: 40px 16px;
  width: 100%;
  overflow: hidden;
}
.timing__inner {
  max-width: 600px;
  margin: 0 auto;
}
.timing__title {
  font-family: "Cormorant Garamond", serif;
  color: #2c4333;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}
.timing__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.timing__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}
.timing__row--reverse {
  flex-direction: row-reverse;
}
.timing__col {
  flex: 1;
}
.timing__col--caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(44, 67, 51, 0.3);
}
.timing__col--time {
  display: flex;
  justify-content: flex-start;
}
.timing__row:not(.timing__row--reverse) .timing__col--time {
  justify-content: flex-end;
}
.timing__row:not(.timing__row--reverse) .timing__col--caption {
  text-align: left;
}
.timing__row--reverse .timing__col--time {
  justify-content: flex-start;
}
.timing__row--reverse .timing__col--caption {
  text-align: right;
}
.timing__caption {
  font-family: "Montserrat", sans-serif;
  color: #3d3d3d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.timing__time {
  font-family: "Cormorant Garamond", serif;
  color: rgba(44, 67, 51, 0.15);
  font-size: 3.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}
@media (min-width: 768px) {
  .timing {
    padding: 60px 40px;
  }
  .timing__inner {
    max-width: 700px;
  }
  .timing__time {
    font-size: 5rem;
  }
  .timing__caption {
    font-size: 1.15rem;
  }
}

.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.map-modal--active {
  opacity: 1;
  pointer-events: auto;
}
.map-modal--active .map-modal__container {
  transform: scale(1);
}
.map-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 61, 61, 0.5);
  backdrop-filter: blur(8px);
}
.map-modal__container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #fcfbfa;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.map-modal__close {
  position: absolute;
  top: 50px;
  right: 20px;
  z-index: 2010;
  background-color: #2c4333;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 16px rgba(44, 67, 51, 0.2);
  -webkit-appearance: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.map-modal__close:active {
  transform: scale(0.9);
}
@media (min-width: 768px) {
  .map-modal__close:hover {
    transform: scale(1.05);
    background-color: rgb(54.1081081081, 82.3918918919, 62.7162162162);
  }
}
.map-modal__content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rsvp {
  position: relative;
  z-index: 10;
  background-color: #fcfbfa;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .rsvp {
    padding: 40px 16px;
  }
}
.rsvp__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 16px;
  background-color: #fcfbfa;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(28, 61, 90, 0.04);
  border: 1px solid rgba(28, 61, 90, 0.08);
}
@media (min-width: 768px) {
  .rsvp__container {
    padding: 56px 32px;
  }
}
.rsvp__title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #1c3d5a;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .rsvp__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.rsvp__form--hidden {
  display: none;
}
.rsvp__intro {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .rsvp__intro {
    margin-bottom: 32px;
  }
}
.rsvp__intro-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(28, 61, 90, 0.7);
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .rsvp__intro-title {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
}
.rsvp__intro-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: rgba(61, 61, 61, 0.65);
  margin: 6px 0 12px;
}
@media (min-width: 768px) {
  .rsvp__intro-desc {
    font-size: 1.1rem;
    margin: 10px 0 16px;
  }
}
.rsvp__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .rsvp__fieldset {
    margin: 0 0 36px 0;
  }
}
.rsvp__legend {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: rgba(28, 61, 90, 0.6);
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .rsvp__legend {
    margin-bottom: 20px;
  }
}
.rsvp__legend--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rsvp__legend--main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #1c3d5a;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .rsvp__legend--main {
    margin-bottom: 40px;
  }
}
.rsvp__highlight-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 500;
  color: #1c3d5a;
  margin: 4px 0 8px;
}
@media (min-width: 768px) {
  .rsvp__highlight-name {
    font-size: 2rem;
    margin: 8px 0 12px;
  }
}
.rsvp__deadline {
  display: block;
  margin: 12px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(28, 61, 90, 0.12);
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(61, 61, 61, 0.7);
  letter-spacing: 0.05em;
  width: fit-content;
}
@media (min-width: 768px) {
  .rsvp__deadline {
    margin-top: 24px;
    padding: 12px 20px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}
.rsvp__highlight-date {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1c3d5a;
  margin-left: 4px;
}
.rsvp__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: rgba(28, 61, 90, 0.6);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .rsvp__label {
    margin-bottom: 20px;
  }
}
.rsvp__options {
  display: grid;
  gap: 8px;
}
@media (min-width: 768px) {
  .rsvp__options {
    gap: 12px;
  }
}
.rsvp__options--3col {
  grid-template-columns: repeat(3, 1fr);
}
.rsvp__options--2col {
  grid-template-columns: repeat(2, 1fr);
}
.rsvp__error {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c2410c;
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  width: 100%;
  display: block;
}
.rsvp__error--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.rsvp__choice {
  display: block;
  cursor: pointer;
  position: relative;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
.rsvp__choice:active .rsvp__choice-block {
  transform: scale(0.96);
}
.rsvp__choice:has(.rsvp__input-hidden:disabled) {
  cursor: not-allowed;
}
.rsvp__choice--fullwidth {
  grid-column: 1/-1;
}
.rsvp__choice--alcohol .rsvp__choice-block {
  padding: 9px 6px;
  min-height: 38px;
  font-size: 0.75rem;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .rsvp__choice--alcohol .rsvp__choice-block {
    padding: 16px 12px;
    min-height: 54px;
    font-size: 0.9rem;
    border-radius: 16px;
  }
}
.rsvp__input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rsvp__choice-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background-color: rgba(28, 61, 90, 0.02);
  border: 1px solid rgba(28, 61, 90, 0.15);
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #3d3d3d;
  text-align: center;
  min-height: 44px;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .rsvp__choice-block {
    padding: 16px 12px;
    min-height: 54px;
    font-size: 0.9rem;
  }
}
.rsvp__choice-block:hover {
  background-color: rgba(28, 61, 90, 0.04);
  border-color: rgba(28, 61, 90, 0.3);
}
.rsvp__input-hidden:checked + .rsvp__choice-block {
  background-color: #1c3d5a;
  border-color: #1c3d5a;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(28, 61, 90, 0.2);
}
.rsvp__input-hidden:focus-visible + .rsvp__choice-block {
  outline: 2px solid #1c3d5a;
  outline-offset: 2px;
}
.rsvp__input-hidden:disabled + .rsvp__choice-block {
  opacity: 0.4;
  pointer-events: none;
  background-color: rgba(28, 61, 90, 0.02);
  border-color: rgba(28, 61, 90, 0.05);
}
.rsvp__field {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .rsvp__field {
    margin-bottom: 36px;
  }
}
.rsvp__input-text {
  width: 100%;
  height: 40px;
  padding: 8px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(28, 61, 90, 0.15);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #3d3d3d;
  outline: none;
  transition: border-bottom-color 0.3s ease;
}
.rsvp__input-text:focus {
  border-bottom-color: #1c3d5a;
}
.rsvp__input-text::placeholder {
  color: rgba(61, 61, 61, 0.4);
}
.rsvp__textarea {
  width: 100%;
  min-height: 70px;
  padding: 14px;
  background-color: rgba(28, 61, 90, 0.02);
  border: 1px solid rgba(28, 61, 90, 0.15);
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #3d3d3d;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .rsvp__textarea {
    min-height: 100px;
    padding: 16px;
  }
}
.rsvp__textarea:hover {
  background-color: rgba(28, 61, 90, 0.04);
  border-color: rgba(28, 61, 90, 0.3);
}
.rsvp__textarea:focus {
  background-color: transparent;
  border-color: #1c3d5a;
}
.rsvp__textarea::placeholder {
  color: rgba(61, 61, 61, 0.4);
  font-size: 0.9rem;
}
.rsvp__textarea:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: rgba(28, 61, 90, 0.02);
  border-color: rgba(28, 61, 90, 0.05);
}
.rsvp__submit {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #1c3d5a;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .rsvp__submit {
    padding: 18px;
  }
}
.rsvp__submit:hover:not(:disabled) {
  background-color: rgba(28, 61, 90, 0.85);
}
.rsvp__submit:active:not(:disabled) {
  transform: scale(0.97);
}
.rsvp__submit:disabled {
  background-color: rgba(28, 61, 90, 0.3);
  cursor: not-allowed;
}
.rsvp__success-wrapper {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .rsvp__success-wrapper {
    min-height: 440px;
  }
}
.rsvp__success-wrapper.rsvp__success--hidden {
  display: none;
}
.rsvp__success {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: rsvpFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.rsvp__success-icon {
  display: block;
  width: 32px;
  height: 32px;
  color: rgba(28, 61, 90, 0.7);
  margin: 0 auto 12px;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: rsvpStroke 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .rsvp__success-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
}
.rsvp__success-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(28, 61, 90, 0.5);
  margin-bottom: 16px;
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .rsvp__success-title {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
}
.rsvp__photo-wrapper {
  width: 100%;
  max-width: 300px;
  height: auto;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 180px;
  margin: 16px auto;
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(28, 61, 90, 0.12);
  padding: 4px;
  background-color: rgba(28, 61, 90, 0.02);
  box-shadow: 0 8px 24px rgba(28, 61, 90, 0.03);
  overflow: hidden;
  animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (min-width: 768px) {
  .rsvp__photo-wrapper {
    max-width: 420px;
    min-height: 240px;
    border-radius: 24px;
    padding: 8px;
    margin: 24px auto;
  }
}
.rsvp__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 768px) {
  .rsvp__photo {
    aspect-ratio: auto;
    height: 100%;
    border-radius: 16px;
  }
}
.rsvp__success-message-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .rsvp__success-message-block {
    gap: 10px;
    margin-bottom: 32px;
  }
}
.rsvp__success-meet {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1c3d5a;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .rsvp__success-meet {
    font-size: 2.1rem;
  }
}
.rsvp__success-signature {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(191, 163, 138, 0.95);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .rsvp__success-signature {
    font-size: 1.25rem;
  }
}
.rsvp__edit-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  color: #1c3d5a;
  border: 1px solid rgba(28, 61, 90, 0.25);
  border-radius: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.rsvp__edit-btn:hover {
  background-color: rgba(28, 61, 90, 0.04);
  border-color: #1c3d5a;
}
.rsvp__edit-btn:active {
  transform: scale(0.97);
}

@keyframes rsvpStroke {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes rsvpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.info {
  position: relative;
  z-index: 10;
  background-color: #fcfbfa;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}
.info__container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #1c3d5a;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.info__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3d3d3d;
  margin-bottom: 16px;
  max-width: 520px;
}
.info__text--center {
  font-size: 1.1rem;
  color: #2c4333;
}
.info__text--budget {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #1c3d5a;
}
.info__text--sub {
  margin-bottom: 28px;
}
.info__accent-box {
  background-color: rgba(235, 231, 223, 0.4);
  border-left: 2px solid #1c3d5a;
  padding: 16px 20px;
  margin-top: 12px;
  border-radius: 0 12px 12px 0;
  max-width: 480px;
}
.info__accent-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3d3d3d;
  text-align: left;
}
.info__highlight {
  color: #1c3d5a;
  font-weight: 600;
}
.info__medium {
  font-weight: 500;
  color: #1c3d5a;
}
.info__telegram-card {
  border: 1px dashed rgba(28, 61, 90, 0.3);
  padding: 24px 20px;
  border-radius: 16px;
  margin-top: 16px;
  background-color: rgba(252, 251, 250, 0.5);
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info__telegram-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #3d3d3d;
  opacity: 0.9;
  margin-bottom: 16px;
}
.info__telegram-link {
  color: #1c3d5a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.info__telegram-link:hover {
  opacity: 0.8;
}
.info__telegram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #1c3d5a;
  border: 1px solid #1c3d5a;
  border-radius: 100px;
  padding: 12px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.info__telegram-btn:active {
  transform: scale(0.97);
}
@media (min-width: 768px) {
  .info__telegram-btn:hover {
    background-color: #1c3d5a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(28, 61, 90, 0.15);
  }
}
.info__telegram-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.info__telegram-btn:hover .info__telegram-icon {
  transform: translate(1px, -1px);
}
.info__divider {
  width: 60px;
  height: 1px;
  background-color: rgba(28, 61, 90, 0.15);
  margin: 48px 0;
  position: relative;
}
.info__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background-color: rgba(28, 61, 90, 0.25);
}
.info__contacts-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}
.info__contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(28, 61, 90, 0.15);
  border-radius: 14px;
  text-decoration: none;
  background-color: #fcfbfa;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.info__contact-link:active {
  background-color: rgba(235, 231, 223, 0.3);
  transform: scale(0.98);
}
.info__contact-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #1c3d5a;
}
.info__contact-phone {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #3d3d3d;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .info {
    padding: 60px 40px;
  }
  .info__contacts-grid {
    flex-direction: row;
    max-width: 520px;
  }
  .info__contact-link {
    flex: 1;
    padding: 20px;
  }
  .info__contact-link:hover {
    border-color: #1c3d5a;
    background-color: rgba(235, 231, 223, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 61, 90, 0.06);
  }
}
.audio-control {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  pointer-events: auto;
  will-change: transform;
}
.audio-control__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(44, 67, 51, 0.12);
  border-radius: 50%;
  background-color: #fcfbfa;
  color: #2c4333;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s ease;
}
.audio-control__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(44, 67, 51, 0.4);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
@media (hover: hover) {
  .audio-control__button:hover {
    transform: scale(1.06);
    background-color: rgba(252, 251, 250, 0.98);
  }
}
.audio-control__button:active {
  transform: scale(0.94);
}
.audio-control__icon {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: scale(1);
}
.audio-control__icon--pause {
  opacity: 0;
  transform: scale(0.6);
}
.audio-control--playing .audio-control__icon--play {
  opacity: 0;
  transform: scale(0.6);
}
.audio-control--playing .audio-control__icon--pause {
  opacity: 1;
  transform: scale(1);
}
.audio-control--playing .audio-control__button::after {
  animation: audioGlowRipple 2.5s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes audioGlowRipple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  background-color: rgba(28, 61, 90, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 2.2s ease, backdrop-filter 2.2s ease;
}
.intro-overlay:has(.intro-envelope--opened) {
  background-color: rgba(28, 61, 90, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}
.intro-overlay__svg-clip {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.intro-envelope {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 62.5vw;
  background-color: transparent;
  perspective: 2000px;
  transform-style: preserve-3d;
  transition: transform 2.2s cubic-bezier(0.25, 1, 0.3, 1);
}
@media (max-aspect-ratio: 8/5) {
  .intro-envelope {
    height: 100vh;
    width: 160vh;
  }
}
.intro-envelope__back {
  position: absolute;
  inset: 0;
  background-color: rgb(229.05, 220.4, 211.75);
  transition: opacity 2.2s cubic-bezier(0.25, 1, 0.3, 1);
}
.intro-envelope__flap {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.intro-envelope__flap--top {
  clip-path: url(#flap-top-clip);
  z-index: 4;
  background-color: #fbfbf9;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.22)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.14));
  transform-origin: top center;
  transition: transform 2.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-envelope__flap--bottom {
  clip-path: url(#flap-bottom-clip);
  z-index: 3;
  background-color: #fbfbf9;
  filter: drop-shadow(0 -12px 18px rgba(0, 0, 0, 0.14)) drop-shadow(0 -3px 6px rgba(0, 0, 0, 0.08));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 100px;
  transform-origin: bottom center;
  transition: transform 2.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .intro-envelope__flap--bottom {
    padding-bottom: 60px;
  }
}
.intro-envelope__flap--left {
  clip-path: url(#flap-left-clip);
  z-index: 2;
  background-color: rgb(246.92, 246.92, 242.88);
  filter: drop-shadow(12px 0 18px rgba(0, 0, 0, 0.12)) drop-shadow(3px 0 6px rgba(0, 0, 0, 0.08));
  transform-origin: left center;
  transition: transform 2.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-envelope__flap--right {
  clip-path: url(#flap-right-clip);
  z-index: 1;
  background-color: rgb(246.92, 246.92, 242.88);
  filter: drop-shadow(-12px 0 18px rgba(0, 0, 0, 0.12)) drop-shadow(-3px 0 6px rgba(0, 0, 0, 0.08));
  transform-origin: right center;
  transition: transform 2.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-envelope__bottom-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #2c4333;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .intro-envelope__bottom-text {
    font-size: 1.8rem;
  }
}
.intro-envelope__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.3, 1), transform 0.35s cubic-bezier(0.25, 1, 0.3, 1);
  width: 100%;
}
.intro-envelope__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #2c4333;
  margin: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}
.intro-envelope__seal-ring {
  margin: 20px 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1c3d5a;
  border: 1px solid rgba(44, 67, 51, 0.25);
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  animation: sealPulse 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-envelope__seal-ring svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(28, 61, 90, 0.2));
}
.intro-envelope__seal-ring:hover {
  transform: scale(1.05);
  border-color: #1c3d5a;
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.15);
}
.intro-envelope__seal-ring:hover svg {
  transform: scale(1.1);
}
.intro-envelope--opened {
  pointer-events: none;
}
.intro-envelope--opened .intro-envelope__cta {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}
.intro-envelope--opened .intro-envelope__back {
  opacity: 0;
}
.intro-envelope--opened .intro-envelope__flap--top {
  transform: rotateX(180deg);
  opacity: 0;
}
.intro-envelope--opened .intro-envelope__flap--bottom {
  transform: translateY(100%);
  opacity: 0;
}
.intro-envelope--opened .intro-envelope__flap--left {
  transform: translateX(-100%);
  opacity: 0;
}
.intro-envelope--opened .intro-envelope__flap--right {
  transform: translateX(100%);
  opacity: 0;
}

@keyframes sealPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.15);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(28, 61, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
  }
}

/*# sourceMappingURL=main.css.map */
