:root {
  --gold: #dfb030;
  --gold-light: #e6c15c;
  --gold-pale: #edd288;
  --slate-dark: #2f363f;
  --slate: #48525e;
  --slate-mid: #5e6b7b;
  --slate-light: #768496;
  --cream: #faf7f1;
  --white: #ffffff;
  --text: #2f363f;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--slate-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header .logo img {
  height: 48px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  nav.main-nav {
    display: none;
    width: 100%;
  }
  nav.main-nav.open { display: block; }
  .site-header .container {
    flex-wrap: wrap;
  }
  nav.main-nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
}

.hero .eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.75rem;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero .kicker {
  color: var(--gold-pale);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: -8px 0 22px;
}

.hero p.lead {
  font-size: 1.2rem;
  color: #d7dce2;
  max-width: 680px;
  margin: 0 auto 36px;
}

.pullquote {
  border-left: 4px solid var(--gold);
  padding: 2px 0 2px 24px;
  margin: 34px 0 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.5;
}

.note-callout {
  background: var(--cream);
  border: 1px solid #e7e2d8;
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 4px;
  color: var(--slate-mid);
  font-size: 0.92rem;
  margin-top: 30px;
}

.page-hero {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: 2.3rem;
}

.page-hero p {
  color: #d7dce2;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--slate-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--slate-dark);
}

.btn-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 80px 0;
}

section.alt {
  background: var(--cream);
}

h2.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 14px;
  color: var(--slate-dark);
}

p.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  color: var(--slate-mid);
  font-size: 1.05rem;
}

/* Cards / grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid #e7e2d8;
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: 32px 28px;
}

.card h3 {
  margin-top: 0;
  color: var(--slate-dark);
  font-size: 1.2rem;
}

.card p {
  color: var(--slate-mid);
  font-size: 0.98rem;
  margin-bottom: 0;
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.card .num-badge {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--slate-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* Industry chips */
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 30px;
}

.industry-chips .chip {
  background: var(--white);
  border: 1px solid #e7e2d8;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-dark);
}

/* Homepage "Latest Insights" teaser */
.insights-footer {
  text-align: center;
  margin-top: 40px;
}

/* Two column */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
}

.split h2 {
  font-size: 1.9rem;
  color: var(--slate-dark);
}

.split p {
  color: var(--slate-mid);
}

.stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
}

.stat-row .stat .num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-row .stat .label {
  color: var(--slate-mid);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA band */
.cta-band {
  background: var(--slate-dark);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 {
  margin: 0 0 16px;
  font-size: 1.9rem;
}

.cta-band p {
  color: #d7dce2;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Services page detail */
.service-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid #e7e2d8;
}

.service-block:last-child { border-bottom: none; }

.service-block .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.service-block h3 {
  margin-top: 0;
  color: var(--slate-dark);
  font-size: 1.35rem;
}

.service-block p {
  color: var(--slate-mid);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .service-block { grid-template-columns: 1fr; }
}

/* Values list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.values-grid .value h4 {
  color: var(--slate-dark);
  margin-bottom: 8px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.values-grid .value p {
  color: var(--slate-mid);
  padding-left: 15px;
  margin-top: 0;
}

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info h3 {
  color: var(--slate-dark);
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 18px;
  color: var(--slate-mid);
}

.contact-info strong {
  display: block;
  color: var(--slate-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  display: block;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9c2b3;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

form.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

/* Footer */
footer.site-footer {
  background: var(--slate-dark);
  color: #c6cbd2;
  padding: 50px 0 30px;
}

footer.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid #4a5560;
}

footer.site-footer .logo img { height: 40px; }

footer.site-footer .tagline {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

footer.site-footer nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

footer.site-footer nav a {
  text-decoration: none;
  color: #c6cbd2;
  font-size: 0.9rem;
}

footer.site-footer nav a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  text-decoration: none;
  color: #c6cbd2;
  border: 1px solid #5e6b7b;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--slate-dark);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-bottom {
  padding-top: 22px;
  font-size: 0.82rem;
  color: #8b93a0;
  text-align: center;
}

/* Resources page */
.disclosure {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--slate-mid);
  font-size: 0.85rem;
  font-style: italic;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.resource-card {
  background: var(--white);
  border: 1px solid #e7e2d8;
  border-radius: 6px;
  padding: 32px;
}

.resource-card .badge {
  display: inline-block;
  background: var(--cream);
  color: var(--slate);
  border: 1px solid #e7e2d8;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.resource-card h3 {
  color: var(--slate-dark);
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.resource-card p {
  color: var(--slate-mid);
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.resource-card a.resource-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 2px solid var(--gold-pale);
  padding-bottom: 2px;
}

.resource-card a.resource-link:hover {
  border-color: var(--gold);
}

.resource-empty {
  border: 1px dashed #c9c2b3;
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
  color: var(--slate-mid);
  font-style: italic;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 4px solid var(--gold);
  background: var(--white);
  border-left: 1px solid #e7e2d8;
  border-right: 1px solid #e7e2d8;
  border-bottom: 1px solid #e7e2d8;
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(47, 54, 63, 0.08);
}

.blog-card .post-meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: var(--slate-dark);
  font-size: 1.2rem;
  margin: 0 0 12px;
  line-height: 1.35;
}

.blog-card p {
  color: var(--slate-mid);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.blog-card .read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Blog post article */
.post-hero .post-meta {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

article.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 24px;
}

article.post-body p {
  color: var(--slate-mid);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 24px;
}

article.post-body h2 {
  color: var(--slate-dark);
  font-size: 1.5rem;
  margin: 44px 0 18px;
}

article.post-body ul {
  color: var(--slate-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  padding-left: 22px;
  margin: 0 0 24px;
}

article.post-body li {
  margin-bottom: 8px;
}

article.post-body .pullquote {
  margin: 40px 0;
}

.post-byline {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
}

.post-byline img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.post-byline .name {
  color: var(--slate-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.post-byline .role {
  color: var(--slate-mid);
  font-size: 0.85rem;
}

/* Process timeline (Services — "What an Engagement Looks Like") */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 50px auto 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--gold-pale);
}

.process-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding-bottom: 46px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step .step-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cream);
}

.process-step .step-icon svg {
  width: 24px;
  height: 24px;
}

.process-step .step-num {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--slate-dark);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

.process-step .step-content {
  padding-top: 8px;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--slate-dark);
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: var(--slate-mid);
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  .process-timeline { margin-top: 36px; }
  .process-step { gap: 18px; padding-bottom: 36px; }
  .process-step .step-icon { width: 46px; height: 46px; }
  .process-step .step-icon svg { width: 20px; height: 20px; }
  .process-timeline::before { left: 22px; }
}
