/* Norfield Ventures Inc. — site styles
   Palette: navy #1e3a5f, cream #f5f1e8, sage #87a96b
   Typography: serif headlines (Georgia stack), sans body (system stack)
   No external dependencies. */

:root {
  --navy: #1e3a5f;
  --navy-deep: #142a47;
  --cream: #f5f1e8;
  --cream-deep: #ece6d4;
  --sage: #87a96b;
  --sage-deep: #6d8c55;
  --ink: #1a1a1a;
  --gray: #555;
  --gray-soft: #888;
  --rule: #d8d2c2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, Charter, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}

h1 { font-size: 2.2rem; margin-top: 0.4em; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.2rem; }

p, ul, ol { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--sage-deep); }

/* Layout */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
.site-header {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 0;
  border-bottom: 4px solid var(--sage);
}
.site-header a { color: var(--cream); text-decoration: none; }
.brand {
  font-family: Georgia, Charter, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 6px 0;
  font-size: 1rem;
}
.nav a:hover { color: var(--sage); }

/* Hero */
.hero {
  background: var(--cream-deep);
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.hero h1 { margin-top: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.hero img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--rule);
  border: 3px solid var(--sage);
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--gray);
}

/* Main */
main { padding: 40px 0 56px; }

section { margin-bottom: 36px; }

/* Cards / steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 64px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 600;
}
.steps h3 { margin: 0 0 4px; }
.steps p { margin: 0; }

/* CTA / trust */
.cta {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--sage);
  padding: 24px;
  border-radius: 4px;
}
.cta a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 220px;
  padding: 0 24px;
  margin: 8px 8px 0 0;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}
.cta a.button:hover { background: var(--navy-deep); color: #fff; }

/* FAQ */
.faq dt {
  font-family: Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.4em;
  font-size: 1.1rem;
}
.faq dd {
  margin: 0.4em 0 0;
}

/* Page header (non-home) */
.page-header {
  background: var(--cream-deep);
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.page-header h1 { margin: 0; }
.page-header .meta {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 6px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream-deep);
  padding: 32px 0;
  font-size: 0.95rem;
}
.site-footer a { color: var(--cream); }
.site-footer .legal {
  margin-top: 14px;
  color: #b8b2a0;
  font-size: 0.85rem;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 12px 0;
}
.site-footer .footer-nav a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}

/* Utility */
.muted { color: var(--gray); }
hr.rule { border: 0; border-top: 1px solid var(--rule); margin: 32px 0; }

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 18px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  .hero { padding: 32px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero img { width: 120px; height: 120px; }
  .nav { gap: 4px 16px; }
  .cta a.button { width: 100%; min-width: 0; margin-right: 0; }
  .steps li { padding-left: 56px; }
  .steps li::before { left: 12px; }
}

.footer-content { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.footer-address { font-style: normal; margin-top: 0.5rem; }
.footer-links { margin-top: 0.5rem; }
.footer-links a { color: inherit; }
