:root {
  --bg: #e8e1d1;
  --text: #0e1e43;
  --muted: #4a5470;
  --accent: #725a34;
  --border: rgba(14, 30, 67, 0.14);
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

address {
  font-style: normal;
}

.tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 2.5rem;
}

a {
  color: var(--accent);
}

/* ---- homepage ---- */

body.home {
  min-height: 100vh;
  display: flex;
}

body.home .wrap {
  margin: auto;
  padding: 3rem 1.5rem;
}

body.home h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 2.75rem;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}

body.home address,
body.home p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

body.home address {
  margin-bottom: 1rem;
}

body.home .home-link {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: none;
}

body.home .home-link:hover {
  color: var(--accent);
}
