* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', sans-serif;
  background: #fff;
  color: #1c1c1c;
  line-height: 1.6;
}
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.hero {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 3rem;
  overflow: hidden;
  background: #fff;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.3), transparent 50%),
    linear-gradient(135deg, rgba(255, 223, 186, 0.2), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #b88b26;
  margin-bottom: 1rem;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  color: #a17c1c;
  margin-bottom: 0.4rem;
}
.hero__date {
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero__intro {
  max-width: 40ch;
  margin-bottom: 1.5rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a17c1c;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.hero__cta:hover {
  transform: translateY(-2px);
}
.section {
  margin-top: 3rem;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #a17c1c;
  margin-bottom: 1rem;
}
.timeline {
  display: grid;
  gap: 1rem;
}
.timeline article {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.timeline .time {
  font-weight: 700;
  color: #a17c1c;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.rsvp__form {
  display: grid;
  gap: 1rem;
  background: #fefbf7;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(161, 124, 28, 0.25);
}
label {
  font-size: 0.9rem;
  line-height: 1.5;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0.4rem;
  background: #fff;
}
textarea {
  resize: vertical;
}
.rsvp__form button {
  border: none;
  background: #a17c1c;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}
.rsvp__form button:hover {
  transform: translateY(-2px);
}
.checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.rsvp__note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.vendor-grid {
  display: grid;
  gap: 1rem;
}
.vendor-grid article {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}
.vendor-grid a {
  color: #a17c1c;
  text-decoration: none;
  font-weight: 600;
}
.dresscode p {
  margin-bottom: 0.5rem;
}
.contact {
  text-align: center;
}
footer {
  text-align: center;
  padding: 2rem 0 3rem;
  color: rgba(0, 0, 0, 0.55);
}
@media (min-width: 700px) {
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
