/* Winter Pottery Sale — palette in DESIGN.md */
:root {
  --ink: #2c2a26;
  --paper: #f6f2ec;
  --card: #fffdf9;
  --teal: #2f5d5a;
  --teal-dark: #234644;
  --clay: #b95c38;
  --muted: #5c5850;
  --line: #ddd4c6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a, a:visited { color: var(--teal); }
a:focus-visible, button:focus-visible, li:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

.hero {
  background: var(--teal);
  color: var(--paper);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}
.hero h1 {
  margin: 0.25rem 0;
  font-size: 2.75rem;
  line-height: 1.15;
}
.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #cfe0de;
}
.hero-sub {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  color: #e4efee;
  font-size: 1.1rem;
}

main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

section { margin-bottom: 3rem; }
h2 {
  font-size: 1.5rem;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.4rem;
}

.date-list, .expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.date-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.date-list .when { font-weight: bold; color: var(--teal-dark); display: block; }
.date-list .hours { color: var(--muted); }

.maker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}
.maker-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
}
.maker-list .maker-name {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: var(--clay);
}
.maker-list .maker-desc { margin: 0; color: var(--muted); }

.expect-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.6rem;
}
.expect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--clay);
}

li.fallback { color: var(--muted); font-style: italic; }

footer {
  background: var(--teal-dark);
  color: #cfe0de;
  text-align: center;
  padding: 1.5rem;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
}
