:root {
  --paper: #f6f1e7;
  --paper-alt: #efe7d9;
  --ink: #241f1a;
  --ink-soft: #5b5148;
  --rule: #ddd0bb;
  --accent: #8a3324;
  --accent-soft: #b25a44;
  --radius: 10px;
  --wrap: 68rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

a { color: var(--accent); }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-family: Fraunces, Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-soft);
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(178, 90, 68, 0.16), transparent 65%),
    linear-gradient(var(--paper), var(--paper));
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.2rem);
  max-width: 18ch;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { background: var(--accent-soft); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--rule);
}

.btn-ghost:hover { background: rgba(138, 51, 36, 0.08); color: var(--accent); }

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--rule);
}

.section-alt { background: var(--paper-alt); }

.section h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.section-lede {
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 2.2rem;
}

.plain-h3 {
  font-size: 1.15rem;
  margin-top: 0;
}

/* Cards */
.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.card {
  background: #fffaf1;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* Split layout */
.split {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  align-items: start;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fffaf1;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.steps span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Hours */
.hours {
  width: 100%;
  max-width: 34rem;
  border-collapse: collapse;
  background: #fffaf1;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}

.hours tr:last-child th,
.hours tr:last-child td { border-bottom: 0; }

.hours th { color: var(--ink); font-weight: 500; }

.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

.hours .closed { color: var(--accent); }

.fineprint {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 58ch;
}

address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
  background: var(--paper-alt);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-inner p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
