:root {
  color-scheme: dark;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #060406;
  color: #f3f1ef;
}

.ballet {
  font-family: "Ballet", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

main {
  background:
    radial-gradient(circle at top, rgba(209,177,88,0.16), transparent 28rem),
    radial-gradient(circle at 85% 48%, rgba(209,177,88,0.1), transparent 24rem),
    radial-gradient(circle at 12% 76%, rgba(209,177,88,0.08), transparent 22rem),
    linear-gradient(180deg, #09070b 0%, #120f17 48%, #09070b 100%);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.88));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #d1b158;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1 {
  margin: 0;
  font-family: "Ballet", cursive;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(209,177,88,0.35),
    0 12px 28px rgba(0,0,0,0.72),
    0 0 22px rgba(255,255,255,0.26),
    0 0 58px rgba(209,177,88,0.42);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.55));
}

.hero-content p {
  display: inline-block;
  margin: 2.6rem auto 0;
  padding: 0.85rem 1.25rem;
  color: #f2d483;
  font-size: clamp(0.72rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
  text-align: center;
  background: rgba(6,4,6,0.42);
  border-top: 1px solid rgba(209,177,88,0.42);
  border-bottom: 1px solid rgba(209,177,88,0.28);
  box-shadow: 0 20px 55px rgba(0,0,0,0.32);
  backdrop-filter: blur(5px);
}

.hero-content p span + span::before {
  content: " ";
}

.hero-text {
  margin: 1.5rem auto 2rem;
  max-width: 680px;
  font-size: 1.05rem;
  color: #e5e0dc;
  line-height: 1.9;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(209,177,88,0.95);
  color: #060406;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(0,0,0,0.32);
}

.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: transparent;
}

.section-light {
  background: transparent;
}

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

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #d1b158;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.section-description {
  margin: 1rem auto 0;
  max-width: 760px;
  color: #cfc7c0;
  line-height: 1.85;
  font-size: 1rem;
}

.invitation-section {
  background: transparent;
}

.invitation-card {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 32px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(209,177,88,0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}

.invitation-card::before,
.invitation-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1b158, transparent);
  transform: translateX(-50%);
}

.invitation-card::before {
  top: 1.5rem;
}

.invitation-card::after {
  bottom: 1.5rem;
}

.invitation-card h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
}

.invitation-card p {
  max-width: 720px;
  margin: 0 auto 1rem;
  color: #d7d1c8;
  font-size: 1.05rem;
  line-height: 1.9;
}

.invitation-closing {
  margin-top: 1.8rem !important;
  color: #f2d483 !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .invitation-card {
    padding: 2.4rem 1.25rem;
    border-radius: 24px;
  }

  .invitation-card h2 {
    font-size: 2rem;
  }

  .invitation-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card,
.menu-card {
  position: relative;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(209,177,88,0.24);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  overflow: hidden;
}

.info-card::before,
.menu-card::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 2rem;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, #d1b158, transparent);
}

.info-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  animation: cardEntrance 0.75s ease both;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:nth-child(2) {
  animation-delay: 0.08s;
}

.info-card:nth-child(3) {
  animation-delay: 0.16s;
}

.info-card:nth-child(4) {
  animation-delay: 0.24s;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -28% -45% -28%;
  height: 145px;
  background: radial-gradient(circle, rgba(209,177,88,0.2), transparent 66%);
  opacity: 0.65;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,212,131,0.48);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42), 0 0 34px rgba(209,177,88,0.12);
}

.info-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.info-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  color: #f2d483;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.2), transparent 34%),
    rgba(209,177,88,0.1);
  border: 1px solid rgba(209,177,88,0.36);
  box-shadow: 0 0 30px rgba(209,177,88,0.16);
}

.info-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card:hover .info-icon {
  animation: iconGlow 1.2s ease-in-out infinite alternate;
}

.info-card-date::after {
  background: radial-gradient(circle, rgba(242,212,131,0.22), transparent 66%);
}

.info-card-place::after {
  background: radial-gradient(circle, rgba(218,181,94,0.2), transparent 66%);
}

.info-card-price::after {
  background: radial-gradient(circle, rgba(255,231,166,0.18), transparent 66%);
}

.info-card-payment::after {
  background: radial-gradient(circle, rgba(198,151,58,0.24), transparent 66%);
}

.info-card h3,
.menu-card h3 {
  margin: 0 0 1rem;
  padding-top: 0.95rem;
  color: #d1b158;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.info-card p:first-of-type {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.2;
  font-weight: 700;
}

.info-card p,
.menu-card p {
  margin: 0;
  color: #d7d1c8;
  font-size: 1rem;
  line-height: 1.8;
}

