<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://generationsconsulting.net/sitemaps.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Generations Consulting</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
  <style>
    html, body {
      height: 100%;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: #262722;
     scroll-behavior: smooth;
	  max-width: 1800px;
	  margin: auto;      
    }
	html {
		background: url('https://generationsconsulting.net/wp-content/uploads/2025/03/Background.png') center center / cover no-repeat fixed;
	}
	html::before, html::after {
	  content: "";
	  position: fixed;
	  top: 0;
	  bottom: 0;
	  width: calc((100vw - 1800px) / 2); /* fills space beyond 1800px */
	  background: #000;
	  z-index: 0;
	  pointer-events: none;
	}
	html::before {
	  left: 0;
	}
	html::after {
		right: 0;
	}

    body::before, body::after {
      content: "";
      position: fixed;
      top: 0;
      bottom: 0;
      width: 10vw;
      z-index: 3;
      pointer-events: none;
    }
	@media (min-width: 1700px) {
		body::before, body::after { 
		display: block; 
		width: 50px;
		}
		body::before {
			left: calc(50% - 905px);
			background: linear-gradient(to right, #000, transparent);
		}
		body::after {
			right: calc(50% - 900px);
			background: linear-gradient(to left, #000, transparent);}
	}
	.page-wrapper {
	  max-width: 1800px;
	  margin: 0 auto;
	  position: relative;
	  background-color: transparent;
	  z-index: 1;
	}
    header {
      background-color: #013220;
      color: #FDFBEE;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    header > * {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
      display: block;
      text-align: left;
    }
	@media (max-width: 650px) {
		  header img {
			display: none;
		  }
		  header div:nth-child(1) {
			  padding-left: 0px !important;
			  padding-right: 44px;
		  }
		  header { padding-left: 0px !important; }
		}
		@media (max-width: 504px) {
			header p {
				display: none;
			}
		}
	nav {
	  background-color: #5A7D3E;
	  display: flex;
	  justify-content: center;
	  gap: 2rem;
	  margin-top: -35px;
	  padding-top: 50px;
	  position: sticky;
	  top: 4rem; 
	  z-index: 998;
	  width: 100%;
	  align-items: flex-end;
	  transition: top 0.3s ease;
	}
	.nav-toggle {
	  display: none;
	  background: none;
	  border: none;
	  font-size: 2rem;
	  color: #FDFBEE;
	  cursor: pointer;
	}
	.nav-inner {
	  max-width: 1800px;
	  width: 100%;
	  margin: 0 auto;
	  display: flex;
	  justify-content: center;
	  gap: 2rem;
	  align-items: flex-end;
	  padding: 0.75rem 1rem 0.25rem;
	}
	
    nav a {
      color: #FDFBEE;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    nav a:hover {
      color: #E3D8B6;
      transform: scale(1.05);
    }
	@media (max-width: 1100px) {
	  .nav-inner {
			display: none;
			flex-direction: column;
			background-color: #5A7D3E;
			width: 100%;
			padding: 1rem 2rem;
	  }
	.nav-inner.show {
			display: flex;
		  }

	.nav-toggle {
			display: block;
			position: absolute;
			right: 2rem;
			top: 1rem;
			z-index: 1000;
			font-size: 45px;
			padding-top: 10px;
		  }
	}
    .hero {
      background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
      color: #FDFBEE;
      padding: 5rem 2rem 4rem;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 3px #000;
    }
    .hero p {
      font-size: 1.35rem;
      max-width: 800px;
      margin: 0 auto;
      color: #E3D8B6;
      text-shadow: 1px 1px 2px #000;
    }
    .section {
      scroll-margin-top: 140px;
      background-color: rgba(253, 251, 238, 0.85);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      margin: 3rem auto;
      padding: 3.5rem 2rem;
      max-width: 1000px;
      border-left: 8px solid #013220;
      box-shadow: inset -4px 0 0 #013220;
    }
    .banner {
      background-color: #013220;
      color: #FDFBEE;
      text-align: center;
      padding: 2rem 1rem;
      font-size: 1.2rem;
      font-style: italic;
      border-top: 4px solid #A7C17C;
      border-bottom: 4px solid #A7C17C;
    }
	.plan-steps {
	  display: flex;
	  gap: 1rem;
	  overflow-x: auto; /* or remove if you prefer multiline wrap instead of horizontal scroll */
	  scroll-snap-type: x mandatory;
	  justify-content: center; /* optional if you want them centered initially */
	  width: 100%; /* ensure it can stretch across the section */
	}

	.plan-step {
	  flex: 1 1 200px;    /* base size: 200px */
	  max-width: 200px;   /* do not exceed 200px normally */
	  min-height: 300px;
    transition: all 0.75s ease;
	  position: relative;
	  color: #fff;
	  border-left: 6px solid #013220;
	  border-radius: 4px;
	  scroll-snap-align: start;
	  text-align: center;
	  overflow: hidden;
	  padding: 1rem;
	}

.plan-step:nth-child(1) {
  background: url('https://generationsconsulting.net/wp-content/uploads/2025/03/Prepare.png') center / cover no-repeat;
}
.plan-step:nth-child(2) {
  background: url('https://generationsconsulting.net/wp-content/uploads/2025/03/Layout.png') center / cover no-repeat;
}
.plan-step:nth-child(3) {
  background: url('https://generationsconsulting.net/wp-content/uploads/2025/03/Act.png') center / cover no-repeat;
}
.plan-step:nth-child(4) {
  background: url('https://generationsconsulting.net/wp-content/uploads/2025/03/Navigate.png') center / cover no-repeat;
}

	.plan-step:hover {
	  flex: 1 1 50%;
	  max-width: 50%;
	}

	.overlay {
	  pointer-events: none;
	  position: absolute;
	  inset: 0;
	  background-color: rgba(255,255,255,0.6);
	  z-index: 1;
	}

	.plan-step h3 {
	  position: relative;
	  margin: 1rem 0;
	  font-size: 3rem;
	  z-index: 2;
	}

	.plan-letter {
	  display: inline;
	  color: #013220;
	}

	.plan-full {
	  display: none;
	  margin-left: 0.5rem;
	  color: #013220;
	}

	.plan-step:hover .plan-letter {
	  display: none;
	}
	.plan-step:hover .plan-full {
	  display: inline;
    transition: all 0.75s ease;
	}

	.plan-step p {
	  position: relative;
	  z-index: 2;
	  margin: 0;
	  margin-top: 1rem;
	  color: #013220;
	}
@media (max-width: 900px) {
  .plan-letter {
    display: none !important;
  }
  .plan-full {
    display: inline !important;
  }

  .plan-step {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
    .plan-steps {
    flex-direction: column;
    gap: 2rem;
    overflow-x: visible;
  }
  .plan-steps-wrapper {
	  padding: 0 1rem; /* Matches section internal padding if needed */
	  max-width: 100%;
	  box-sizing: border-box;
	}

.plan-steps {
	  display: flex;
	  gap: 1rem;
	  scroll-snap-type: x mandatory;
	  justify-content: center;
	  width: 100%;
	  box-sizing: border-box;
	}
}

.success-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-card {
  background-color: rgba(255, 255, 255, 0.75); /* semi-transparent overlay */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1000px rgba(253, 251, 238, 0.6); /* frosted effect */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-left: 6px solid #013220;
  transition: transform 0.3s ease;
}

.success-card:hover {
  transform: scale(1.02);
}

.success-card strong {
  color: #013220;
  font-size: 1.1rem;
}

.success-card p {
  margin-top: 0.5rem;
  color: #262722;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  border-left: 6px solid #013220;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset -4px 0 0 #A7C17C;
  margin-bottom: 10px;
}

.contact-item i {
  font-size: 1.25rem;
  color: #013220;
  min-width: 20px;
}

.site-footer {
  background-color: #262722;
  color: #FDFBEE;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 4px solid #A7C17C;
}

.footer-content p {
  margin: 0.5rem 0;
}

.footer-content a {
  color: #FDFBEE;
  margin: 0 0.5rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #E3D8B6;
}


</style>
</head>
<body>
<div class="page-wrapper">
<header style="padding: 12px 2rem; background-color: #013220; color: #FDFBEE;">
  <div style="display: flex; align-items: center; gap: 2rem; max-width: 1000px; margin-left: 0px;">

    <div style="flex-shrink: 0;">
      <img src="https://generationsconsulting.net/wp-content/uploads/2025/03/Logo.png" alt="Generations Consulting Logo" style="height: 85px; width: auto;">
    </div>

    <div>
      <h1 style="margin: 0 0 6px; font-size: 2rem;">Generations Consulting</h1>
      <p style="margin: 0; font-size: 1rem;">Clarity in the Canopy. Confidence in the Path.</p>
    </div>
  <button class="nav-toggle" onclick="document.querySelector('.nav-inner').classList.toggle('show')">☰</button>
  </div>
</header>


<nav>
  <div class="nav-inner">
    <a href="#about">About</a>
    <a href="#plan">PLAN</a>
    <a href="#portfolio">Portfolio</a>
    <a href="#contact">Contact</a>
  </div>
</nav>

  <section class="hero">
    <h1 style="padding-bottom: 10px; margin-top: 15px;">Prepared for Uncertainty. <br>Ready for Opportunity.</h1>
	<hr style="width: 60%; margin-bottom: 20px;">
    <p>Decision-making doesn’t have to mean guesswork. We provide the insights you need to lead confidently — not just follow where others have been.</p>
  </section>
  

  <div class="banner">
    The future doesn’t wait. You shouldn’t either.
  </div>

  <section class="section" id="about">
  <h2>About Us</h2>
  <p>Organizations don’t bring us in just for numbers — they bring us in for understanding.
    No matter the size of your team, industry, or stage of your journey, we provide people-first analytic strategies that measure not just what’s happening, but why — and what it means for where you're headed.
    While most analytics focus on what’s easy to track, we go deeper. With nearly a decade of study in psychology and data strategy, we surface the signals that impact hiring, promotion, retention, and everyday decisions. <br><br>
    We help you modify, build, and maintain systems that are easier to manage, more aligned with your goals, and better equipped to support the people who make your business run — your team, your candidates, your customers, and the people counting on your success.
    It’s not about measuring more. It’s about measuring what matters — and using that insight to make better decisions, faster.</p>

	</section>

<section class="section" id="plan">
  <h2>Where We Can Go From Here</h2>
  <p>Our work follows a flexible but proven model we call PLAN — a four-part framework that aligns with our core services and helps you move from questions to outcomes with clarity and control.</p>
<div class="plan-steps-wrapper">
  <div class="plan-steps">    
    <div class="plan-step">
      <div class="overlay"></div>
      <h3>
        <span class="plan-letter">P</span>
        <span class="plan-full">Prepare</span>
      </h3>
      <p>We begin by understanding your environment.</p>
      <span class="plan-full"><p style="margin-top:0px;">That means collecting the right data — from stakeholder needs and team dynamics to policies, tools, and performance metrics. We use this to map where you are and what matters most.
      Deliverables may include stakeholder maps, job analysis, policy audits, or readiness assessments.</p></span>
    </div>
    <div class="plan-step">
      <div class="overlay"></div>
      <h3>
        <span class="plan-letter">L</span>
        <span class="plan-full">Layout</span>
      </h3>
      <p>With the groundwork in place, we help you layout a clear path forward.</p>
      <span class="plan-full"><p style="margin-top: 0px;"> Using the insights gathered in the preparation phase, we organize what matters, identify opportunities and risks, and structure a plan that aligns with your goals and constraints. This is where strategy takes shape.
      Deliverables may include SWOT, SOAR, or PESTLE frameworks, scenario planning, or planning roadmaps.</p></span>
    </div>
    <div class="plan-step">
      <div class="overlay"></div>
      <h3>
        <span class="plan-letter">A</span>
        <span class="plan-full">Act</span>
      </h3>
      <p>We don’t just hand you a report and wish you luck — we help you turn insight into momentum.</p>
      <span class="plan-full"><p style="margin-top: 0px;">In this phase, we guide the rollout of new tools, processes, or practices with clarity and care. That means aligning stakeholders, supporting adoption, and designing communication that makes change feel manageable — not overwhelming.
      Examples include implementation planning, team workshops, onboarding design, training support, and process integration.</p></span>
    </div>

    <!-- N: Navigate -->
    <div class="plan-step">
      <div class="overlay"></div>
      <h3>
        <span class="plan-letter">N</span>
        <span class="plan-full">Navigate</span>
      </h3>
      <p>Progress doesn’t stop at launch — and neither do we.</p>
      <span class="plan-full"><p style="margin-top: 0px;">In this phase, we help you stay aligned with your goals by building systems for reflection, measurement, and refinement. That means tracking outcomes, identifying what’s working, and making adjustments before small issues become big ones.
      Deliverables may include performance dashboards, follow-up studies, implementation reviews, or financial impact summaries.</p>
    </div>
  </div>
  <p style="padding-top: 16px; margin-bottom: 0px;">And best of all? Generations Consulting operates as a 10-99 contractor, meaning all services may be offset through tax-deductible business expenses. We offer flexible terms, negotiable conditions, and pricing aligned with the value you receive—not inflated market rates. Whether you're a founder wearing too many hats or a team navigating change, we meet you where you are and move forward together.</p>
  </div>
</section>

  <section class="section" id="portfolio">
    <h2>Field Successes</h2>
	<div class="success-list">
	  <div class="success-card">
		<strong>User Interface and Design</strong>
		<p>Partnered with Land of the Blind to co-develop a redesigned digital character sheet that aligned with their system’s strengths while enhancing usability. Designed and created the visual elements to support intuitive navigation, improve onboarding for new players, and drive long-term engagement. The final design balanced narrative immersion with system clarity, helping first-time users feel confident and creative from the start.</p>
	  </div>
	  <div class="success-card">
		<strong>Managerial Conflict Strategy Workship</strong>
		<p>Facilitated an interactive workshop with Blue Cross Blue Shield’s leadership team to uncover existing conflict resolution approaches and further develop scalable, collaborative strategies. The session focused on strengthening alignment, expanding response options, and equipping managers with tools to address conflict constructively and consistently.</p>
	  </div>
	  <div class="success-card">
		<strong>Public Safety Assessment Partnership</strong>
		<p>Collaborated with Industrial Organizational Solutions to support the hiring and promotion processes for police and fire departments across the Southeast. Provided insight into role-relevant competencies, and ensured assessments supported fair, job-aligned decision-making for high-stakes public service roles.</p>
	  </div>
	</div>
  </section>

  <section class="section" id="contact">
    <h2>Start the Journey</h2>
    <p>When you're ready to move with purpose—even if the map is unfinished—we’re ready to walk beside you. Lets take the next step, together.</p>
	  <div class="contact-info">
		<div class="contact-item">
		  <i class="fas fa-envelope"></i>
		  <a href="mailto:alewine@generationsconsulting.net">alewine@generationsconsulting.net</a>
		</div>
		<div class="contact-item">
		  <i class="fab fa-linkedin"></i>
		  <a href="https://www.linkedin.com/company/generations-consulting-ga?_l=en_US" target="_blank">Connect on LinkedIn</a>
		</div>
		<div class="contact-item">
		<i class="fas fa-calendar-alt"></i></a>
		<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
		<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
		<a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/evanalewine'});return false;">Schedule a Meeting</a>
		</div>
	  </div>
  </section>
  
<!-- Calendly badge widget  -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<script type="text/javascript">window.onload = function() { Calendly.initBadgeWidget({ url: 'https://calendly.com/evanalewine', text: 'Take the Next Step', color: '#0069ff', textColor: '#ffffff', branding: true }); }</script>
  
<footer class="site-footer">
  <div class="footer-content">
    <p>&copy; 2025 Generations Consulting</p>
    <p>Clarity in the Canopy. Confidence in the Path.</p>
    <p>
      <a href="mailto:alewine@generationsconsulting.net"><i class="fas fa-envelope"></i></a>
      <a href="https://www.linkedin.com/company/generations-consulting-ga?_l=en_US" target="_blank"><i class="fab fa-linkedin"></i></a>
		<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
		<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
		<a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/evanalewine'});return false;"><i class="fas fa-calendar-alt"></i></a>
    </p>
  </div>
</footer>

 </div>
</body>
</html>
