/*
Guy Snape Counselling — "Warm Ground" stylesheet
*/

/* ---------- tokens ---------- */
:root {
  --bg: #F7F1E8;
  --bg-panel: #FFFDF9;
  --ink: #2E2A22;
  --ink-soft: #5B5647;
  --accent: #6B7A4F;   /* moss green — links, CTAs */
  --accent2: #7A5468;  /* muted plum — secondary accent */
  --rule: #E1D6C2;

  --font-display: "Fraunces", serif;
  --font-body: "Nunito Sans", sans-serif;
}

/* ---------- reset & base ---------- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}
img { display:block; max-width:100%; }
a { color: var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }

/* ---------- layout shell ---------- */
.page {
  display:grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1.3fr 0.7fr;
  column-gap: 0;
  grid-template-areas:
    "head head"
    "hero hero"
    "intro cred"
    "details details"
    "foot foot";
}

/* ---------- header / nav ---------- */
header.site {
  grid-area: head;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
  padding: 28px 32px;
}
header.site .brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
header.site nav { display:flex; gap:22px; font-size:14px; }
header.site .contact { font-size:14px; }

/* ---------- hero ---------- */
section.hero {
  grid-area: hero;
  padding: 48px 32px 40px;
}
h1.headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 13ch;
}
h2.sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink-soft);
  margin-top: 10px;
}
section.hero p { margin-top: 22px; max-width: 62ch; }

/* ---------- intro / details ---------- */
section.intro, section.details {
  background: var(--bg-panel);
  padding: 24px 32px;
}
section.intro { grid-area: intro; }
section.details { grid-area: details; }

h3.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: .6em;
}
p { max-width: 62ch; margin-bottom: 1em; }
.rule { border-top: 1px solid var(--rule); margin: 20px 0; max-width: 62ch; }

/* ---------- credentials panel ---------- */
aside.cred {
  grid-area: cred;
  background: var(--bg-panel);
  padding: 68px 32px 24px;
}
.portrait {
  width: 250px; height: 250px;
  border-radius: 50%;
  object-fit: cover;
  display:block;
}
.mncs-logo {
  width: 140px;
  margin-top: 20px;
  display:block;
}
.badge-link { font-size: 14px; margin-top: 10px; display:inline-block; }

/* ---------- footer ---------- */
footer.site {
  grid-area: foot;
  padding: 32px;
  font-size: 13px;
  text-align: center;
}

/* ---------- simple content page layout (FAQ etc.) ---------- */
.page.simple {
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "hero"
    "details"
    "foot";
}
.page.simple section.hero { padding-bottom: 8px; }
.page.simple h1.page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 42px;
  line-height: 1.15;
}
.page.simple section.details {
  max-width: 760px;
}
.page.simple section.details h3.section-title {
  font-size: 20px;
  margin-top: 1.4em;
}
.page.simple section.details h3.section-title:first-of-type { margin-top: 0; }

.faq-toc {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
}
.faq-toc li { margin-bottom: 6px; }
.faq-toc a { font-size: 16px; }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "hero"
      "intro"
      "cred"
      "details"
      "foot";
  }
  h1.headline { font-size: 38px; max-width: none; }
  h2.sub { font-size: 20px; }
  header.site { padding: 20px; }
  section.hero, section.intro, section.details, aside.cred, footer.site { padding: 20px; }
}
