:root {
  --text: #2b2b26;
  --muted: #6b6b62;
  --bg: #fbf8f2;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  padding: 1.5rem;
}

main {
  max-width: 32rem;
}

h1 {
  font-family:
    "Helvetica Neue",
    Arial,
    system-ui,
    sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.order-button {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.75rem 1.75rem;
  background: var(--text);
  color: var(--bg);
  font-family:
    "Helvetica Neue",
    Arial,
    system-ui,
    sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2rem;
}

.order-button:hover {
  opacity: 0.85;
}

.contact {
  margin-top: 2rem;
}

.contact p {
  margin: 0 0 0.4rem 0;
}

.contact a {
  color: var(--muted);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--muted);
}

.hours p {
  margin: 0 0 0.4rem 0;
}

.hours p:last-child {
  margin-bottom: 0;
}
