/* ==========================================================================
   Goodfoot Consulting — site stylesheet
   Single, plain, dependency-free CSS file. Replaces normalize.css +
   stylesheet.css + github-light.css (the last of which styled code syntax
   highlighting that nothing on this site actually uses).
   ========================================================================== */

:root {
  --paper:     #f6f5f2;
  --ink:       #23211d;
  --ink-soft:  #605c54;
  --ink-faint: #8f8a80;
  --brass:     #a9752e;
  --brass-tint:#f1e7d6;
  --rule:      #e2ddd2;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --measure: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
}

.container {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--brass); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* Signature: thin brass letterhead strip across the very top -------------- */

.top-bar { height: 5px; background: var(--brass); }

/* Header ------------------------------------------------------------------ */

.site-header {
  padding: 2.6rem 24px 1.8rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.6rem;
}

.company-name {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.tagline {
  margin: 0.2rem 0 1.4rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

nav.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

nav.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .98rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav.site-nav a:hover {
  color: var(--ink);
  text-decoration: none;
  border-bottom-color: var(--rule);
}

nav.site-nav a.active {
  color: var(--ink);
  border-bottom-color: var(--brass);
}

/* Typography ---------------------------------------------------------------*/

h1 {
  font-size: 1.7rem;
  margin: 0 0 1.2rem;
  color: var(--ink);
}

h2 {
  font-size: 1.25rem;
  margin: 2.4rem 0 .8rem;
  color: var(--ink);
}

p { margin: .5rem 0 1.1rem; }
strong { font-weight: 700; }

ul {
  margin: .6rem 0 1.4rem;
  padding-left: 1.3rem;
}
ul li { margin: .35rem 0; }
ul li::marker { color: var(--brass); }

/* Signature: numbered process steps ---------------------------------------
   Used only where the content is a genuine sequence (the identify / create /
   select / roll-out steps repeated verbatim across two pages). Everywhere
   else stays a plain bullet list. */

ol.steps {
  list-style: none;
  margin: 1rem 0 1.6rem;
  padding: 0;
  counter-reset: step;
}

ol.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.6rem;
  margin: 1rem 0;
}

ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.05rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main content ---------------------------------------------------------------*/

main { padding-bottom: 1rem; }

/* Footer -----------------------------------------------------------------------*/

.site-footer {
  margin-top: 3.2rem;
  padding: 1.8rem 24px 3rem;
  border-top: 1px solid var(--rule);
  font-size: .92rem;
  color: var(--ink-faint);
}

.site-footer strong { color: var(--ink-soft); font-weight: 600; }

/* Responsive ---------------------------------------------------------------------*/

@media (max-width: 480px) {
  .company-name { font-size: 1.5rem; }
  h1 { font-size: 1.4rem; }
  nav.site-nav { gap: 1rem 1.2rem; }
  body { font-size: 16px; }
}

/* Print ----------------------------------------------------------------------------*/

@media print {
  .top-bar, nav.site-nav { display: none; }
}
