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

body {
  background: #020208;
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 20px;
}

.card {
  max-width: 560px;
  width: 100%;
  background: #07070f;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 260px;
  background-image: radial-gradient(circle, rgba(196,163,92,0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

/* ── Rules ── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210,175,100,0.7) 20%, rgba(240,205,120,1) 50%, rgba(210,175,100,0.7) 80%, transparent);
}

.gold-rule-thin {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,92,0.3) 20%, rgba(210,175,100,0.55) 50%, rgba(196,163,92,0.3) 80%, transparent);
}

/* ── Header ── */
.header {
  padding: 44px 52px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.overline {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196,163,92,0.65);
  margin-bottom: 16px;
  white-space: nowrap;
}

.title {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  background: linear-gradient(150deg, #c09040 0%, #eed898 28%, #fff8e0 50%, #e8cc78 72%, #a07830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.event-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.event-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.event-strip-item + .event-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(196,163,92,0.2);
}

.strip-label {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196,163,92,0.6);
  margin-bottom: 5px;
}

.strip-value {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(240,238,232,0.82);
}

/* ── Form ── */
.form-section {
  padding: 40px 52px 48px;
}

.form-intro {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(235,232,224,0.65);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.7;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(210,178,100,0.7);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,238,232,0.88);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(235,232,224,0.22);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(196,163,92,0.55);
  background: rgba(196,163,92,0.03);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(196,163,92,0.6);
  border-bottom: 1px solid rgba(196,163,92,0.6);
  pointer-events: none;
}

.field select option {
  background: #12121e;
  color: rgba(240,238,232,0.88);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Submit ── */
.submit-wrap {
  margin-top: 32px;
  text-align: center;
}

.submit-btn {
  display: inline-block;
  border: 1px solid rgba(210,178,100,0.8);
  background: rgba(196,163,92,0.1);
  color: #e8d080;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 17px 56px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 36px rgba(196,163,92,0.1);
  transition: background 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
  background: rgba(196,163,92,0.16);
  box-shadow: 0 0 48px rgba(196,163,92,0.18);
}

.submit-btn::before,
.submit-btn::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-color: rgba(210,178,100,0.75);
  border-style: solid;
}
.submit-btn::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.submit-btn::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.submit-note {
  margin-top: 14px;
  font-size: 9px;
  color: rgba(235,232,224,0.28);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Success state ── */
.success {
  display: none;
  padding: 60px 52px;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,92,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
}

.success-icon::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,92,0.2);
}

.success-check {
  font-size: 18px;
  background: linear-gradient(135deg, #c8aa60, #f5e8b0, #c8aa60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-title {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: #f0ece2;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.success-body {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(235,232,224,0.65);
  line-height: 1.8;
}

/* ── Footer ── */
.footer {
  padding: 22px 52px 34px;
  text-align: center;
}

.footer-logo {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(210,178,100,0.55);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}
