:root {
  --bg: #faf8f4;
  --bg-alt: #f1ece3;
  --ink: #2c2a26;
  --muted: #6b6a64;
  --accent: #5b8a72;
  --accent-dark: #3f6753;
  --border: #e3ddd2;
  --radius: 6px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 720px; }

h1, h2, h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: 2.4rem; line-height: 1.2; margin: 0 0 0.5em; }
h2 { font-size: 1.8rem; margin: 0 0 1rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.5rem; }

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

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-mark {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent-dark);
}
.brand-sub {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
}
.site-nav a:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--accent-dark);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.btn-soon {
  background: var(--bg-alt);
  color: var(--muted);
  border-color: var(--border);
  cursor: default;
  font-style: italic;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.hero .lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--bg-alt);
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding: 8px 0 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}
.price-list li + li {
  margin-top: 6px;
}
.price-list .duration {
  color: var(--muted);
}
.price-list .price {
  color: var(--ink);
  font-weight: 600;
}

.offers-heading {
  margin: 48px 0 16px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.offer {
  background: var(--bg);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 22px;
}
.offer h4 {
  margin: 0 0 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--accent-dark);
}
.offer p {
  color: var(--muted);
  margin: 0;
}

.note {
  margin-top: 28px;
  color: var(--muted);
  font-style: italic;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hours-table th {
  font-weight: 600;
  font-family: "Helvetica Neue", Arial, sans-serif;
  width: 40%;
}
.hours-table td {
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 8px;
}
.contact-grid h3 {
  margin-top: 1.25rem;
}
.contact-grid h3:first-child {
  margin-top: 0;
}

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

@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .site-nav { gap: 14px; font-size: 0.9rem; }
}
