/* Leaf & Kettle tea menu — palette in DESIGN.md */

:root {
  --ink: #2b2118;
  --paper: #faf6ef;
  --card: #ffffff;
  --accent: #7a3b1f;
  --accent-soft: #e9dccd;
  --muted: #6d5f52;
  --rule: #d8cbb9;
}

* { box-sizing: border-box; }

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

.masthead {
  background: var(--accent);
  color: #fff8f0;
  text-align: center;
  padding: 3rem 1.5rem 2.25rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.masthead h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

.tagline {
  margin: 0.5rem 0 0;
  font-style: italic;
  color: var(--accent-soft);
}

.menu {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
}

.menu-group h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.4rem;
  margin: 0 0 0.75rem;
}

.menu-group { margin-bottom: 2.25rem; }

.teas {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tea {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.tea-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.tea-name {
  font-weight: bold;
  font-size: 1.05rem;
}

.tea-dots {
  flex: 1;
  border-bottom: 1px dotted var(--rule);
  min-width: 1rem;
}

.tea-price {
  font-variant-numeric: tabular-nums;
  font-weight: bold;
  white-space: nowrap;
}

.tea-note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.foot {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  padding: 1rem 1.5rem 2.5rem;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .masthead { padding: 2.25rem 1rem 1.75rem; }
  .menu { padding: 2rem 1rem 1.5rem; }
  .tea { padding: 0.75rem 0.85rem; }
}
