/* Kwekerij Wilgenhof — coming-soon page. System typefaces only: nothing to
   fetch, nothing the CSP has to allow. */
:root {
  --ground: #f4efe3;
  --ground-2: #e9e2cf;
  --card: #fffdf7;
  --ink: #22301b;
  --muted: #5e6656;
  --leaf: #3f5a2c;
  --leaf-2: #5d7f3e;
  --line: #d9d1bb;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { background: var(--ground); }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  color: var(--ink);
  font: 17px/1.6 var(--sans);
  background:
    radial-gradient(1200px 600px at 15% -10%, #e3ead2 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 110%, var(--ground-2) 0%, transparent 60%),
    var(--ground);
}

.card {
  width: 100%;
  max-width: 600px;
  padding: 56px 48px 48px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 24px 60px -30px rgba(34, 48, 27, .35);
}

.mark { display: block; margin: 0 auto 24px; }

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf-2);
}

h1 {
  margin: 0 0 20px;
  font: 400 clamp(38px, 8vw, 56px)/1.08 var(--serif);
  letter-spacing: -.01em;
}
h1 span { display: block; color: var(--leaf); font-style: italic; }

.lede { margin: 0 auto; max-width: 30em; color: var(--muted); }

.rule {
  width: 56px;
  height: 2px;
  margin: 32px auto;
  background: var(--leaf-2);
  border-radius: 2px;
  opacity: .5;
}

.note { margin: 0; font-family: var(--serif); font-style: italic; color: var(--muted); }

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.button:hover { background: var(--leaf-2); }

footer { margin-top: 28px; font-size: 14px; color: var(--muted); }
footer p { margin: 0; }

@media (max-width: 520px) {
  .card { padding: 40px 24px 36px; border-radius: 16px; }
}
