:root {
  color: #1d211b;
  background: #f7f4ee;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.hero {
  background: #244036;
  color: #fffdf6;
  min-height: 88vh;
  padding: 24px clamp(18px, 4vw, 56px) 48px;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 36px;
  max-width: 1160px;
}

.nav img {
  background: #fffdf6;
  border-radius: 6px;
  height: 52px;
  padding: 8px;
}

.nav a,
.button,
button {
  background: #f1c84c;
  border: 0;
  border-radius: 6px;
  color: #1e241d;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 11px 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fffdf6;
}

.hero-grid,
.split,
.rsvp {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  margin: 0 auto;
  max-width: 1160px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: #d8a93e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.lede {
  color: #eee8d8;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 660px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image,
.split img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.details-band {
  background: #fffdf6;
  border-bottom: 1px solid #e3ded2;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.details-band div {
  padding: clamp(18px, 3vw, 34px);
}

.details-band span,
.details-band small {
  color: #697166;
  display: block;
}

.details-band strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin: 4px 0;
}

.split,
.impact,
.rsvp {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.split p,
.rsvp p {
  color: #4d5549;
  font-size: 1.08rem;
  max-width: 640px;
}

.impact {
  background: #fffdf6;
}

.impact > div {
  margin: 0 auto;
  max-width: 1160px;
}

.impact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

article {
  border: 1px solid #ded7ca;
  border-radius: 8px;
  padding: 22px;
}

article strong {
  font-size: 1.35rem;
}

form {
  background: #fffdf6;
  border: 1px solid #ded7ca;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  color: #465044;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 6px;
}

input,
textarea {
  background: #fff;
  border: 1px solid #cfc8bc;
  border-radius: 6px;
  color: #1d211b;
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

#form-status {
  font-weight: 800;
  margin: 0;
}

footer {
  align-items: center;
  background: #1d211b;
  color: #fffdf6;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 24px;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .rsvp,
  .details-band,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .split img {
    aspect-ratio: 16 / 11;
  }
}
