:root {
  --paper: #f3eee4;
  --ink: #1c1915;
  --muted: #6a645b;
  --menta: #1f6b4a;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: var(--ink);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      90deg,
      rgba(243, 238, 228, 0.92) 0%,
      rgba(243, 238, 228, 0.78) 42%,
      rgba(243, 238, 228, 0.28) 100%
    ),
    url("background.jpg") center / cover no-repeat;
  background-color: var(--paper);
}

a {
  color: inherit;
}

.top {
  padding: 1.5rem 8vw 0;
}

.mark {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  text-decoration: none;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 8vw 4rem;
}

.hero {
  max-width: 40rem;
  padding: 3rem 0;
}

.contact {
  font-family: ui-sans-serif, system-ui, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.contact {
  margin: 2.2rem 0 0;
  font-size: 0.95rem;
}

.contact a {
  color: var(--menta);
  text-underline-offset: 0.2em;
}

.contact a:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(
        180deg,
        rgba(243, 238, 228, 0.94) 0%,
        rgba(243, 238, 228, 0.82) 55%,
        rgba(243, 238, 228, 0.55) 100%
      ),
      url("background.jpg") center / cover no-repeat;
    background-color: var(--paper);
  }
}
