:root {
  --ink: #1a1a1a;
  --paper: #fafaf8;
  --line: #e2e0d8;
  --amber: #c47f17;
  --muted: #6b6b64;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #ece9de;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
.page {
  max-width: 1040px;
  margin: 40px auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 780px) {
  .page { margin: 0; border-radius: 0; border-left: none; border-right: none; }
  .wrap { padding: 0 24px; }
}
a { color: inherit; }
header {
  padding: 48px 0 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.brand {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 32px;
}
.brand span { color: var(--amber); }
h1 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 40px;
}
section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
section:last-of-type { border-bottom: none; }
h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 16px;
}
.list {
  list-style: none;
}
.list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.list li:last-child { border-bottom: none; }
.list li strong { font-weight: 600; }
.about-text {
  font-size: 15.5px;
  max-width: 720px;
  line-height: 1.75;
}
.about-text p { margin-bottom: 12px; }
.about-text p:last-child { margin-bottom: 0; }
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.towns .county { font-size: 15px; line-height: 1.9; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
}
.schedule-row .day { font-weight: 600; }
.schedule-row .time { color: var(--amber); }
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-of-type { border-bottom: none; }
.price-row .amt { font-weight: 600; }
.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.fee-note {
  font-size: 13.5px;
  color: var(--muted);
  background: #f0efe6;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 14px;
  max-width: 620px;
  margin-bottom: 24px;
}
.fee-note strong { color: var(--ink); }
.payment-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-pill {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #f0efe6;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-placeholder {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 8px;
}
footer {
  padding: 8px 0 48px;
  text-align: center;
}
footer .sub { margin-left: auto; margin-right: auto; }
.fine-print {
  font-size: 13px;
  color: var(--muted);
  margin-top: 48px;
}
.calendly-inline-widget {
  min-width: 280px;
  width: 100%;
  height: 80vh;
  max-height: 680px;
}
@media (max-width: 560px) {
  .cols { grid-template-columns: 1fr; gap: 24px; }
  h1 { font-size: 28px; }
  .calendly-inline-widget {
    height: 75vh;
    max-height: 560px;
  }
}