/* Minimal landing — La Ferme */
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #444444;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.logo {
  width: min(520px, 78vw);
  height: auto;
  display: block;
}

.tagline {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--muted);
}

.email {
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,.35);
  padding-bottom: 2px;
}

.email:hover,
.email:focus-visible {
  border-bottom-color: rgba(17,17,17,.9);
  outline: none;
}
