:root {
  --sand: #f3ead8;
  --marble: #faf6ee;
  --stone: #1e1a16;
  --olive: #3c4a32;
  --leaf: #6b7f4e;
  --copper: #b56a2b;
  --clay: #c4652c;
  --muted: #6a5a48;
  --foam: #fff8ee;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--stone);
  font-family: "Segoe UI", Calibri, sans-serif;
}
.serif {
  font-family: Palatino, "Palatino Linotype", "Book Antiqua", serif;
  letter-spacing: -0.02em;
}
.tile {
  background: var(--marble);
  border: 3px solid #b56a2b;
}
.rule {
  display: block;
  width: 3.4rem;
  height: 3px;
  background: #b56a2b;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
}
img { display: block; max-width: 100%; }
details {
  background: var(--marble);
  border: 3px solid #b56a2b;
  padding: 1.1rem 1.2rem;
  color: var(--stone);
}
summary { cursor: pointer; font-weight: 800; }
.mosaic {
  background-image:
    linear-gradient(rgba(181, 106, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 106, 43, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
