:root {
  --rise-blue: #1577b0;
  --rise-blue-dark: #0e4463;
  --rise-blue-light: #ecf4fe;
  --rise-text: #2b2b2b;
  --rise-muted: #595959;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--rise-text);
  background: #fff;
  line-height: 1.6;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}

.site-header .brand {
  display: inline-block;
}

.site-header .logo {
  height: 200px;
  width: auto;
}

.site-header nav {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-header nav a {
  color: #151515;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.214em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid transparent;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--rise-blue);
  border-bottom-color: var(--rise-blue);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.site-footer a {
  color: var(--rise-blue);
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle-label {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--rise-blue);
    line-height: 1;
  }

  .site-header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .site-header nav a {
    padding: 0.6rem 0;
    border-top: 1px solid #eee;
    border-bottom: none;
  }

  .nav-toggle:checked ~ nav {
    display: flex;
  }

  .site-header .logo {
    height: 130px;
  }
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

main h1, main h2 { color: var(--rise-blue-dark); }

main a { color: var(--rise-blue); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  color: #167cb8;
  margin-bottom: 2rem;
}

/* Hero (full-bleed, breaks out of main's max-width) */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero {
    height: 400px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  color: #f7f7f7;
  text-align: center;
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 62px;
  letter-spacing: 1.426px;
  line-height: 1.2;
  max-width: 800px;
  margin: 0;
  padding: 4rem 1.5rem;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 36px;
  }
}

.mission-box {
  background: var(--rise-blue-light);
  border-radius: 4px;
  margin: 3rem 0;
  padding: 2rem;
  text-align: center;
  color: var(--rise-muted);
}

.mission-box p {
  margin: 0 0 1rem;
}

.mission-box p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.service-card {
  flex: 1 1 260px;
  max-width: 338px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--rise-blue-light);
  display: flex;
  flex-direction: column;
}

.service-card-title {
  padding: 14px 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
}

.service-card-title h3 {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: #1b1b1b;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.5rem 32px;
  flex-grow: 1;
}

.service-card-body p {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5e5e5e;
  text-align: center;
}

.service-card-body p a {
  color: var(--rise-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-photo-portrait img {
  border-radius: 8px;
  aspect-ratio: 3 / 4;
}

.about-bio h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 400;
  color: #1b1b1b;
}

.about-bio p {
  color: var(--rise-muted);
  font-size: 16px;
}

.about-role {
  color: #5e5e5e;
  font-weight: 400;
  margin-top: -0.5rem;
}

.btn-more {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--rise-blue);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.btn-more:hover {
  background: var(--rise-blue-dark);
}

.certifications {
  text-align: center;
  margin-top: 4rem;
}

.certifications-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 2rem;
}

.certifications-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.certifications-row:last-child {
  margin-bottom: 0;
}

.certification-badge {
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .certifications-row {
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 260px;
    margin: 0 auto;
  }
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #777;
  font-size: 0.85rem;
}

.social-links {
  margin-bottom: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: var(--rise-muted);
}

.social-icon:hover {
  border-color: var(--rise-blue);
  color: var(--rise-blue);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 2rem 0;
  max-width: 500px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d8d4cb;
  border-radius: 4px;
  background: #fff;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.65rem 1.75rem;
  background: var(--rise-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--rise-blue-dark);
}

.btn-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 8px 32px;
  background: #31adf5;
  color: #000;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.996px;
  text-transform: uppercase;
}

.btn-cta:hover {
  background: #1e9adf;
}

.sessions-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sessions-hero-img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  border-radius: 4px;
}

.sessions-hero-text {
  grid-column: 2;
  grid-row: 1;
}

.sessions-hero-text h1 {
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #4682b4;
  margin: 0 0 1rem;
}

.sessions-hero-text p {
  font-size: 22px;
  color: #5e5e5e;
}

.sessions-arrow-img {
  grid-column: 1;
  grid-row: 2;
  width: 64%;
  align-self: start;
}

.sessions-list {
  grid-column: 2;
  grid-row: 2;
}

.session-entry {
  margin-bottom: 2.5rem;
}

.session-entry h4 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1b1b1b;
  text-align: left;
  margin: 0 0 0.75rem;
}

.session-subtitle {
  font-size: 16px;
  font-style: italic;
  color: #5e5e5e;
  margin: 0 0 0.5rem;
}

.session-body {
  font-size: 16px;
  line-height: 24px;
  color: #5e5e5e;
  margin: 0 0 0.5rem;
}

.session-explores {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  color: #5e5e5e;
  font-size: 16px;
  line-height: 24px;
}

.session-bullets {
  font-size: 16px;
  line-height: 24px;
  color: #5e5e5e;
  margin: 0;
}

.session-bullets a {
  color: var(--rise-blue);
}

.session-closing {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1b1b1b;
  margin: 2rem 0 1rem;
}

@media (max-width: 700px) {
  .sessions-hero {
    grid-template-columns: 1fr;
  }

  .sessions-hero-img {
    grid-column: 1;
    grid-row: 1;
  }

  .sessions-hero-text {
    grid-column: 1;
    grid-row: 2;
  }

  .sessions-arrow-img {
    display: none;
  }

  .sessions-list {
    grid-column: 1;
    grid-row: 3;
  }
}

.blog-post {
  max-width: 760px;
}

.blog-post h1 {
  font-family: "League Spartan", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #1b1b1b;
  margin: 0 0 0.5rem;
}

.post-meta {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #595959;
  margin: 0 0 0.5rem;
}

.post-author {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  margin: 0 0 1rem;
}

.post-featured-img {
  width: 100%;
  border-radius: 4px;
  margin-top: 1rem;
}

.post-photo-credit {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #525252;
  margin: 0.5rem 0 1.5rem;
}

.post-body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5e5e5e;
}

.post-body p {
  margin: 0 0 1rem;
}

.post-body strong {
  color: #5e5e5e;
  font-weight: 700;
  display: block;
  margin-top: 1.5rem;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.post-body a {
  color: var(--rise-blue);
}

.post-hashtags {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  margin-top: 2rem;
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.insight-entry {
  display: grid;
  grid-template-columns: 192px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.insight-entry:first-child {
  border-top: 1px solid #e5e5e5;
}

.insight-entry img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.insight-meta {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #595959;
  margin: 0 0 0.4rem;
}

.insight-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1b1b1b;
  margin: 0 0 0.5rem;
}

.insight-title a {
  color: inherit;
  text-decoration: none;
}

.insight-excerpt {
  font-size: 16px;
  line-height: 24px;
  color: #5e5e5e;
  margin: 0 0 0.5rem;
}

.insight-continue {
  font-size: 16px;
  color: var(--rise-blue);
  text-decoration: none;
}

@media (max-width: 600px) {
  .insight-entry {
    grid-template-columns: 100px 1fr;
  }
}
