:root {
  --ink: #241f1c;
  --bone: #f1ece3;
  --bone-dim: #e8e0d2;
  --wine: #7a2333;
  --wine-deep: #591a26;
  --brass: #b8935a;
  --line: rgba(36, 31, 28, 0.14);
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

h1, h2 { font-family: var(--font-display); font-weight: 500; margin: 0; }

a { color: inherit; }

.hidden { display: none !important; }

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo { height: 40px; width: 40px; object-fit: cover; border-radius: 3px; }
.brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.01em; }
.topnav { display: flex; gap: 28px; font-size: 0.95rem; }
.topnav a { text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.topnav a:hover { border-color: var(--brass); }
.cta-link { color: var(--wine); font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 8vw 6vw 6vw;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  max-width: 11ch;
}
.tagline {
  margin: 22px 0 30px;
  max-width: 42ch;
  font-size: 1.1rem;
  color: #4a423c;
}
.btn-primary {
  display: inline-block;
  background: var(--wine);
  color: var(--bone);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 2px;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--wine-deep); }
.btn-primary:disabled { background: #a99; cursor: not-allowed; }

.hero-mark {
  height: 320px;
  border-radius: 4px;
  background:
    linear-gradient(150deg, var(--wine) 0%, var(--wine) 38%, var(--brass) 38%, var(--brass) 40%, var(--ink) 40%, var(--ink) 100%);
  opacity: 0.92;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-mark { height: 160px; order: -1; }
}

/* ---------- Sections ---------- */
.section { padding: 60px 6vw; max-width: 900px; margin: 0 auto; }
.section.alt { background: var(--bone-dim); max-width: none; }
.section.alt > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Services ---------- */
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.service-list .svc-name { font-weight: 500; }
.service-list .svc-meta { color: #6b6259; font-size: 0.92rem; }
.service-list .svc-price { font-family: var(--font-display); color: var(--wine); white-space: nowrap; }

/* ---------- Hours ---------- */
.hours-list { list-style: none; margin: 0; padding: 0; max-width: 420px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list .closed { color: #9a8f83; }
.vacation-notice {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(122, 35, 51, 0.08);
  border-left: 3px solid var(--wine);
  font-size: 0.95rem;
}

/* ---------- Booking form ---------- */
.booking-form { display: flex; flex-direction: column; gap: 18px; max-width: 480px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; color: #55504a; }
.field input, .field select {
  font: inherit;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .btn-primary:focus, .slot:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.slot-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.9rem;
}
.slot.selected { background: var(--wine); color: var(--bone); border-color: var(--wine); }
.hint { color: #9a8f83; font-size: 0.9rem; }
.form-message { padding: 12px 14px; border-radius: 2px; font-size: 0.92rem; }
.form-message.ok { background: rgba(122, 35, 51, 0.08); border-left: 3px solid var(--wine); }
.form-message.err { background: rgba(180, 40, 40, 0.08); border-left: 3px solid #b42828; }

/* ---------- Footer ---------- */
.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  color: #6b6259;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  align-items: center;
}
.admin-link { margin-left: auto; color: #9a8f83; text-decoration: none; }
.admin-link:hover { color: var(--wine); }

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