:root {
  --ink: #1E2321;
  --chalk: #EDEAE2;
  --brass: #B08D57;
  --thread: #8C3B2E;
  --graphite: #33312C;
  --line: #d8d3c6;
  --white: #FBFAF7;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;

  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.5;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 500; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { max-width: 62ch; }

.muted { color: #6b675c; font-size: 0.92rem; }

/* --- Header --- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--graphite);
}

.main-nav a:hover { color: var(--thread); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 3px;
}

.nav-cta:hover { background: var(--thread) !important; color: var(--white) !important; }

/* --- Hero --- */

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr;
  gap: 40px;
  align-items: center;
}

.hero-lede {
  font-size: 1.15rem;
  margin-bottom: 1.6em;
}

.hero-tape {
  justify-self: end;
  width: 60px;
}

.tape-svg { width: 100%; height: auto; }

@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-tape { display: none; }
}

/* --- Buttons --- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-primary {
  background: var(--thread);
  color: var(--white);
}

.btn-primary:hover:not(:disabled) { background: #742f24; }

.btn-primary:disabled {
  background: #c9c4b6;
  color: #8a8578;
  cursor: not-allowed;
}

.btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* --- Sections --- */

.section { padding: 64px 0; }
.section-alt { background: var(--chalk); }

.section-head { margin-bottom: 36px; }
.section-head p { color: #6b675c; }

/* --- Services --- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--white);
  padding: 24px;
}

.service-card h3 { margin-bottom: 0.3em; }

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--brass);
  font-weight: 600;
}

/* --- Process (measuring-tape numbered list) --- */

.process-tape {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}

.process-tape li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-tape .tick {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.process-tape h3 { margin-bottom: 0.2em; }
.process-tape p { margin: 0; color: #524f45; }

/* --- Booking form --- */

.booking-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #b9b4a5;
  border-radius: 3px;
  background: var(--white);
  color: var(--graphite);
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

.details-fields {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.details-fields legend {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  padding: 0;
  margin-bottom: 4px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}

.slot-btn {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 9px 6px;
  border: 1px solid #b9b4a5;
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
}

.slot-btn:hover { border-color: var(--ink); }

.slot-btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.slot-btn:disabled {
  color: #b2ada0;
  cursor: not-allowed;
  text-decoration: line-through;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.92rem;
}

.form-status.error { color: var(--thread); }
.form-status.success { color: #2f6e4c; }

.confirmation {
  max-width: 560px;
  border: 1.5px solid var(--ink);
  padding: 24px;
  border-radius: 3px;
}

/* --- Footer --- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.site-footer p {
  font-size: 0.88rem;
  color: #6b675c;
  margin: 0;
}
