/* Oakmont parent — calm light corporate */
:root {
  --ground: #f4f2ec;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #5a574f;
  --steel: #1e4d7b;
  --rust: #b4532a;
  --rust-hover: #9a4523;
  --line: #ddd8ce;
  --shadow: 0 8px 28px rgba(20, 20, 20, 0.06);
  --radius: 12px;
  --wrap: 1080px;
  --header-h: 68px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-underline-offset: 2px; }
a:hover { color: var(--rust); }
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 100;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.04);
}
.header-inner {
  display: flex; align-items: center; gap: .75rem;
  min-height: var(--header-h);
  padding-block: .35rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .35rem .55rem;
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
  line-height: 0;
}
.brand img {
  width: auto;
  height: 44px;
  max-width: min(168px, 42vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}
.nav-desktop { display: none; gap: 1.1rem; margin-left: auto; margin-right: .5rem; }
.nav-link {
  color: var(--ink); text-decoration: none; font-weight: 550; font-size: .95rem;
}
.nav-link:hover, .nav-link.is-active { color: var(--steel); }
.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.nav-desktop + .header-actions { margin-left: 0; }
.phone-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  text-decoration: none; color: var(--ink); font-weight: 600;
  min-height: 44px; min-width: 44px; justify-content: center;
  padding: .35rem .5rem; border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.phone-txt { display: none; }
.nav-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--surface); display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px;
}
.nav-mobile {
  border-top: 1px solid var(--line);
  padding: .75rem 1rem 1rem;
  display: flex; flex-direction: column; gap: .35rem;
  background: #fff;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile .nav-link { padding: .65rem .25rem; min-height: 44px; display: flex; align-items: center; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .phone-txt { display: inline; }
  .header-actions { margin-left: 0; }
  .brand img { height: 52px; max-width: 200px; }
  .header-inner { min-height: 76px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .7rem 1.15rem; border-radius: 10px;
  font-weight: 650; text-decoration: none; border: 1px solid transparent;
  font-size: 1rem; cursor: pointer;
}
.btn-sm { min-height: 42px; padding: .45rem .85rem; font-size: .92rem; }
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-hover); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); }
.cta-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }

/* Hero / sections */
.hero.identity {
  padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(30, 77, 123, 0.08), transparent 60%),
    var(--ground);
}
.hero-inner { max-width: 42rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .08em; font-size: .78rem;
  font-weight: 700; color: var(--steel); margin: 0 0 .65rem;
}
h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .85rem; font-weight: 750;
}
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); letter-spacing: -0.015em; margin: 0 0 .75rem; }
h3 { font-size: 1.08rem; margin: 0 0 .4rem; }
.lede { font-size: 1.08rem; color: var(--muted); margin: 0; max-width: 40rem; }
.section-lede { color: var(--muted); max-width: 40rem; margin: 0 0 1.5rem; }
.section { padding: 2.75rem 0; }
.section-alt { background: #ebe7de; border-block: 1px solid var(--line); }
.page-hero { padding: 2.25rem 0 1rem; }
.trust-strip {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
}
.trust-strip li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem .85rem; font-size: .9rem; font-weight: 600;
}

.card-grid {
  display: grid; gap: 1rem;
}
.card-grid.two { grid-template-columns: 1fr; }
.card-grid.three { grid-template-columns: 1fr; }
.card-grid.values { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .card-grid.two { grid-template-columns: 1fr 1fr; }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
  .card-grid.values { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .card-grid.values { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.3rem; box-shadow: var(--shadow);
}
.card p { margin: 0; color: var(--muted); }
.card h3, .card h2 { color: var(--ink); }
.market-card .btn { margin-top: 1rem; }
.market-card.tall { display: flex; flex-direction: column; }
.market-card.tall .btn { margin-top: auto; align-self: flex-start; }

.people {
  display: grid; gap: 1.75rem; align-items: center;
}
@media (min-width: 800px) {
  .people { grid-template-columns: 1.2fr .8fr; gap: 2.5rem; }
}
.people-copy p { color: var(--muted); }
.people-copy strong { color: var(--ink); }
.people-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow);
}
.people-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.people-photo figcaption {
  padding: .65rem 1rem; font-size: .9rem; color: var(--muted); border-top: 1px solid var(--line);
}

.cta-band {
  background: #1a2f45; color: #f4f2ec;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(244, 242, 236, 0.85); max-width: 36rem; }
.cta-band .btn-primary { background: var(--rust); }
.cta-band .btn-ghost { border-color: rgba(244,242,236,.35); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; }

.steps { display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.25rem; box-shadow: var(--shadow);
}
.step-n {
  width: 2.25rem; height: 2.25rem; border-radius: 999px;
  background: var(--steel); color: #fff; display: grid; place-items: center;
  font-weight: 750;
}
.step h2 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { margin: 0; color: var(--muted); }
.check { margin: .75rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.check li { margin: .25rem 0; }
.note { margin-top: 1.5rem; }
.contact-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.big-link { font-size: 1.25rem; font-weight: 700; }
.big-link a { text-decoration: none; }
.prose { max-width: 40rem; }
.prose p { color: var(--muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #ebe7de;
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 1.75rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { font-weight: 750; margin: 0 0 .5rem; }
.footer-h { font-weight: 700; margin: 0 0 .5rem; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: .35rem 0; }
.footer-list a { text-decoration: none; color: var(--ink); font-weight: 550; }
.footer-list a:hover { color: var(--steel); }
.muted { color: var(--muted); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--muted);
}
.footer-bottom p { margin: 0; }