.small {
  margin-top: 0.75rem;
  color: #bbb2a8;
  font-size: 0.95rem;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconGlow {
  from {
    box-shadow: 0 0 24px rgba(209,177,88,0.16);
    transform: translateY(0) scale(1);
  }

  to {
    box-shadow: 0 0 42px rgba(242,212,131,0.28);
    transform: translateY(-2px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-card,
  .info-card:hover .info-icon {
    animation: none;
  }

  .info-card,
  .info-card::after,
  .info-icon {
    transition: none;
  }
}

.menu-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-list > .section-label {
  display: block;
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  margin: 0 0 0.8rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.menu-list > .section-label::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, #d1b158, transparent);
}

.organizer-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.6rem 1.5rem;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(209,177,88,0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}

.organizer-card::before,
.organizer-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1b158, transparent);
  transform: translateX(-50%);
}

.organizer-card::before {
  top: 1.3rem;
}

.organizer-card::after {
  bottom: 1.3rem;
}

.organizer-card p:last-child {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.25;
  font-weight: 700;
  text-shadow: 0 12px 28px rgba(0,0,0,0.45), 0 0 24px rgba(209,177,88,0.18);
}

.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #d7d1c8;
  font-size: 0.95rem;
  background:
    radial-gradient(circle at top, rgba(209,177,88,0.08), transparent 44%),
    linear-gradient(180deg, #09070b 0%, #060406 100%);
  border-top: 1px solid rgba(209,177,88,0.18);
}

@media (max-width: 640px) {
  .hero {
    min-height: 78vh;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5rem;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    background: black;
  }

  .hero-overlay {
    display: block;
    background: radial-gradient(circle at center, rgba(0,0,0,0.18), rgba(0,0,0,0.78));
  }

  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding-top: 8rem;
  }

  h1 {
    font-size: clamp(5rem, 18vw, 7rem);
    line-height: 0.85;
    margin-bottom: 0;
    text-shadow:
      0 2px 0 rgba(209,177,88,0.45),
      0 10px 24px rgba(0,0,0,0.85),
      0 0 24px rgba(255,255,255,0.28),
      0 0 62px rgba(209,177,88,0.52);
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.72));
  }

  .hero-content p {
    max-width: calc(100% - 2rem);
    margin-top: 2.45rem;
    padding: 0;
    color: #f2d483;
    font-size: clamp(0.9rem, 3.7vw, 1.08rem);
    letter-spacing: 0.11em;
    line-height: 1.65;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-shadow: 0 8px 22px rgba(0,0,0,0.78), 0 0 18px rgba(209,177,88,0.34);
  }

  .hero-content p span {
    display: block;
  }

  .hero-content p span + span::before {
    content: "";
  }
  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-text {
    margin: 0.9rem auto 1.2rem;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-button {
    width: 100%;
    padding: 0.95rem 1rem;
  }

  .section {
    padding: 3rem 0.9rem;
  }

  .info-card,
  .menu-card {
    padding: 1.25rem;
  }

  .cards-grid {
    display: block;
    padding: 2.4rem 1.25rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(209,177,88,0.28);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    overflow: hidden;
  }

  .menu-list {
    display: block;
    padding: 2.4rem 1.25rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(209,177,88,0.28);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    overflow: hidden;
  }

  .info-card {
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 1.45rem 0;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .menu-card {
    padding: 1.45rem 0;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .menu-card + .menu-card {
    border-top: 1px solid rgba(209,177,88,0.2);
  }

  .info-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .info-card::after {
    display: none;
  }

  .info-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 1.15rem;
  }

  .info-icon svg {
    width: 23px;
    height: 23px;
  }

  .info-card::before,
  .menu-card::before {
    left: 1.25rem;
    width: 76px;
  }

  .info-card::before {
    left: 50%;
    top: auto;
    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, transparent, #d1b158, transparent);
    transform: translateX(-50%);
    opacity: 0.5;
  }

  .menu-card::before {
    left: 50%;
    top: auto;
    bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, transparent, #d1b158, transparent);
    transform: translateX(-50%);
    opacity: 0.5;
  }

  .info-card:last-child::before {
    display: none;
  }

  .menu-card:last-child::before {
    display: none;
  }

  .info-card h3 {
    padding-top: 0;
    margin-bottom: 0.65rem;
    text-align: center;
  }

  .menu-card h3 {
    padding-top: 0;
    margin-bottom: 0.65rem;
    text-align: center;
  }

  .menu-card p {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
  }

  .info-card p:first-of-type {
    font-size: 1.45rem;
  }

  .cards-grid,
  .menu-list {
    gap: 0.9rem;
  }

}
