/* Let's Talk — site styles
   Plum and amber on a cool paper. Two columns on desktop: a fixed label rail
   on the left, content on the right; one column below 820px.

   Deliberately unlike the rest of the portfolio, whose one untested risk is a
   shared visual fingerprint. The organisation's own wording is short and
   declarative - a vision sentence, a mission sentence, a list of who it is
   for - so the page is built to let those statements stand alone against the
   rail, rather than the prose-and-hairline-rules layout used elsewhere. */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  --plum-900: #33204a;
  --plum-700: #56347a;
  --amber-600: #b4720f;
  --amber-300: #e8b45f;
  --ink: #1b1a22;
  --muted: #6b6675;
  --rule: #e4dfec;
  --paper: #fbfafd;
  --wash: #f4f0f9;
  --white: #fff;
  --max: 900px;
  --rail: 150px;
  --heading: "Sora", "Segoe UI", sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
}
h1, h2, h3 { font-family: var(--heading); color: var(--plum-900); line-height: 1.18; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5.4vw, 3rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }
h3 { font-size: 1.02rem; font-weight: 600; margin: 0 0 .2em; }
p { margin: 0 0 1.1em; }
a { color: var(--amber-600); }
a:hover { color: var(--plum-700); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 60px 0; }
.bg-wash { background: var(--wash); }
.bg-paper { background: var(--paper); }
.lead { font-size: 1.12rem; color: var(--muted); }
.small { font-size: .9rem; color: var(--muted); }

/* the label rail — the structural signature of this page */
.split { display: grid; grid-template-columns: var(--rail) 1fr; gap: 34px; align-items: start; }
.split__label {
  font-family: var(--heading);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--plum-700);
  padding-top: .5em;
  border-top: 2px solid var(--amber-300);
}

.site-header { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.site-header .container { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.brand { font-family: var(--heading); font-weight: 700; color: var(--plum-900); text-decoration: none; font-size: 1.05rem; }
.nav__links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.nav__links a { color: var(--muted); font-size: .9rem; text-decoration: none; }
.nav__links a:hover { color: var(--amber-600); }

.hero { padding: 76px 0 58px; }
.motto {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--plum-700);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 22px;
}

/* pull statements - the organisation's own vision and mission lines */
p.statement {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 1.14rem;
  color: var(--plum-900);
  line-height: 1.45;
  padding-left: 18px;
  border-left: 3px solid var(--amber-300);
  margin: 0 0 1.1em;
}

ul.audience { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
ul.audience li {
  font-family: var(--heading);
  font-size: .88rem;
  font-weight: 500;
  color: var(--plum-700);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 16px;
}

dl.facts { margin: 0; }
dl.facts div { padding: 14px 0; border-bottom: 1px solid var(--rule); }
dl.facts div:first-child { border-top: 1px solid var(--rule); }
dl.facts dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--plum-700); margin: 0 0 .15em; }
dl.facts dd { margin: 0; }

.site-footer { border-top: 1px solid var(--rule); padding: 34px 0 42px; }
.site-footer p { margin: 0 0 .45em; font-size: .86rem; color: var(--muted); }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 14px; }
  .split__label { border-top: none; padding-top: 0; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .site-header .container { flex-direction: column; align-items: flex-start; gap: 10px; }
}
