:root {
  --gold: #c9a258;
  --white: #f4f1ec;
  --muted: #8a8f9d;
  --input-bg: #4b4b4b;
  --input-border: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: white;
  min-height: 100vh;
  line-height: 1.4;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #EB1E5A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-content {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: black;
  flex-shrink: 0;
}

.event-label,
.event-date {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-label {
  color: white;
}

.event-date {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-top {
  background: white;
  color: #171717;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 22px 34px;
  min-width: 270px;
  box-shadow: var(--shadow);
}

.btn-top:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  background: pink;
}

.hero {
  padding: 72px 0 56px;
}

.hero-content {
  text-align: center;
}

.hero-subtitle {
  max-width: 860px;
  margin: 0 auto 40px;
  color: #171717;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 900px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.0rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.gold-text {
  color: #EB1E5A;
}

.white-text {
  color: #171717;
}

/* Two-column hero layout */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: #171717;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #171717;
  font-size: 1rem;
}

.hero-list li {
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #EB1E5A;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-signal {
  color: #171717;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-cta-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #EB1E5A;
}

.hero-gift {
  display: inline-block;
  background: #EB1E5A;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 999px;
  margin-top: 4px;
}

.hero-block-second {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(235, 30, 90, 0.18);
}

.hero-image-col .video-card {
  max-width: 100%;
  margin: 0;
}

.video-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background: #151515;
}

.signup-section {
  padding: 36px 0 90px;
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgb(229, 188, 195);
  border: 1px solid var(--card-border);
  border-radius: 40px;
  padding: 56px 48px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.0rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 42px;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .topbar {
    position: static;
  }

  .topbar-content {
    min-height: auto;
    padding: 14px 0 20px;
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .event-info {
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .event-label,
  .event-date {
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .btn-top {
    width: 100%;
    min-width: unset;
    padding: 18px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    line-height: 1.45;
    margin-bottom: 22px;
    max-width: 320px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    line-height: 0.95;
    gap: 8px;
    margin-bottom: 26px;
    max-width: 320px;
  }

  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  }

  .hero-image-col {
    order: -1;
  }

  .hero-image-col .video-card {
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-height: 260px;
    overflow: hidden;
  }

  .hero-image-col .video-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  .hero-text-col {
    background: #fdf0f3;
    padding: 24px 20px 28px;
    gap: 12px;
    text-align: left;
  }

  .hero-block-second {
    padding-top: 14px;
  }

  .video-card {
    border-radius: 24px;
    max-width: 100%;
  }

  .video-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .signup-section {
    padding: 26px 0 48px;
  }

  .form-card {
    padding: 30px 16px 26px;
    border-radius: 28px;
    max-width: 100%;
  }

  .form-card h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 0.95;
    text-align: center;
  }

}
@media (max-width: 768px) {
  .btn-top {
    padding: 12px 7px;
    font-size: 14px;
    border-radius: 20px;
  }
}