/* Peach Tree Productions. Summery and warm, deliberately not Cornered's rust.
   One stylesheet for three pages: there is not enough here to justify more. */
:root {
  --ground: #fdf7ef;
  --panel:  #fffbf5;
  --ink:    #2c221c;
  --dim:    #7d6b5d;
  --rule:   #ecdcc9;
  --peach:  #c4643a;
  --peach-soft: #e79b6b;
  --leaf:   #5f7d5a;
  --serif:  ui-serif, "Iowan Old Style", Palatino, Georgia, serif;
  --mono:   ui-monospace, SFMono-Regular, "SF Mono", Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #1b1512;
    --panel:  #251d18;
    --ink:    #f1e7dd;
    --dim:    #a3907f;
    --rule:   #3a2d24;
    --peach:  #ea9663;
    --peach-soft: #b9724a;
    --leaf:   #8aa683;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--ground);
  color: var(--ink);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.page { max-width: 42rem; margin: 0 auto; }

/* The sun sits behind the wordmark. Pure CSS, because one decorative gradient
   is not worth an image request or an asset to keep in sync. */
header.masthead {
  padding: 64px 0 8px;
  position: relative;
}
header.masthead::before {
  content: "";
  position: absolute;
  top: 26px; left: -18px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--peach-soft), transparent 68%);
  opacity: .55;
  pointer-events: none;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 7vw, 40px);
  line-height: 1.12;
  margin: 0;
  color: var(--peach);
  position: relative;
}
.wordmark .llc {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 10px;
}
nav.top { margin-top: 26px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
nav.top a { color: var(--dim); text-decoration: none; margin-right: 18px; border-bottom: 1px solid transparent; }
nav.top a:hover, nav.top a[aria-current="page"] { color: var(--peach); border-bottom-color: var(--peach); }

h1.title { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 4px; color: var(--peach); }
h2 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 40px 0 8px; }
h3 { font-size: 15px; margin: 0 0 4px; }
p, li { color: var(--ink); }
.lead { font-size: 18px; line-height: 1.6; }
.dim { color: var(--dim); }
a { color: var(--peach); }
ul { padding-left: 1.15rem; }
li { margin: 5px 0; }
code { font-family: var(--mono); font-size: 13.5px; background: var(--panel);
       border: 1px solid var(--rule); border-radius: 3px; padding: 1px 5px; }

.card {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 18px 0;
}
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; color: var(--ink); margin-bottom: 6px; }
.card p:last-child { margin-bottom: 0; }

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: 3px;
  margin-left: 8px;
}
.stores { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.stores a {
  display: inline-block; text-decoration: none;
  border: 1px solid var(--rule); border-radius: 8px;
  padding: 8px 14px; font-size: 14px; background: var(--ground);
}
.stores a:hover { border-color: var(--peach); }

table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 15px; }
th, td { text-align: left; padding: 7px 10px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
     color: var(--dim); font-weight: 600; }

footer {
  margin-top: 56px; padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px; color: var(--dim);
}
footer a { color: var(--dim); }
footer .legal { margin-top: 8px; }
