/* Wellspring Living brand tokens, from assets/brand (Colour, Typography, Option A The Source) */
:root {
  /* Core */
  --eucalypt: #3E5C4B;     /* primary: symbol, headings on light, button fills */
  --eucalypt-deep: #2F4739; /* hover state for eucalypt fills */
  --ochre: #B4712F;        /* accent: rules, marks, shapes. Never small text */
  --ochre-deep: #8A4F20;   /* links, eyebrow labels, accent text at any size */
  --ochre-deeper: #5F3614; /* link hover */
  --ink: #2A2724;          /* body copy and wordmark */
  --stone: #5C5348;        /* secondary text, captions */
  /* Grounds and tints */
  --oat: #F5EFE4;          /* page ground */
  --paper: #FBF8F2;        /* cards, forms */
  --sage: #D7E2D6;         /* quiet fills */
  --sand: #EFE0CC;         /* highlight blocks */
  --line: #E7DECE;         /* hairlines, dividers */
  --on-eucalypt-soft: #DCE6DA;

  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Karla', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 3px;
  --measure: 62ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--oat);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); }
h1 { font-size: clamp(36px, 5vw, 44px); line-height: 1.08; letter-spacing: -.015em; margin: 0 0 20px; text-wrap: pretty; }
h2 { font-size: clamp(26px, 3.4vw, 30px); line-height: 1.2; margin: 0 0 12px; }
h3 { font-size: 21px; line-height: 1.25; margin: 0 0 10px; }

p { max-width: var(--measure); text-wrap: pretty; }

a { color: var(--ochre-deep); }
a:hover { color: var(--ochre-deeper); }

.wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--eucalypt); color: #fff;
  padding: 10px 16px; z-index: 10;
}
.skip:focus { left: 8px; top: 8px; }

.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ochre-deep); margin: 0 0 14px;
}

.rule { width: 48px; height: 1px; background: var(--ochre); border: 0; margin: 22px 0; }

/* Lockup: symbol + Wellspring + LIVING */
.lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.lockup svg { width: 38px; height: 38px; flex: none; }
.lockup .words { display: flex; flex-direction: column; gap: 4px; }
.lockup .ws { font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1; letter-spacing: -.01em; color: var(--ink); }
.lockup .lv { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .34em; line-height: 1; color: var(--ochre-deep); margin-right: -.34em; }

/* Header */
.site { background: var(--oat); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
nav { display: flex; align-items: center; gap: 24px; font-size: 16px; }
nav a { color: var(--stone); text-decoration: none; font-weight: 500; }
nav a:hover { color: var(--ink); }
nav .cta { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; min-height: 44px;
  background: var(--eucalypt); color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: var(--radius); font-weight: 600; font-size: 16px;
  transition: background .15s ease;
}
.btn:hover { background: var(--eucalypt-deep); color: #fff; }
.btn.quiet {
  background: transparent; color: var(--ochre-deep); padding: 12px 4px;
}
.btn.quiet:hover { background: transparent; color: var(--ochre-deeper); }
.btn:focus-visible, nav a:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; }

/* Hero */
.hero { padding: 80px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink); margin: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 28px 0 14px; }
.note { font-size: 14px; color: var(--stone); margin: 0; }

.hero-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.hero-card .card-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); margin: 0 0 16px;
}
.week { display: grid; grid-template-columns: 48px 1fr; gap: 10px 14px; align-items: center; font-size: 15px; }
.day { color: var(--stone); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.task { background: var(--oat); border-radius: var(--radius); padding: 9px 12px; color: var(--ink); }
.task.done { background: var(--sage); color: var(--eucalypt); }
.task.done::before { content: "\2713\00a0\00a0"; font-weight: 700; }

/* Bands */
.band { padding: 76px 0; border-top: 1px solid var(--line); }
.band.alt { background: var(--paper); }
.section-lede { font-size: 19px; line-height: 1.55; color: var(--stone); margin: 0 0 36px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 28px; position: relative;
}
.card::before { content: ""; display: block; width: 32px; height: 1px; background: var(--ochre); margin-bottom: 18px; }
.band.alt .card { background: var(--oat); }
.card h3 { color: var(--ink); }
.card p { margin: 0; color: var(--stone); font-size: 16px; }
.soon {
  margin-top: 28px; font-size: 16px; color: var(--ink); background: var(--sand);
  border-radius: var(--radius); padding: 14px 18px; display: inline-block;
}

.steps { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 48px; padding: 0; margin: 0; }
.steps li { position: relative; padding-left: 58px; }
.steps span {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); color: var(--eucalypt); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 500; font-size: 19px;
}
.steps h3 { font-size: 20px; margin: 6px 0 8px; }
.steps p { margin: 0; color: var(--stone); font-size: 16px; }

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: start; }
.plain-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.band.alt .plain-box { background: var(--oat); }
.plain-box h3 { font-size: 20px; }
.plain-box ul { margin: 0; padding-left: 20px; color: var(--ink); }
.plain-box li { margin-bottom: 6px; }
.plain-box li::marker { color: var(--ochre); }
.plain-box > p { color: var(--stone); margin-top: 0; }

.quote-box { background: var(--sand); border-radius: var(--radius); padding: 30px; }
.quote { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.35; color: var(--ink); margin: 0; }

/* Coordinators: Eucalypt band, white text at 7.4:1 */
.coord { background: var(--eucalypt); color: #fff; border-top: none; }
.coord h2 { color: #fff; }
.coord .eyebrow { color: var(--sand); }
.coord .section-lede { color: var(--on-eucalypt-soft); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 0 0 36px; }
.facts div { border-top: 1px solid rgba(255,255,255,.22); padding-top: 14px; }
.facts dt { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--on-eucalypt-soft); margin-bottom: 6px; }
.facts dd { margin: 0; font-size: 16px; color: #fff; }
.coord .btn { background: var(--paper); color: var(--eucalypt); }
.coord .btn:hover { background: var(--oat); color: var(--eucalypt-deep); }

.contact-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; }

/* Footer */
.site-foot { background: var(--paper); border-top: 1px solid var(--line); padding: 48px 0; font-size: 14px; color: var(--stone); }
.foot-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; gap: 32px; align-items: start; }
.site-foot p { margin: 0 0 8px; max-width: 44ch; }
.site-foot .lockup { margin-bottom: 16px; }
.fine { font-size: 13px; }

@media (max-width: 880px) {
  .hero-grid, .two-col, .cards, .steps, .facts, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 48px; }
  .band { padding: 56px 0; }
  nav { gap: 14px; font-size: 15px; }
  nav a:not(.cta) { display: none; }
  .lockup .ws { font-size: 20px; }
  .lockup svg { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
