* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #0e0b09;
  color: #f4ead2;
  line-height: 1.6;
}

section {
  padding: 80px 20px;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(198, 168, 92, 0.12), transparent 35%),
    linear-gradient(180deg, #120d0a 0%, #0e0b09 60%, #070504 100%);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.55) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 40px 20px;
}

.save-date {
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  color: #c6a85c;
  margin-bottom: 34px;
}

.honoree-name {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #f0ddad;
  margin-bottom: 26px;
}

.double-nickel {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.35em;
  color: #c6a85c;
  margin-bottom: 10px;
}

.event-title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: #d8c28a;
  margin-bottom: 28px;
}

.event-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: #f4ead2;
  margin-bottom: 18px;
}

.event-date {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.08em;
  color: #e6d3a3;
}

.event-details {
  background: #120d0a;
  position: relative;
}

.event-details h3 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #d8c28a;
  margin-bottom: 24px;
}

.event-details > .container > p {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.1rem;
  color: #efe4ca;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 185, 107, 0.15);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 185, 107, 0.35);
}

.detail-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #d8c28a;
  margin-bottom: 16px;
}

.detail-card p {
  color: #efe4ca;
  font-size: 1rem;
}

.rsvp-section {
  background:
    radial-gradient(circle at top, rgba(198, 168, 92, 0.08), transparent 35%),
    #0e0b09;
}

.rsvp-section h3 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #d8c28a;
  margin-bottom: 45px;
}

.rsvp-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 45px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 185, 107, 0.18);
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #e6d3a3;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(214, 185, 107, 0.22);
  color: #f4ead2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(214, 185, 107, 0.65);
  box-shadow: 0 0 0 3px rgba(214, 185, 107, 0.08);
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px 24px;
  background: linear-gradient(90deg, #8f6b2e, #d6b96b, #8f6b2e);
  border: none;
  color: #0e0b09;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(214, 185, 107, 0.18);
}

.hero-mask {
  position: absolute;
  top: 43%;
  right: 6%;
  width: min(440px, 34vw);
  height: auto;
  z-index: 2;
  opacity: 0.88;
  transform: translateY(-50%) rotate(-2deg);
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 40px 20px;
}