/* Providential Holdings LLC — sister-site stylesheet
   Sage/olive accents to match the seal; same warm neutral base
   as the McDonald and Sons site so the brands read as related
   without being identical. */

:root {
  --bg: #f7f3ea;
  --surface: #ffffff;
  --ink: #2a2a1f;
  --ink-soft: #4f4d3e;
  --muted: #87836f;
  --rule: #e3dec9;
  --brand: #5a6b3a;        /* sage / olive green from the seal */
  --brand-dark: #3d4a26;
  --accent: #a44a1f;       /* warm brick (link color) */
  --gold: #b88a3d;
  --shadow: 0 6px 20px rgba(60, 50, 20, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Georgia", "Cambria", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
section.alt { background: #ece6d2; }

h1, h2, h3, h4 {
  font-family: "Georgia", "Cambria", serif;
  color: var(--ink);
  letter-spacing: 0.2px;
  margin: 0 0 0.4em;
}
h1 { font-size: 2.6rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 64px; height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
}
.brand-text { line-height: 1.1; }
.brand-text small {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

nav.primary {
  display: flex;
  gap: 22px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
nav.primary a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}
nav.primary a:hover { color: var(--brand); border-bottom-color: var(--brand); }
nav.primary a.active { color: var(--brand); border-bottom-color: var(--brand); }
nav.primary a.nav-cta {
  color: #fff;
  background: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 4px;
  padding: 6px 14px;
  margin: -2px 0;
  font-weight: 700;
}
nav.primary a.nav-cta:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
nav.primary a.nav-cta.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.header-cta {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.header-cta span { color: var(--brand); }

/* Hamburger toggle (mobile only) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  align-self: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform .2s ease, opacity .2s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15,18,10,0.55), rgba(15,18,10,0.78)),
    url("mission-two-cities.jpg") center 50% / cover no-repeat,
    repeating-linear-gradient(45deg, #4d5a32 0 12px, #3d4a26 12px 24px);
  color: #fff;
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(220,235,180,0.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: #fff;
  font-size: 3rem;
  max-width: 22ch;
}
.hero p.lead {
  color: #ece6d2;
  max-width: 56ch;
  font-size: 1.2rem;
}
.hero .eyebrow { color: #c9d8a4; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); }
.hero-logo {
  width: 200px;
  max-width: 60vw;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.3));
}

/* Page head (non-hero pages) */
.page-head {
  background: #dde3c5;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.page-head h1 { margin-bottom: 8px; }
.page-head p { color: var(--ink-soft); max-width: 60ch; margin: 0; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 800px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 90px; }
  .hero h1 { font-size: 2.2rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .header-cta { display: none; }

  .hamburger { display: block; }

  nav.primary {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
    order: 99;
  }
  nav.primary.open { display: flex; }
  nav.primary a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--rule);
    border-bottom-width: 1px;
    border-radius: 0;
    margin: 0;
    width: 100%;
  }
  nav.primary a:last-child { border-bottom: 0; }
  nav.primary a.nav-cta {
    background: var(--brand);
    color: #fff;
    padding: 14px 16px;
    border: 0;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; color: var(--ink); }

/* CTA strip */
.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 50px 0;
}
.cta-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { color: #fff; margin: 0; font-size: 1.6rem; }
.cta-strip p { color: #d8d4be; margin: 4px 0 0; }
.cta-strip .btn-primary {
  background: var(--gold); border-color: var(--gold); color: #2a2a1f;
}
.cta-strip .btn-primary:hover {
  background: #8e6a2a; border-color: #8e6a2a; color: #fff;
}

/* Track record card (with photo + body) */
.track-record-card {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.track-record-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.track-record-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) {
  .track-record-card { grid-template-columns: 1fr; }
}

/* Build / pipeline cards */
.build-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.status-pill {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.status-planning { background: #ece6d2; color: #4d5a32; border: 1px solid #c9d8a4; }
.status-permit   { background: #f5e9c5; color: #8e6a2a; border: 1px solid #d9c478; }
.status-build    { background: #dde9c8; color: #3d5a2c; border: 1px solid #aac09a; }
.status-finish   { background: #f3ddd0; color: #a44a1f; border: 1px solid #e3a05a; }
.build-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}
.build-meta .meta-label {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 2px;
}
@media (max-width: 600px) { .build-meta { grid-template-columns: 1fr; } }

/* Contact / form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { margin: 0 0 6px; }
.contact-info .label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
}
.contact-info .big {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
}
.contact-info a { color: var(--brand); }

form.contact {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow);
}
form.contact label {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 14px 0 6px;
}
form.contact input,
form.contact textarea,
form.contact select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #fbf8ee;
  color: var(--ink);
}
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { form.contact .row { grid-template-columns: 1fr; } }
form.contact button { margin-top: 18px; width: 100%; }

/* Footer */
.site-footer {
  background: #2a2a1f;
  color: #d8d4be;
  padding: 40px 0 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
}
.site-footer a { color: 