@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Syne:wght@700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
html { scroll-behavior: smooth; scroll-padding-top: 64px; }

/* Override WordPress global styles which inject font-family/color at body level via wp_head() */
body {
  font-family: 'DM Sans', sans-serif !important;
  color: #1A1A1A !important;
  background-color: #F2EDE6 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site {
  font-family: 'DM Sans', sans-serif !important;
  color: #1A1A1A !important;
  background: #F2EDE6 !important;
  width: 100%;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* =====================
   NAV
   ===================== */
.nav {
  background: #1A1A1A;
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo svg,
.nav-logo svg,
.footer-logo svg {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  flex-shrink: 0 !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E05A0A;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-link:hover { color: #ffffff; }

.nav-link.active { color: #ffffff; }

/* Dropdown wrapper */
.nav-item-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Sub-menu — hidden by default, revealed on hover */
.nav-item-wrap .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1A1A1A;
  min-width: 220px;
  list-style: none;
  padding: 0.5rem 0;
  border-top: 2px solid #E05A0A;
  z-index: 200;
}

.nav-item-wrap:hover .sub-menu {
  display: block !important;
}

/* Sub-menu links */
.nav-sub-link {
  display: block;
  padding: 10px 16px;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E05A0A;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-sub-link:hover {
  color: #ffffff;
  background: #2a2a2a;
}

.nav-cta {
  background: #E05A0A;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-family: 'Ruda', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover { background: #ffffff; color: #E05A0A; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #E05A0A;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.btn-primary {
  background: #E05A0A;
  color: #ffffff;
  border: 1.5px solid #E05A0A;
  padding: 14px 28px;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
  background: #ffffff;
  color: #E05A0A !important;
  border-color: #E05A0A;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 0.5px solid #E05A0A;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

/* Hero button 1 — Sand outline, Sand text */
.btn-hero-ghost-sand {
  background: transparent;
  color: #F2EDE6 !important;
  border: 1.5px solid #F2EDE6;
  padding: 14px 28px;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-ghost-sand:hover {
  background: #F2EDE6;
  color: #1A1A1A !important;
  border-color: #F2EDE6;
}

/* Hero button 2 — Sand bg, Ember text */
.btn-hero-sand {
  background: #F2EDE6;
  color: #E05A0A !important;
  border: 1.5px solid #F2EDE6;
  padding: 14px 28px;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-sand:hover {
  background: #E05A0A;
  color: #ffffff !important;
  border-color: #E05A0A;
}


/* ── Impact band ── */
.impact-band {
  background: #E05A0A;
  padding: 2rem 0;
  overflow: hidden;
}

.impact-band .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.impact-band-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.impact-band-rule {
  width: 28px;
  height: 1.5px;
  background: #ffffff;
  flex-shrink: 0;
}

.impact-band-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.impact-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.impact-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid transparent;
  padding: 1.25rem 1.25rem 1.1rem;
  transition: border-top-color 0.2s ease, background 0.2s ease;
}

.impact-stat:hover {
  border-top-color: #1A1A1A;
  background: rgba(26, 26, 26, 0.18);
}

.stat-number {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.4;
}

.impact-band-footnote {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #ffffff;
  margin-top: 1.5rem;
  letter-spacing: 0.3px;
  text-align: center;
}

/* =====================
   ABOUT
   ===================== */
.about {
  padding: 6rem 3rem;
  background: radial-gradient(ellipse at 50% 50%, #F2EDE6 55%, #E8E2DA 100%);
}

.about .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.section-rule { width: 28px; height: 2px; background: #E05A0A; }

.section-tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E05A0A;
}

.section-h2 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 38px;
  color: #E05A0A;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-right {
  background: #1A1A1A;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 2px;
}

.credential {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cred-dot {
  width: 6px;
  height: 6px;
  background: #E05A0A;
  border-radius: 50%;
  flex-shrink: 0;
}

.cred-text {
  font-size: 13px;
  color: #F2EDE6;
  line-height: 1.4;
}

.cred-text strong {
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* =====================
   SERVICES
   ===================== */
.services-section {
  background: #1A1A1A;
  padding: 6rem 3rem;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-h2-light {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 38px;
  color: #ffffff;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.08);
}

.service-card {
  background: #1A1A1A;
  padding: 2.5rem 2rem 2rem;
  border-right: 0.5px solid rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  border-top: 2px solid transparent;
  transition: border-top-color 0.25s ease;
}

.service-card:hover {
  border-top-color: #E05A0A;
}

/* .service-ghost-num removed in Session K — element no longer in HTML */

.service-rule {
  width: 24px;
  height: 2px;
  background: #E05A0A;
  margin-bottom: 1.25rem;
}

.service-marker {
  margin-bottom: 0.75rem;
  display: block;
  line-height: 0;
}

.service-marker svg {
  width: 64px;
  height: 64px;
}

.service-num {
  font-family: 'Syne', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  color: #E05A0A;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.service-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 18px;
  color: #E05A0A;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 14px;
  color: #F2EDE6;
  line-height: 1.7;
}


/* ── Pricing section ── */
.pricing-section {
  background: #F2EDE6;
  padding: 5rem 0;
  overflow: hidden;
}

.pricing-section .section-h2-light {
  color: #1A1A1A !important;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-top-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.pricing-card--sand { background: #D8D0C6; }
.pricing-card--sand:hover { border-top-color: #E05A0A; background: #ccc3b8; }

.pricing-card--ember { background: #E05A0A; }
.pricing-card--ember:hover { border-top-color: #ffffff; background: #c94f09; }

.pricing-card--rule { background: #1A1A1A; }
.pricing-card--rule:hover { border-top-color: #E05A0A; background: #2a2a2a; }

.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-card-motif { flex-shrink: 0; }

.pricing-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
}

.pricing-card-title--white { color: #ffffff; }

.pricing-card--rule .pricing-card-title { color: #ffffff !important; }
.pricing-card--rule .pricing-card-desc { color: #ffffff !important; }

.pricing-period--ember { color: #E05A0A; }
.pricing-period--charcoal { color: #1A1A1A; }

.pricing-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
  flex: 1;
}

.pricing-card-desc--white { color: #ffffff; }

.pricing-card-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 1px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.pricing-card-cta--charcoal {
  color: #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.pricing-card-cta--white {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.pricing-card--sand .pricing-card-cta { color: #E05A0A !important; border-bottom-color: #E05A0A !important; }
.pricing-card--rule .pricing-card-cta { color: #E05A0A !important; border-bottom-color: #E05A0A !important; }

/* Stretched link covers entire card */
.pricing-card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ============================================
   FOUNDER / ABOUT SECTION
   ============================================ */

.founder-section {
  background: #1A1A1A;
  padding: 0 0 64px;
}

.site-main,
.page-content,
.entry-content,
main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.founder-section-eyebrow {
  margin-bottom: 20px;
}

/* ── Hero block ── */
.founder-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.founder-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,26,0.75) 0%,
    rgba(26,26,26,0.45) 42%,
    rgba(26,26,26,0) 65%
  );
  pointer-events: none;
  z-index: 1;
}

.founder-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}

.founder-quote-wrap {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid #E05A0A;
}

.founder-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: #F2EDE6 !important;
  line-height: 1.75;
  margin: 0;
}

.founder-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 56px;
  font-weight: 800 !important;
  line-height: 1;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 8px;
}

.founder-name-text {
  color: #E05A0A !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
}

.founder-name-period {
  color: #ffffff !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
}

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.founder-fcipd,
.founder-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  text-transform: none !important;
  display: block;
}

/* ── Bio band ── */
.founder-bio-band {
  display: block;
  padding: 40px 0;
  width: 100% !important;
  max-width: 100% !important;
}

.founder-bio-para,
.founder-section .bio-text,
.founder-bio-band p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1.8;
  margin-bottom: 28px;
  width: 100% !important;
  max-width: 100% !important;
}

/* ── Credentials: inline editorial treatment ── */
.founder-credentials {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  color: #F2EDE6 !important;
  line-height: 2.2;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.founder-cred { color: #F2EDE6 !important; }

.founder-cred--link {
  color: #F2EDE6 !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(242,237,230,0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.founder-cred--link:hover {
  color: #E05A0A !important;
  border-bottom-color: #E05A0A;
}

.founder-sep {
  color: #E05A0A !important;
  margin: 0 12px;
  font-weight: 700;
}

/* ── Buttons group ── */
.founder-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}


/* ============================================
   FOUNDER SECTION — RESPONSIVE (MOBILE)
   ============================================ */

@media (max-width: 768px) {

  .founder-section {
    padding: 0 0 40px;
  }

  .founder-hero {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .founder-hero::after {
    display: none;
  }

  .founder-hero-img {
    height: 420px;
    object-position: center 15%;
  }

  .founder-hero-overlay {
    position: static;
    width: 100%;
    background: #1A1A1A;
    padding: 2rem 1.5rem;
    justify-content: flex-start;
  }

  .founder-name {
    font-size: 40px;
    white-space: normal;
  }

  .founder-quote {
    font-size: 16px;
  }

  .founder-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-bio-para,
  .founder-section .bio-text,
  .founder-bio-band p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px;
    padding: 0;
  }

  .founder-bio-band {
    padding: 28px 20px !important;
  }

}

@media (max-width: 480px) {

  .founder-name {
    font-size: 32px;
  }

  .founder-quote {
    font-size: 16px;
  }

  .founder-hero-img {
    height: 380px;
  }

  .founder-bio-para,
  .founder-section .bio-text,
  .founder-bio-band p {
    font-size: 13px;
  }

}

/* Insights section */
.latest-thinking {
  background: #F2EDE6;
  padding: 5rem 0 4rem;
}

.latest-thinking .section-h2 {
  color: #1A1A1A;
}

.latest-thinking .section-tag-text {
  color: #E05A0A;
}

.latest-thinking .section-rule {
  background: #E05A0A;
}

/* Three equal cards in a row — mirrors .pricing-cards-grid */
.thinking-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2.5rem;
}

.thinking-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 120px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.thinking-card-motif {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  margin-bottom: 0;
  padding: 1rem 0.5rem;
}

.thinking-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.thinking-card-motif svg {
  width: 150px;
  height: 150px;
}

/* --- Black card --- */
.thinking-card--black                      { border-left: 4px solid #E05A0A; }
.thinking-card--black .thinking-card-motif { background: #1A1A1A; }
.thinking-card--black .thinking-card-body  { background: #1A1A1A; }
.thinking-card--black:hover                { filter: brightness(1.18); }
.thinking-card--black .thinking-pill       { background: #E05A0A; color: #ffffff; }
.thinking-card--black .thinking-title      { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: #F2EDE6; line-height: 1.35; margin: 0 0 5px; }
.thinking-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thinking-card--black .thinking-excerpt    { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #F2EDE6; line-height: 1.6; }
.thinking-card--black .thinking-meta       { font-family: 'DM Sans', sans-serif; font-size: 10px; color: #F2EDE6; text-align: center; line-height: 1.4; }
.thinking-card--black .thinking-read-link  { font-size: 12px; font-weight: 600; color: #F2EDE6; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; align-self: flex-end; }

/* --- Ember card --- */
.thinking-card--ember                      { border-left: 4px solid #1A1A1A; }
.thinking-card--ember .thinking-card-motif { background: #E05A0A; }
.thinking-card--ember .thinking-card-body  { background: #E05A0A; }
.thinking-card--ember:hover                { filter: brightness(0.88); }
.thinking-card--ember .thinking-pill       { background: #ffffff; color: #E05A0A; }
.thinking-card--ember .thinking-title      { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: #ffffff; line-height: 1.35; margin: 0 0 5px; }
.thinking-card--ember .thinking-excerpt    { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #ffffff; line-height: 1.6; }
.thinking-card--ember .thinking-meta       { font-family: 'DM Sans', sans-serif; font-size: 10px; color: #ffffff; text-align: center; line-height: 1.4; }
.thinking-card--ember .thinking-read-link  { font-size: 12px; font-weight: 600; color: #ffffff; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; align-self: flex-end; }

/* --- Rule card --- */
.thinking-card--rule                       { border-left: 4px solid #E05A0A; }
.thinking-card--rule .thinking-card-motif  { background: #D8D0C6; }
.thinking-card--rule .thinking-card-body   { background: #D8D0C6; }
.thinking-card--rule:hover                 { filter: brightness(0.93); }
.thinking-card--rule .thinking-pill        { background: #1A1A1A; color: #E05A0A; }
.thinking-card--rule .thinking-title       { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: #1A1A1A; line-height: 1.35; margin: 0 0 5px; }
.thinking-card--rule .thinking-excerpt     { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #1A1A1A; line-height: 1.6; }
.thinking-card--rule .thinking-meta        { font-family: 'DM Sans', sans-serif; font-size: 10px; color: #1A1A1A; text-align: center; line-height: 1.4; }
.thinking-card--rule .thinking-read-link   { font-size: 12px; font-weight: 600; color: #1A1A1A; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; align-self: flex-end; }

/* --- Shared pill base (colours set per-variant above) --- */
.thinking-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-bottom: 8px;
}

.thinking-view-all {
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .thinking-card {
    grid-template-columns: 1fr;
  }
  .thinking-card-motif {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: auto;
  }
  .thinking-card-motif svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .thinking-card-motif .thinking-meta {
    text-align: right;
    flex: 1;
    padding-left: 0.75rem;
  }
  .thinking-card-body {
    padding: 1rem;
  }
}

/* =====================
   CTA BAND
   ===================== */
.cta-band {
  background: #E05A0A;
  padding: 5rem 3rem;
}

.cta-band .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8%;
}

.cta-left h2 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 38px;
  color: #ffffff;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.cta-left p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
}

.btn-white {
  background: #1A1A1A;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-white:hover {
  background: #ffffff;
  color: #1A1A1A !important;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #1A1A1A;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  font-family: 'Ruda', sans-serif !important;
}

.footer-centre {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-strapline-main {
  font-family: 'Ruda', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #E05A0A;
  display: block;
}

.footer-strapline-accent {
  font-family: 'Ruda', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.footer-copy {
  font-family: 'Ruda', sans-serif !important;
  font-size: 11px;
  color: #F2EDE6;
  letter-spacing: 0.5px;
}

.footer-established {
  font-family: 'Ruda', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #F2EDE6;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-link {
  font-family: 'Ruda', sans-serif !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F2EDE6;
  text-decoration: none;
  cursor: pointer;
}

.footer-link:hover { color: #E05A0A; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* Dark-background prose link colour — Ember on Charcoal */
.entry-content a,
.page-content-inner a,
.post-content-inner a,
.post-tags-wrap a,
.page-content a,
.site-content a:not(.nav-link):not(.nav-cta):not(.btn-primary):not(.btn-ghost):not(.btn-white):not(.footer-link):not(.btn-hero-ghost-sand):not(.btn-hero-sand) {
  color: #E05A0A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:hover,
.page-content-inner a:hover,
.post-content-inner a:hover,
.post-tags-wrap a:hover,
.page-content a:hover {
  color: #F2EDE6;
}
/* Suppress WordPress default blue link colour globally */
a:not([class]) {
  color: inherit;
}
/* Override WP/Jetpack injected blue links on content pages */
.page-content p a,
.page-content li a,
.entry-content p a,
.entry-content li a {
  color: #E05A0A !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}
.page-content p a:hover,
.page-content li a:hover,
.entry-content p a:hover,
.entry-content li a:hover {
  color: #F2EDE6 !important;
}
/* High-specificity Ember link rule — ensures no browser or plugin default blue bleeds through */
.page-content a,
.post-content-inner a,
.entry-content a {
  color: #E05A0A !important;
  text-decoration: none;
}
.page-content a:hover,
.post-content-inner a:hover,
.entry-content a:hover {
  text-decoration: underline;
}

/* =====================
   SCROLL TO TOP
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: #1A1A1A;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 200;
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #E05A0A;
  border-color: #E05A0A;
}

.scroll-top svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================
   BLOG & ARCHIVE HEADER
   ===================== */
.archive-header h1,
.archive-title,
.page-header h1,
.page-header .page-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 50px !important;
  color: #ffffff !important;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* =====================
   FADE UP ANIMATION
   ===================== */
.fade-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   PAGE TEMPLATE (Privacy / T&C)
   ===================== */
.page-content {
  background: #1A1A1A;
  padding: 1.5rem 0 3rem !important;
  min-height: 60vh;
}

.page-content h1 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 38px;
  color: #E05A0A;
  letter-spacing: -0.8px;
  margin-bottom: 2rem;
}

.page-content h2 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 24px;
  color: #E05A0A;
  letter-spacing: -0.3px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: #F2EDE6 !important;
  line-height: 1.8 !important;
  margin-bottom: 1rem !important;
}

.page-content ul, .page-content ol {
  font-size: 15px;
  color: #F2EDE6;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

/* =====================
   404 PAGE
   ===================== */
.not-found {
  background: #1A1A1A;
  padding: 8rem 3rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.not-found h1 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 120px;
  color: rgba(255,255,255,0.05);
  letter-spacing: -8px;
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found h2 {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 38px;
  color: #E05A0A;
  letter-spacing: -0.8px;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 15px;
  color: #F2EDE6;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* =====================
   RESPONSIVE — 1024px (Nav collapse)
   ===================== */
@media (max-width: 1024px) {
  /* Nav: hamburger */
  .nav {
    padding: 0 1.5rem;
    position: relative;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #1A1A1A;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 0.5px solid rgba(255,255,255,0.08);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  /* Dropdown: flat/indented on mobile */
  .nav-item-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-item-wrap .sub-menu {
    display: block !important;
    position: static;
    background: transparent;
    border-top: none;
    border-left: 2px solid #E05A0A;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.5rem;
    min-width: auto;
  }

  .nav-sub-link {
    padding: 6px 0;
    white-space: normal;
  }
}

/* =====================
   RESPONSIVE — 768px (Tablet)
   ===================== */
@media (max-width: 768px) {
  .section-inner,
  .impact-band .section-inner {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* About */
  .about {
    padding: 4rem 1.5rem;
  }

  .about .section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Thinking grid */
  .thinking-grid {
    grid-template-columns: 1fr;
  }

  .thinking-secondary {
    gap: 12px;
  }

  /* Impact Band */
  .impact-band {
    padding: 2.5rem 1.5rem;
  }

  /* Services */
  .services-section {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impact-band-grid {
    grid-template-columns: 1fr !important;
  }
  .impact-stat {
    width: 100%;
  }

  /* Pricing */
  .pricing-section {
    padding: 4rem 1.5rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card {
    width: 100%;
  }

  /* CTA Band */
  .cta-band {
    padding: 4rem 1.5rem;
  }

  .cta-band .section-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Page */
  .page-content {
    padding: 3rem 0;
  }
}

/* =====================
   RESPONSIVE — 480px (Mobile)
   ===================== */
@media (max-width: 480px) {
  .section-inner,
  .impact-band .section-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* About */
  .about {
    padding: 3rem 1rem;
  }

  /* Services */
  .services-section {
    padding: 3rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Impact Band */
  .impact-band {
    padding: 2rem 1rem;
  }

  .impact-band-grid {
    grid-template-columns: 1fr !important;
  }
  .impact-stat {
    width: 100%;
  }

  /* Pricing */
  .pricing-section {
    padding: 3rem 1rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card {
    width: 100%;
  }

  /* CTA Band */
  .cta-band {
    padding: 3rem 1rem;
  }

  /* Footer: single column, centred */
  .footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Nav */
  .nav {
    padding: 0 1rem;
  }

  /* Page */
  .page-content {
    padding: 2.5rem 0;
  }

  /* Mobile font sizes */
  .section-body {
    font-size: 16px;
  }
  .service-desc {
    font-size: 14px;
  }

  .not-found {
    padding: 4rem 1rem;
  }
}


/* Empty page content — hide when no content */
.blog-posts:empty,
.blog-posts > div:empty {
  display: none;
}

/* Site main flex */
.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Post footer section-inner — preserve flex space-between layout */
.post-footer .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Blog pagination section-inner — preserve flex centering layout */
.blog-pagination .section-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
 
 /* =====================
   CONTACT FORM PAGE
   ===================== */

/* Override WPForms default confirmation box */
.wpforms-confirmation-container-full,
.wpforms-confirmation-container {
  background: transparent !important;
  border: 0.5px solid #E05A0A !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  padding: 2rem !important;
  color: #F2EDE6 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Form container */
.wpforms-container {
  max-width: 640px !important;
  margin: 0 auto !important;
}

/* Field labels */
.wpforms-field-label {
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #F2EDE6 !important;
}

/* Input fields */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  background: rgba(255,255,255,0.05) !important;
  border: 0.5px solid rgba(255,255,255,0.15) !important;
  border-radius: 2px !important;
  color: #F2EDE6 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  width: 100% !important;
  transition: border-color 0.2s ease !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: #E05A0A !important;
  outline: none !important;
  background: rgba(255,255,255,0.07) !important;
}

/* Placeholder text */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
  color: rgba(242,237,230,0.35) !important;
}

/* Submit button */
.wpforms-submit {
  background: #E05A0A !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}

.wpforms-submit:hover {
  opacity: 0.85 !important;
}

/* Required asterisk */
.wpforms-required-label {
  color: #E05A0A !important;
}

/* Error messages */
.wpforms-error {
  color: #E05A0A !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
}

.wpforms-field-sublabel {
  color: #F2EDE6 !important;
}

.blog-archive-header {
  background: #1A1A1A !important;
  padding: 3rem 0 2.5rem !important;
  position: relative;
  overflow: hidden;
}

.blog-archive-header .section-tag-text {
  color: #E05A0A !important;
}

.blog-archive-header .section-rule {
  background: #E05A0A !important;
}

.blog-archive-header h1,
.blog-archive-header > h1 {
  color: #ffffff !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 48px !important;
  letter-spacing: -1.5px !important;
  line-height: 1.05 !important;
}

/* Override WordPress native block spacing */
.page-content .wp-block-group,
.page-content > .section-inner > *:first-child,
.entry-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =====================
   DARK PAGE BACKGROUNDS
   Jetpack override fix
   ===================== */

/* Thank You, Resources, Contact Us pages + Blog + Category/Tag/Author archives */
body.page-id-75,
body.page-id-32,
body.page-id-56,
body.blog,
body.category,
body.tag,
body.author {
  background-color: #1a1a1a !important;
}

/* Ensure inner content areas also stay graphite */
body.page-id-75 .site-content,
body.page-id-75 .entry-content,
body.page-id-32 .site-content,
body.page-id-32 .entry-content,
body.page-id-56 .site-content,
body.page-id-56 .entry-content,
body.blog .site-content,
body.blog .entry-content,
body.category .site-content,
body.category .entry-content,
body.tag .site-content,
body.tag .entry-content,
body.author .site-content,
body.author .entry-content {
  background-color: #1a1a1a !important;
}

/* =====================
   CONTACT FORM SUBMIT
   Match btn-primary style
   ===================== */

.wp-block-jetpack-contact-form .wp-block-button__link,
.wp-block-jetpack-contact-form .wp-element-button {
  background: #E05A0A !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: opacity 0.2s ease !important;
}

.wp-block-jetpack-contact-form .wp-block-button__link:hover,
.wp-block-jetpack-contact-form .wp-element-button:hover {
  opacity: 0.85 !important;
}

/* =====================
   JETPACK FORM FIXES
   ===================== */

/* Fix button pill shape */
.wp-block-jetpack-contact-form .wp-block-button__link,
.wp-block-jetpack-contact-form .wp-element-button {
  border-radius: 2px !important;
}

/* Field labels in Sand */
.wp-block-jetpack-contact-form .jetpack-field-label,
.wp-block-jetpack-contact-form label {
  color: #F2EDE6 !important;
  font-family: 'Ruda', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* Required notation in Rule */
.wp-block-jetpack-contact-form .required,
.wp-block-jetpack-contact-form .jetpack-field-label .required,
.wp-block-jetpack-contact-form label .required,
.wp-block-jetpack-contact-form label abbr {
  color: #D8D0C6 !important;
}

/* =====================
   PAGE TITLE GAP FIX
   ===================== */
.page .post-content-wrap,
.page .entry-content,
.page .wp-block-post-content {
  padding-top: 2rem !important;
  margin-top: 0 !important;
}

.page .post-content-wrap > .section-inner > *:first-child,
.page .entry-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =====================
   BLOCK EDITOR SPACING OVERRIDES
   ===================== */
.post-content-wrap,
.entry-content,
.wp-block-post-content,
.post-content-inner {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Remove default block editor body padding on inner pages */
.single .wp-block-post-content > *:first-child,
.page .wp-block-post-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =====================
   POST TITLE EMBER PERIOD
   ===================== */
.post-header h1 .title-period {
  color: #E05A0A;
  font-style: normal;
}

/* =====================
   IMAGE CAPTIONS — dark backgrounds
   ===================== */
.single .wp-caption-text,
.single figcaption,
.single .blocks-gallery-caption,
.page .wp-caption-text,
.page figcaption,
.page .blocks-gallery-caption {
  color: #F2EDE6;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-style: italic;
  margin-top: 0.5rem;
}


/* =====================
   H1 COLOUR — INNER PAGES
   ===================== */
.single h1,
.page h1,
.post-content-inner h1 {
  color: #ffffff;
}

/* =====================
   NAV SEARCH
   ===================== */
.nav-search {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-search-toggle {
  background: transparent;
  border: none;
  color: #F2EDE6;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.nav-search-toggle:hover {
  color: #E05A0A;
}
.nav-search-form {
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  transition: width 0.25s ease;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,26,26,0.98);
  border: 0.5px solid rgba(242,237,230,0.2);
}
.nav-search-form.nav-search-open {
  width: 240px;
  overflow: visible;
}
.nav-search-form:focus-within {
  border-color: #E05A0A;
}
.nav-search-input,
.nav-search-form input[type="search"],
.nav-search-form input[type="text"] {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #F2EDE6 !important;
  padding: 10px 14px !important;
  width: 100% !important;
  -webkit-appearance: none;
  border-radius: 0 !important;
}
.nav-search-input::placeholder {
  color: rgba(242,237,230,0.4);
  font-style: italic;
}
.nav-search-submit {
  background: transparent;
  border: none;
  border-left: 0.5px solid rgba(242,237,230,0.2);
  color: #E05A0A;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.nav-search-submit:hover {
  background: #E05A0A;
  color: #ffffff;
}

.logo-print { display: none !important; }

@media print {
  .logo-screen { display: none !important; }
  .logo-print  { display: block !important; }
}

/* ========================================
   RESOURCES PAGE
   ======================================== */

.resources-page {
  background: #1A1A1A;
}

/* Page header */
.resources-header {
  background: #1A1A1A;
  padding: 3rem 0 2.5rem;
}
.resources-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0;
}
.resources-header-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #F2EDE6;
  opacity: 0.6;
  margin-top: 0.75rem;
}

/* Anchor nav */
.resources-anchor-nav {
  background: #1A1A1A;
  border-bottom: 0.5px solid #2E2E2E;
  padding: 1rem 0;
}
.resources-anchor-nav .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.resources-anchor-nav a {
  font-family: 'Ruda', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E05A0A;
  text-decoration: none;
  transition: color 0.2s;
}
.resources-anchor-nav a:hover {
  color: #ffffff;
}

/* Sections */
.resources-section {
  background: #1A1A1A;
  padding: 4rem 0;
}
.resources-section--bordered {
  border-top: 0.5px solid #2E2E2E;
}
.resources-section-header {
  margin-bottom: 2.5rem;
}
.resources-section-header .section-rule {
  margin-bottom: 0.75rem;
}
.resources-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}
.resources-section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888888;
  font-style: italic;
}

/* Resource rows */
.resources-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 0.5px solid #2E2E2E;
}
.resources-row:last-child {
  border-bottom: none;
}
.resources-row-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 2px;
}
.resources-row-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}
.resources-row-type {
  font-family: 'Ruda', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #E05A0A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.resources-row-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.resources-row-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #F2EDE6;
  line-height: 1.75;
}
.resources-row-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #E05A0A;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 90, 10, 0.3);
  padding-bottom: 1px;
  display: inline-block;
  transition: border-bottom-color 0.2s;
}
.resources-row-link:hover {
  border-bottom-color: #E05A0A;
}

/* Resources responsive */
@media (max-width: 768px) {
  .resources-section {
    padding: 3rem 0;
  }
  .resources-anchor-nav .section-inner {
    gap: 1.25rem;
  }
  .resources-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .resources-section {
    padding: 2.5rem 0;
  }
  .resources-section-title {
    font-size: 26px;
  }
}


/* ── HOMEPAGE INSIGHTS SECTION ── */

.hp-insights {
  background: #F2EDE6;
  padding: 4rem 0 4.5rem;
}

.hp-insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid #8C8479;
  margin-bottom: 0;
}

.hp-insights-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hp-insights-eyebrow-rule {
  width: 28px;
  height: 2px;
  background: #E05A0A;
  flex-shrink: 0;
}

.hp-insights-eyebrow-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E05A0A;
}

.hp-insights-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -1.5px;
  color: #1A1A1A;
  line-height: 1;
  margin: 0;
}

.hp-insights-all {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background: #E05A0A;
  padding: 0.6rem 1.25rem;
  display: inline-block;
}

.hp-insights-all:hover {
  background: #1A1A1A;
  color: #ffffff;
}

/* ── CARD LIST ── */

.hp-insights-list {
  display: flex;
  flex-direction: column;
}

.hp-card {
  display: grid !important;
  grid-template-columns: 1fr 42%;
  border-bottom: 0.5px solid #8C8479;
  background: #F2EDE6;
  min-height: 240px;
  text-decoration: none;
  transition: background 0.2s;
}

.hp-card:first-child {
  border-top: 0.5px solid #8C8479;
}

.hp-card:hover {
  background: #ede7df;
}

.hp-card--no-image {
  grid-template-columns: 1fr !important;
}

/* ── CARD CONTENT ── */

.hp-card-content {
  padding: 2rem 2.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 0.5px solid #8C8479;
}

.hp-card--no-image .hp-card-content {
  border-right: none;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
}

.hp-card-category {
  font-size: 0.6rem;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E05A0A !important;
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.hp-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: -0.5px;
  color: #1A1A1A !important;
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

.hp-card-excerpt {
  font-size: 0.85rem;
  color: #1A1A1A !important;
  line-height: 1.75;
  margin: 0;
}

.hp-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 0.5px solid #8C8479;
  margin-top: 1.5rem;
}

.hp-card--no-image .hp-card-top {
  border-right: 0.5px solid #8C8479;
  padding-right: 2rem;
}

.hp-card--no-image .hp-card-bottom {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
}

.hp-card-date {
  font-size: 0.75rem;
  color: #1A1A1A !important;
}

.hp-card-read {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E05A0A !important;
}

/* ── CARD IMAGE ── */

.hp-card-image {
  position: relative;
  overflow: hidden;
  background: #1A1A1A;
  align-self: stretch;
}

.hp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.hp-card:hover .hp-card-image img {
  transform: scale(1.03);
}

.hp-card-ember-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #E05A0A;
  z-index: 2;
}

/* ── RESPONSIVE ── */

@media ( max-width: 768px ) {
  .hp-card {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .hp-card-image {
    height: 220px;
    order: -1;
  }
  .hp-card-content {
    border-right: none;
    padding: 1.5rem 0;
  }
  .hp-card--no-image .hp-card-content {
    grid-template-columns: 1fr !important;
  }
  .hp-card--no-image .hp-card-top {
    border-right: none;
    padding-right: 0;
  }
  .hp-insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media ( max-width: 480px ) {
  .hp-insights {
    padding: 2.5rem 0 3rem;
  }
  .hp-insights-title {
    font-size: 1.5rem;
  }
  .hp-card-image {
    height: 180px;
  }
  .hp-card-content {
    padding: 1.25rem 0;
  }
  .hp-card-date,
  .hp-card-read {
    font-size: 0.6rem;
  }
}
