/* ============================================================
   Pillar Leadership — pillarleadership.co
   Static rebuild of the original Wix design.
   Palette: ink #303030 · bronze #9F8F6D · mist #F0F0F0
   Type: Mulish (Avenir substitute) — 300 light / 800 heavy
   ============================================================ */

:root {
  --ink: #303030;
  --ink-soft: #4a4a4a;
  --bronze: #9f8f6d;
  --bronze-dark: #857656;
  --gold: #c9a972;
  --navy: #2c3849;
  --paper: #ffffff;
  --mist: #f0f0f0;
  --silver: rgba(192, 192, 192, 0.55);
  --cream: #fcfce4;
  --font: "Mulish", "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  --measure: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.375rem); font-weight: 300; }
h3 { font-size: 1.35rem; }

.container {
  width: min(1060px, 92vw);
  margin-inline: auto;
}

/* ---------- header ---------- */

.site-header { border-bottom: 1px solid #e3e3e3; }

.masthead {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 0 18px;
}

.masthead .brand {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}

.masthead .brand img { width: 118px; height: auto; }

.wordmark {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.12;
  color: var(--ink);
}

.masthead .socials { margin-left: auto; }

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.2s ease;
}

.socials a:hover { background: var(--bronze-dark); }

.socials svg { width: 17px; height: 17px; fill: currentColor; }

.site-nav { position: relative; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 10px 0 16px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--bronze);
  color: #000;
}

.nav-toggle { display: none; }

.nav-toggle-btn {
  display: none;
  background: none;
  border: 1px solid #d8d8d8;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 8px 16px;
  margin: 8px 0 14px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 760px) {
  .masthead { flex-wrap: wrap; gap: 14px; padding-top: 20px; }
  .masthead .brand img { width: 84px; }
  .nav-toggle-btn { display: inline-block; }
  .site-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 0 12px;
  }
  .site-nav ul li { border-top: 1px solid #ececec; }
  .site-nav ul a { display: block; padding: 12px 4px; border-bottom: none; }
  .nav-toggle:checked ~ ul { display: flex; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    #c0c0c0 url("../img/hero.jpg") center / cover no-repeat;
  padding: 90px 0;
}

.hero-inner { max-width: 720px; padding-inline: 20px; }

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 3.5rem);
  margin-bottom: 0.4em;
}

.hero p {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  margin: 0 auto 2em;
  max-width: 46ch;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--bronze);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover { background: var(--bronze-dark); color: #fff; }
.btn:active { transform: translateY(1px); }

/* ---------- sections ---------- */

.section { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section--silver { background: var(--silver); }
.section--center { text-align: center; }

.section-title { margin-bottom: 1.2em; }

.kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 1.4em;
}

/* two-column feature (about page, etc.) */

.split {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 54px;
  align-items: start;
}

.split .portrait img { width: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split .portrait { max-width: 380px; }
}

/* pillar-photo band (mission section) */

.band {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("../img/hero.jpg") center / cover no-repeat;
  padding: 84px 0;
  text-align: center;
}

.band .container { max-width: 760px; }

/* ---------- services ---------- */

.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
  margin-top: 44px;
  text-align: left;
}

.option .num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--bronze);
  line-height: 1;
}

.option h3 { margin: 10px 0 8px; }

.option p { margin: 0; font-size: 0.98rem; }

/* ---------- guides (better men) ---------- */

.guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  gap: 44px;
  justify-content: center;
  margin-top: 44px;
}

.guide img { width: 100%; aspect-ratio: 1 / 0.97; object-fit: cover; }

.guide h3 { margin: 18px 0 4px; }

.guide p { margin: 0; font-size: 0.95rem; }

.benefits {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 560px;
  text-align: left;
  font-size: 1.05rem;
}

.benefits li { padding: 7px 0; }

.quote {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 300;
  max-width: 34ch;
  margin: 0 auto 1.6em;
}

.quote cite { display: block; font-style: normal; font-size: 0.9rem; margin-top: 1em; letter-spacing: 0.06em; }

/* ---------- video embed ---------- */

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 860px;
  margin: 0 auto 26px;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- forms ---------- */

.form {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin-inline: auto;
  text-align: left;
}

.form label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9c9c9;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--bronze);
  outline-offset: -1px;
}

.form .btn { justify-self: start; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--mist);
  padding: 56px 0 36px;
  text-align: center;
}

.site-footer h2 { font-size: 1.5rem; font-weight: 800; }

.subscribe {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 22px 0 34px;
}

.subscribe input {
  font: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1px solid #c9c9c9;
  width: min(320px, 80vw);
}

.site-footer .socials { justify-content: center; margin-bottom: 26px; }

.site-footer .fineprint { font-size: 0.85rem; margin: 0; color: var(--ink-soft); }

/* ---------- blog index ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.post-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.post-card a.cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--mist); }

.post-card a.cover img { width: 100%; height: 100%; object-fit: cover; }

.post-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.post-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.3; }

.post-card h3 a { text-decoration: none; }

.post-card h3 a:hover { color: var(--bronze-dark); }

.post-card time { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--ink-soft); }

.post-card .excerpt { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }

.year-sep {
  margin: 56px 0 0;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: var(--bronze-dark);
  border-bottom: 2px solid var(--bronze);
  padding-bottom: 6px;
}

/* ---------- article (blog post) ---------- */

.article-header { text-align: center; padding: 56px 0 8px; }

.article-header h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); max-width: 24ch; margin-inline: auto; }

.article-meta { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--ink-soft); }

.article-cover { max-width: 860px; margin: 34px auto 0; }

.article-cover img { width: 100%; }

.article {
  max-width: var(--measure);
  margin-inline: auto;
  padding: 44px 20px 72px;
  font-size: 1.08rem;
}

.article p { margin: 0 0 1.35em; }

.article h2, .article h3 { margin-top: 1.8em; font-weight: 800; }

.article h2 { font-size: 1.55rem; }

.article img { margin: 2em auto; }

.article blockquote {
  margin: 2em 0;
  padding: 0.2em 0 0.2em 1.4em;
  border-left: 3px solid var(--bronze);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
}

.article a { color: var(--bronze-dark); }

.article hr { border: none; border-top: 1px solid #ddd; margin: 2.5em 0; }

.back-link {
  display: inline-block;
  margin: 0 0 26px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--bronze-dark);
}

.back-link:hover { color: var(--ink); }

/* ---------- misc ---------- */

.center { text-align: center; }

.lede { font-size: 1.12rem; max-width: var(--measure); margin-inline: auto; }

.logo-collage { max-width: 900px; margin: 40px auto 0; }
