/* Article pages — shares the homepage palette and type system. */
:root {
  --bone: #F6F1EA;
  --bone-deep: #EDE5D7;
  --cream: #FBF8F2;
  --terracotta: #C17E68;
  --terracotta-deep: #A35E48;
  --terracotta-soft: #E8C9BD;
  --ink: #2B1F1B;
  --ink-soft: #5C4A42;
  --ink-read: #43332C;
  --muted: #6B5C53;
  --line: rgba(43, 31, 27, 0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* Top bar */
.article-topbar {
  background: rgba(246, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.article-topbar .bar-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
.brand em { font-style: italic; color: var(--terracotta-deep); }
/* Sits between the brand and the booking button, so a reader can always get
   back to the full list of articles. */
.bar-articles {
  margin-left: auto;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta-deep);
  text-decoration: none;
  padding: 8px 4px;
  white-space: nowrap;
}
.bar-articles:hover { text-decoration: underline; }
.bar-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  background: var(--terracotta-deep);
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.bar-cta:hover { background: var(--ink); }

/* Draft banner */
.draft-banner {
  background: #7A2E1E;
  color: #FBF0EA;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 12px 24px;
}
.draft-banner strong { letter-spacing: 0.04em; }

/* Layout */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
main { padding: 40px 0 24px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb a { color: var(--terracotta-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--line); }

/* Heading + meta */
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
}
.article-meta {
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.article-meta strong { color: var(--ink-soft); font-weight: 500; }

/* Quick answer box — short direct answer near the top */
.quick-answer {
  background: var(--cream);
  border: 1px solid var(--terracotta-soft);
  border-left: 4px solid var(--terracotta-deep);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 0 0 32px;
}
.quick-answer-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-deep);
  margin: 0 0 6px;
}
.quick-answer p:last-child { margin: 0; color: var(--ink-read); font-weight: 400; }

/* Body */
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin: 28px 0 10px;
}
.article-body p { margin: 0 0 18px; color: var(--ink-read); font-weight: 400; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 24px; color: var(--ink-read); font-weight: 400; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--terracotta-deep); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.article-body blockquote {
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 0 0 20px;
  font-style: italic;
  color: var(--ink-soft);
}

/* Callout — used for "when to seek help" and key-point boxes */
.callout {
  background: var(--cream);
  border: 1px solid var(--terracotta-soft);
  border-left: 4px solid var(--terracotta-deep);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 0 0 24px;
}
.callout > *:last-child { margin-bottom: 0; }
.callout h3 { margin-top: 0; color: var(--terracotta-deep); }
.callout p, .callout li { color: var(--ink-read); font-weight: 400; }

/* Related links */
.related {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.related h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--ink);
}
.related ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related a { color: var(--terracotta-deep); text-decoration: none; font-size: 16px; }
.related a:hover { text-decoration: underline; }

/* CTA */
.article-cta {
  background: var(--terracotta-deep);
  color: var(--cream);
  border-radius: 12px;
  padding: 32px;
  margin: 44px 0 8px;
  text-align: center;
}
.article-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
}
.article-cta p { color: var(--terracotta-soft); margin-bottom: 20px; font-size: 15px; }
.article-cta a {
  display: inline-block;
  background: var(--cream);
  color: var(--terracotta-deep);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
}
.article-cta a:hover { background: var(--bone-deep); }

/* Google reviews badge — mirrors the homepage badge */
.reviews-google { margin-top: 24px; display: flex; justify-content: center; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: box-shadow .2s ease, transform .2s ease;
}
.google-badge:hover { box-shadow: 0 6px 20px rgba(43, 31, 27, 0.10); transform: translateY(-1px); }
.google-badge .g-logo { width: 18px; height: 18px; flex: none; }
.google-badge .g-stars { color: var(--terracotta); letter-spacing: 2px; }
.google-badge .g-text { color: var(--ink-soft); }

/* Disclaimer + footer */
.disclaimer {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin: 32px 0 0;
}
.article-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 28px 0 48px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.article-footer a { color: var(--terracotta-deep); text-decoration: none; }

/* Focus */
a:focus-visible { outline: 2px solid var(--terracotta-deep); outline-offset: 3px; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: 31px; }
  .article-body h2 { font-size: 23px; }
  main { padding: 28px 0 16px; }
  .article-cta { padding: 26px 20px; }
}

/* ---------------------------------------------------------------------------
   Articles index page
   Generated by scripts/build_articles.py from the published articles, so this
   listing can never link to a draft.
   --------------------------------------------------------------------------- */
.index-title { margin-bottom: 10px; }
.index-intro {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 60ch;
}
.index-group { margin-top: 38px; }
.index-group h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--terracotta-deep);
  margin: 0 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.index-list { list-style: none; margin: 0; padding: 0; }
.index-list li { margin: 0; }
.index-card {
  display: block;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease, padding-left .15s ease;
}
.index-card:hover,
.index-card:focus-visible {
  background: var(--cream, #FBF1EC);
  padding-left: 12px;
}
.index-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--terracotta-deep);
  margin: 0 0 5px;
}
.index-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  /* Quick answers vary in length. Two lines keeps the list scannable. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .index-intro { font-size: 16.5px; }
  .index-group h2 { font-size: 21px; }
  .index-card { padding: 15px 2px; }
  .index-card h3 { font-size: 17.5px; }
  .index-card p { font-size: 14.5px; }
}

/* ---------------------------------------------------------------------------
   Contact list
   Written in markdown as ::contacts rows of "Name | detail | detail". Keeps
   names, phone numbers and opening times in their own columns instead of
   running together inside a bullet.
   --------------------------------------------------------------------------- */
.article-body ul.contact-list {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.article-body ul.contact-list li {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.35fr);
  gap: 4px 26px;
  align-items: baseline;
  margin: 0;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}
.contact-name {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.contact-tel {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--terracotta-deep);
  text-decoration: none;
  white-space: nowrap;
}
.contact-tel:hover { text-decoration: underline; }
.contact-detail {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--muted);
}
.contact-detail a { color: var(--terracotta-deep); }

@media (max-width: 640px) {
  .article-body ul.contact-list li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 2px;
  }
  .contact-tel { font-size: 19px; }
}
