:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --ink: #171412;
  --muted: #6b6258;
  --card: #fffaf1;
  --line: #ded1bd;
  --accent: #2e6b50;
  --accent-ink: #f8fff9;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(46, 107, 80, 0.16), transparent 32rem),
    linear-gradient(135deg, #fffaf1 0%, var(--bg) 54%, #efe3d0 100%);
  color: var(--ink);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(100%, 46rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(222, 209, 189, 0.9);
  border-radius: 2rem;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 2rem 5rem rgba(38, 30, 20, 0.12);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 7.75rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 36rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.email-card {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2.25rem;
  padding: 1rem 1.2rem;
  border-radius: 1.1rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.email-card:hover,
.email-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(46, 107, 80, 0.24);
}

.email-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.email-address {
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.note {
  max-width: 32rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}
