/* SILO — "The Vessel" editorial light-paper. Bone surface, ink type, terracotta accent. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f4efe6;
  color: #1c1916;
}
.serif {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
}

/* Subtle paper grain */
.paper {
  background-image:
    radial-gradient(rgba(28, 25, 22, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(28, 25, 22, 0.02) 1px, transparent 1px);
  background-size:
    3px 3px,
    7px 7px;
  background-position:
    0 0,
    1px 2px;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Editorial body links (legal pages) */
.editorial a,
.prose-silo a {
  color: #c77b5c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(199, 123, 92, 0.45);
}
.editorial a:hover,
.prose-silo a:hover {
  text-decoration-color: #c77b5c;
}

/* Cook list row */
.cook-row {
  transition: background 0.15s ease;
}
.cook-row:hover {
  background: rgba(199, 123, 92, 0.06);
}

/* Section header eyebrow with terracotta dot */
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #857668;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c77b5c;
  display: inline-block;
}

/* Stamped (rotated) accent labels for personality */
.stamp {
  display: inline-block;
  border: 1.5px solid #c77b5c;
  color: #c77b5c;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-2deg);
}

/* Article body for legal pages on light paper */
.prose-silo h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0 0 6px;
  color: #1c1916;
}
.prose-silo .meta {
  color: rgba(28, 25, 22, 0.5);
  font-size: 13px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prose-silo h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 36px 0 10px;
  color: #1c1916;
}
.prose-silo p,
.prose-silo li {
  color: #3b332c;
  font-size: 17px;
  line-height: 1.65;
}
.prose-silo p {
  margin: 0 0 14px;
}
.prose-silo ul {
  padding-left: 22px;
}
.prose-silo li {
  margin-bottom: 8px;
}
