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

body {
  font-family: 'Lato', sans-serif;
  background: #fdf5f5;
  color: #2d2d2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
header {
  background: #9e6b72;
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
}
header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: .04em;
}
header p {
  margin-top: .9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #e8c5c8;
  font-style: italic;
}

/* ── Main ── */
main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
}

.card {
  background: #fff;
  border: 1px solid #e8d5d7;
  border-radius: 8px;
  padding: 2.5rem 2.8rem;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #9e6b72;
  margin-bottom: 1.6rem;
}

.email-btn {
  width: 100%;
  padding: .8rem;
  background: #9e6b72;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.email-btn:hover { background: #7a4f55; }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1.2rem;
  font-size: .82rem;
  color: #a88a8d;
  border-top: 1px solid #e8d5d7;
}
