/*
Theme Name: Wolverine Consulting
Theme URI: https://wolveconsulting.com
Author: Wolverine Consulting, LLC
Author URI: https://wolveconsulting.com
Description: Custom institutional advisory theme for Wolverine Consulting, LLC. Editorial typography, restrained palette, designed for the Michigan middle market.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: All Rights Reserved
License URI: https://wolveconsulting.com
Text Domain: wolverine-consulting
Tags: business, consulting, advisory, custom
*/

:root {
  --ink: #1a2535;
  --ink-soft: #4a5566;
  --ink-mute: #7a8493;
  --accent: #5a7a94;
  --accent-soft: #8aa3b8;
  --warm: #b89968;
  --paper: #fafaf6;
  --paper-alt: #f2efe7;
  --paper-mute: #e8e4d8;
  --rule: rgba(26, 37, 53, 0.12);
  --rule-soft: rgba(26, 37, 53, 0.06);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.topbar {
  background: var(--paper-alt);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.topbar span { color: var(--warm); margin: 0 14px; }

nav.primary {
  color: var(--ink);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
  background: rgba(250, 250, 246, 0.92);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--warm);
}
.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.brand-text .light { font-weight: 300; color: var(--accent); font-style: italic; }

.nav-links {
  display: flex; gap: 38px; list-style: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--warm); }

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(138, 163, 184, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(184, 153, 104, 0.10) 0%, transparent 50%),
    var(--paper);
  color: var(--ink);
  padding: 130px 60px 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 37, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 37, 53, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--warm);
}
h1.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin-bottom: 36px;
  color: var(--ink);
}
h1.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  color: var(--ink-soft);
  margin-bottom: 56px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero-cta:hover { background: transparent; color: var(--ink); }
.hero-cta svg { width: 14px; height: 14px; }

.hero-meta {
  position: absolute;
  bottom: -1px;
  right: 60px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-bottom: none;
  padding: 22px 32px;
  display: flex;
  gap: 48px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta strong {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

section { padding: 110px 60px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--warm);
}
.section-label .num {
  color: var(--warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.positioning {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.positioning h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  color: var(--ink);
}
.positioning h2 em { font-style: italic; color: var(--accent); }
.positioning-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}
.positioning-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 68px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--warm);
  font-weight: 500;
  font-style: italic;
}

.practices {
  background: var(--paper-alt);
  color: var(--ink);
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.practices-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.practices h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  color: var(--ink);
}
.practices h2 em { font-style: italic; color: var(--accent); }
.practices-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--paper);
}
.practice {
  padding: 50px 44px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.4s ease;
}
.practice:hover { background: var(--paper-alt); }
.practice-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--warm);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.practice h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink);
}
.practice h3 em { color: var(--accent); font-style: italic; }
.practice p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 24px;
}
.practice ul {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.practice ul li {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 7px 0;
  font-weight: 400;
}
.practice ul li::before {
  content: '— ';
  color: var(--warm);
  margin-right: 6px;
}

.focus {
  background: var(--paper);
  position: relative;
}
.focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.focus h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--ink);
}
.focus h2 em { font-style: italic; color: var(--accent); }
.focus p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}
.focus-stats {
  background: var(--paper-alt);
  color: var(--ink);
  padding: 56px 48px;
  border: 1px solid var(--rule);
  position: relative;
}
.focus-stats::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 100%; height: 100%;
  border: 1px solid var(--warm);
  opacity: 0.5;
  z-index: -1;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.stat-row:last-child { border-bottom: none; }
.stat-row .stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat-row .stat-num em { font-style: italic; color: var(--warm); }
.stat-row .stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 50%;
  text-align: right;
  line-height: 1.5;
}

.approach {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}
.approach-header { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.approach-header .section-label { justify-content: center; }
.approach-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.approach-header h2 em { font-style: italic; color: var(--accent); }
.approach-header p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--warm);
  background: var(--paper);
}
.step {
  padding: 50px 36px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--warm);
  opacity: 0.55;
  margin-bottom: 24px;
  font-weight: 300;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.step p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

.cta {
  background: var(--paper);
  color: var(--ink);
  padding: 130px 60px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--rule);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 30px;
  font-weight: 500;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--ink);
}
.cta h2 em { font-style: italic; color: var(--accent); }
.cta p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }

footer {
  background: var(--paper-alt);
  color: var(--ink-soft);
  padding: 60px 60px 30px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col p, .footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  display: block;
  line-height: 1.9;
  font-weight: 300;
}
.footer-col a:hover { color: var(--ink); }
.footer-brand .brand-text { font-size: 20px; margin-bottom: 18px; }
.footer-brand p { max-width: 280px; line-height: 1.7; }
.footer-disclaimer {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 11px;
  line-height: 1.75;
  color: var(--ink-mute);
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0.01em;
}
.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.3s; }
.hero-sub { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.7s; }

@media (max-width: 900px) {
  nav.primary { padding: 22px 28px; }
  .nav-links { display: none; }
  .hero { padding: 90px 28px 80px; }
  .hero-meta { display: none; }
  section { padding: 80px 28px; }
  .positioning-grid, .focus-grid, .practices-header { grid-template-columns: 1fr; gap: 40px; }
  .practice-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }
  .cta { padding: 90px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
