:root {
  --ink: #1d1a17;
  --paper: #f5f0e8;
  --card: #fffdf8;
  --accent: #8a5a2b;
  --accent-dark: #6d4520;
  --muted: #5c534a;
  --line: #d9cfc0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); }
a:focus-visible, .btn:focus-visible, th:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Header */
.site-header {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--ink); color: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--paper); text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--accent); color: var(--paper);
  font-weight: bold; font-family: Georgia, serif;
}
.brand-name { font-size: 1.15rem; font-weight: bold; }
.site-nav { display: flex; gap: 1.25rem; }
.site-nav a {
  color: var(--paper); text-decoration: none; font-size: 1rem;
  border-bottom: 2px solid transparent; padding: 0.15rem 0;
}
.site-nav a:hover, .site-nav a:focus-visible { border-bottom-color: var(--accent); }

/* Hero */
.hero {
  padding: 4rem 1.5rem 3rem;
  max-width: 46rem; margin: 0 auto;
  text-align: center;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; }
.hero-sub { margin-top: 1rem; color: var(--muted); font-size: 1.125rem; }
.hero-cta { margin-top: 1.75rem; }

.btn {
  display: inline-block;
  background: var(--accent); color: var(--paper);
  padding: 0.7rem 1.4rem; border-radius: 999px;
  text-decoration: none; font-weight: bold;
}
.btn:hover { background: var(--accent-dark); }

/* Panels */
.panel {
  max-width: 42rem; margin: 0 auto 3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
}
.panel h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.note { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }

/* Hours */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 0.6rem 0.25rem; border-bottom: 1px solid var(--line);
  text-align: left; font-size: 1.05rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table td { color: var(--muted); }

/* Prices */
.price-list { list-style: none; }
.price-list li {
  display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: none; }
.service { font-size: 1.05rem; }
.dots { flex: 1; border-bottom: 2px dotted var(--line); }
.price { font-weight: bold; color: var(--accent-dark); white-space: nowrap; }

/* Contact */
.contact-info { font-style: normal; margin-bottom: 1.25rem; }
.contact-info p { margin-bottom: 0.35rem; }
.map-frame {
  margin-top: 1.25rem;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* Footer */
.site-footer {
  text-align: center; padding: 1.5rem;
  color: var(--muted); font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 600px) {
  .site-header { padding: 0.85rem 1rem; }
  .site-nav { gap: 0.9rem; }
  .site-nav a { font-size: 0.95rem; }
  .hero { padding: 2.5rem 1rem 2rem; }
  .panel { padding: 1.25rem; margin: 0 1rem 2rem; }
}
