:root {
  --ocean-deep: #390099;
  --morning-mist: #ebe6f5;
  --midnight-purple: #25006b;
  --forest-whisper: #62c789;
  --forest-shadow: #4fa874;
  --sunset-flame: #f42f2c;
  --sunset-ember: #d42925;
  --neutral-boundary: #777777;
  --snow-canvas: #ffffff;
  --charcoal-text: #222222;
  --silver-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--snow-canvas);
  font-family: "Source Sans Pro", arial, sans-serif;
  font-weight: 280;
  font-size: 16px;
  line-height: 1.72;
  color: #6c757d;
}

.content-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 21px;
}

.display-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
}

.col-12 { width: 100%; padding: 0 13px; }
.col-medium-3 { width: 25%; padding: 0 13px; }
.col-medium-4 { width: 33.333%; padding: 0 13px; }
.col-medium-6 { width: 50%; padding: 0 13px; }
.col-medium-7 { width: 58.333%; padding: 0 13px; }
.col-medium-8 { width: 66.666%; padding: 0 13px; }
.col-medium-10 { width: 83.333%; padding: 0 13px; }
.col-large-3 { width: 25%; padding: 0 13px; }
.col-large-4 { width: 33.333%; padding: 0 13px; }
.col-large-5 { width: 41.666%; padding: 0 13px; }
.col-large-6 { width: 50%; padding: 0 13px; }
.col-large-8 { width: 66.666%; padding: 0 13px; }
.col-large-12 { width: 100%; padding: 0 13px; }
.col-small-6 { width: 50%; padding: 0 13px; }

.primary-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
    background: var(--snow-canvas);
    box-shadow: 0 3px 13px rgba(0,0,0,0.08);
}

.menu-controller {
    display: none;
}

.menu-controller-label {
    display: none;
}

.menu-icon {
    width: 32px;
    height: 4px;
    background: var(--charcoal-text);
    position: relative;
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 4px;
    background: var(--charcoal-text);
    transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-icon:before {
    top: -9px;
}

.menu-icon:after {
    top: 9px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navigation-item {
    list-style: none;
}

.navigation-link {
    color: var(--charcoal-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 420;
    transition: color 0.28s ease;
}

.navigation-link:hover {
    color: var(--ocean-deep);
}

.brand-identity img {
    height: 47px;
    width: auto;
}

.showcase-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 640px;
  height: calc(97vh);
  display: flex;
  align-items: center;
  position: relative;
}

.workspace-overlay {
  position: relative;
}

.workspace-overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.68);
}

.position-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}

.text-align-center {
  text-align: center;
}

.text-transform-upper {
  text-transform: uppercase;
}

.showcase-banner h1 {
  font-size: 3.9rem;
  font-weight: 780;
  color: var(--snow-canvas);
  margin-bottom: 23px;
  font-family: "Playfair Display", serif;
  line-height: 1.28;
}

.description-text {
  color: var(--snow-canvas);
  font-size: 1.47rem;
  line-height: 1.56;
  font-weight: 310;
  margin-bottom: 34px;
}

.scroll-indicator {
  position: absolute;
  bottom: 47px;
  z-index: 7;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  text-decoration: none;
}

.scroll-icon {
  display: block;
  width: 29px;
  height: 51px;
  border: 3px solid var(--snow-canvas);
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: 0.36s all ease-in-out;
}

.scroll-wheel {
  height: 6px;
  margin: 4px auto 0;
  display: block;
  width: 6px;
  background-color: var(--snow-canvas);
  border-radius: 50%;
  animation: 1.8s ease infinite scroll-motion;
}

.program-story-area {
    padding: 130px 0;
    overflow: hidden;
    background: var(--snow-canvas);
}

.story-layout .col-large-6 {
    vertical-align: middle;
    align-self: center;
}

.story-content {
    max-width: 420px;
}

.story-content h2 {
    color: var(--charcoal-text);
    font-size: 52px;
    line-height: 58px;
    margin-bottom: 34px;
    font-family: "Playfair Display", serif;
    font-weight: 720;
}

.story-content p {
    margin-bottom: 27px;
    line-height: 1.68;
    font-size: 17px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 320;
    color: var(--neutral-boundary);
}

.primary-action-button {
    margin-top: 27px;
    padding: 0px 34px;
    background: var(--sunset-flame);
    z-index: 3;
    display: inline-block;
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    color: var(--snow-canvas);
    font-size: 14px;
    font-weight: 620;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 52px;
    border: 2px solid var(--sunset-flame);
    border-radius: 7px;
    text-decoration: none;
}

.primary-action-button:hover {
    background: transparent;
    color: var(--sunset-flame);
    transform: translateY(-2px);
}

.story-visual {
    position: relative;
    padding-top: 89px;
    padding-bottom: 89px;
}

.story-visual:before {
    content: "";
    background: var(--morning-mist);
    position: absolute;
    right: -310px;
    top: 0px;
    max-width: 670px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 9px;
}

.program-services {
  padding: 97px 0 0; 
}

.workspace-padding-90-0 {
    padding-top: 97px;
    padding-bottom: 0;
}

.area-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 63px;
}

.area-heading h2 {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
    line-height: 1.32;
    color: var(--charcoal-text);
    font-family: "Playfair Display", serif;
    font-weight: 680;
}

.area-heading p {
    font-size: 18px;
    color: #a2a2a2;
    margin-bottom: 0;
    line-height: 1.54;
}

.individual-service-area {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 97px;
}

.individual-service-area img {
    display: inline-block;
    margin-bottom: 36px;
    width: 100%;
    max-width: 280px;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.31s ease;
}

.individual-service-area img:hover {
    transform: scale(1.05);
}

.individual-service-area h5 {
    font-size: 21px;
    margin-bottom: 18px;
    font-weight: 670;
    color: var(--charcoal-text);
    font-family: "Playfair Display", serif;
}

.individual-service-area p {
    margin-bottom: 0;
    line-height: 1.64;
    color: var(--neutral-boundary);
}

.primary-content-area {
  padding: 2.9em 0;
  background: #f9f9fa;
}

.content-area {
  line-height: 1.84;
  color: #2d4e65;
  font-weight: 320;
  font-size: 1.07rem;
}

.content-area p {
  margin-bottom: 1.68rem;
}

.action-button {
  padding: 12px 25px;
  border-radius: 52px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.32s ease;
  font-weight: 520;
}

.action-button-primary {
  background-color: var(--ocean-deep);
  border: 2px solid var(--ocean-deep);
  color: var(--snow-canvas);
}

.action-button-primary:hover {
  background-color: var(--midnight-purple);
  border-color: var(--midnight-purple);
}

.content-showcase-area {
  padding: 3.2em 0;
}

.position-items-center {
  align-items: center;
}

.margin-left-auto {
  margin-left: auto;
}

.area-title-accent {
  color: var(--charcoal-text);
  font-family: "Playfair Display", serif;
  font-weight: 650;
  font-size: 44px;
  line-height: 1.25;
}

.area-title-accent span {
  display: inline-block;
  border-bottom: 6px solid var(--forest-whisper);
  padding-bottom: 3px;
}

.leading-text {
  font-size: 1.34rem;
  font-weight: 420;
  line-height: 1.58;
  margin-bottom: 1.8rem;
  color: var(--charcoal-text);
}

.action-button-main {
  color: var(--snow-canvas);
  background-color: var(--forest-whisper);
  border: 2px solid var(--forest-whisper);
}

.action-button-main:hover {
  color: var(--snow-canvas);
  background-color: var(--forest-shadow);
  border-color: var(--forest-shadow);
  transform: translateY(-1px);
}

.rounded-edges {
  border-radius: 0 !important;
}

.padding-x-3 {
  padding-left: 1.9rem !important;
  padding-right: 1.9rem !important;
}

.responsive-visual {
  max-width: 100%;
  height: auto;
  border-radius: 7px;
}

.program-gallery {
  padding: 130px 0 97px; 
}

.individual-gallery {
  position: relative;
  margin-bottom: 34px; 
  overflow: hidden;
  border-radius: 9px;
}

.gallery-content {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  transition: all 0.43s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-icon {
  font-size: 42px;
  font-weight: 720;
  color: var(--snow-canvas);
  opacity: 0;
  transition: all 0.43s ease;
}

.image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(57, 0, 153, 0);
  transition: all 0.43s ease;
}

.individual-gallery:hover {
  cursor: pointer; 
}

.individual-gallery:hover .image-overlay {
  background: rgba(57, 0, 153, 0.87); 
}

.individual-gallery:hover .gallery-content {
  top: 50%; 
}

.individual-gallery:hover .gallery-icon {
  opacity: 1; 
}

.primary-title {
  text-align: center;
  margin-bottom: 87px; 
}

.primary-title h2 {
  font-size: 78px;
  color: #3fd0ff;
  opacity: 0.12;
  margin: 0;
  line-height: 62px; 
  font-family: "Playfair Display", serif;
}

.primary-title h1 {
  color: var(--charcoal-text);
  margin-top: -43px; 
  font-size: 54px;
  font-family: "Playfair Display", serif;
  font-weight: 720;
}

.primary-title p {
  font-size: 15px;
  line-height: 1.67;
  color: var(--neutral-boundary);
  margin-bottom: 0px;
  max-width: 590px;
  margin: auto; 
}

.workspace-gap {
  padding: 130px 0; 
}

.resource-insights {
  padding: 110px 0;
  background: #fafbfc;
}

.insight-article {
  background: var(--snow-canvas);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 7px 23px rgba(0,0,0,0.09);
  transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 34px;
}

.insight-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.14);
}

.article-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.insight-article:hover .article-visual img {
  transform: scale(1.08);
}

.article-details {
  padding: 28px 26px 32px;
}

.article-metadata {
  margin-bottom: 14px;
}

.reading-duration {
  background: var(--morning-mist);
  color: var(--ocean-deep);
  padding: 5px 12px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 520;
  display: inline-block;
}

.article-headline {
  color: var(--charcoal-text);
  font-size: 24px;
  font-weight: 680;
  line-height: 1.38;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.article-summary {
  color: var(--neutral-boundary);
  line-height: 1.72;
  margin-bottom: 23px;
  font-size: 15px;
}

.article-access-button {
  background: var(--forest-whisper);
  color: var(--snow-canvas);
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 560;
  font-size: 14px;
  display: inline-block;
  transition: all 0.31s ease;
}

.article-access-button:hover {
  background: var(--forest-shadow);
  transform: translateY(-2px);
}

.blog-content-area {
  padding: 67px 0;
  background: var(--snow-canvas);
}

.blog-header-section {
  margin-bottom: 43px;
  text-align: center;
}

.blog-metadata {
  margin-bottom: 23px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.publication-date {
  background: var(--morning-mist);
  color: var(--midnight-purple);
  padding: 5px 12px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 520;
  display: inline-block;
}

.blog-main-title {
  color: var(--charcoal-text);
  font-size: 42px;
  font-weight: 720;
  line-height: 1.25;
  margin-bottom: 23px;
  font-family: "Playfair Display", serif;
}

.blog-lead-text {
  color: var(--neutral-boundary);
  font-size: 19px;
  line-height: 1.68;
  font-weight: 350;
  max-width: 620px;
  margin: 0 auto;
}

.blog-featured-visual {
  margin-bottom: 47px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 29px rgba(0,0,0,0.11);
}

.blog-text-content {
  line-height: 1.78;
  color: var(--charcoal-text);
  font-size: 17px;
  margin-bottom: 47px;
}

.blog-text-content h2 {
  color: var(--charcoal-text);
  font-size: 34px;
  font-weight: 680;
  margin-top: 41px;
  margin-bottom: 21px;
  font-family: "Playfair Display", serif;
}

.blog-text-content h3 {
  color: var(--charcoal-text);
  font-size: 26px;
  font-weight: 620;
  margin-top: 34px;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.blog-text-content p {
  margin-bottom: 21px;
  color: #444444;
}

.blog-navigation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 34px;
  border-top: 2px solid var(--morning-mist);
  gap: 17px;
  flex-wrap: wrap;
}

.return-home-button,
.next-article-button,
.previous-article-button {
  background: var(--ocean-deep);
  color: var(--snow-canvas);
  padding: 12px 24px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 580;
  font-size: 15px;
  display: inline-block;
  transition: all 0.32s ease;
}

.return-home-button:hover,
.next-article-button:hover,
.previous-article-button:hover {
  background: var(--midnight-purple);
  transform: translateY(-2px);
}

.contact-hero-area {
  padding: 89px 0 67px;
  background: linear-gradient(135deg, var(--morning-mist) 0%, #f1f5f9 100%);
}

.contact-main-title {
  color: var(--charcoal-text);
  font-size: 48px;
  font-weight: 720;
  margin-bottom: 23px;
  font-family: "Playfair Display", serif;
}

.contact-lead-description {
  color: var(--neutral-boundary);
  font-size: 19px;
  line-height: 1.64;
  max-width: 580px;
  margin: 0 auto;
}

.contact-form-area {
  padding: 78px 0;
  background: var(--snow-canvas);
}

.contact-form-container {
  background: var(--snow-canvas);
  border-radius: 13px;
  padding: 47px 43px;
  box-shadow: 0 11px 43px rgba(0,0,0,0.08);
  border: 1px solid rgba(57, 0, 153, 0.06);
}

.form-header-section {
  text-align: center;
  margin-bottom: 41px;
}

.form-header-section h2 {
  color: var(--charcoal-text);
  font-size: 32px;
  font-weight: 670;
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}

.form-header-section p {
  color: var(--neutral-boundary);
  font-size: 16px;
  line-height: 1.56;
}

.form-input-row {
  margin-bottom: 27px;
}

.input-field-wrapper {
  position: relative;
}

.input-label {
  display: block;
  color: var(--charcoal-text);
  font-weight: 580;
  font-size: 15px;
  margin-bottom: 9px;
  font-family: "Source Sans Pro", sans-serif;
}

.form-input-field,
.form-textarea-field {
  width: 100%;
  padding: 16px 19px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  background: var(--snow-canvas);
  transition: all 0.34s ease;
  box-sizing: border-box;
}

.form-input-field:focus,
.form-textarea-field:focus {
  outline: none;
  border-color: var(--ocean-deep);
  box-shadow: 0 0 0 3px rgba(57, 0, 153, 0.1);
}

.form-textarea-field {
  resize: vertical;
  min-height: 120px;
  line-height: 1.62;
}

.form-submit-area {
  text-align: center;
  margin-top: 34px;
}

.form-submit-button {
  background: var(--ocean-deep);
  color: var(--snow-canvas);
  padding: 17px 47px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 620;
  font-family: "Source Sans Pro", sans-serif;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.form-submit-button:hover {
  background: var(--midnight-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(57, 0, 153, 0.3);
}

.contact-information-area {
  padding: 67px 0;
  background: #fafbfc;
}

.contact-details-block {
  padding: 0 23px;
}

.contact-details-block h3 {
  color: var(--charcoal-text);
  font-size: 24px;
  font-weight: 650;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.contact-address,
.contact-note {
  color: var(--neutral-boundary);
  line-height: 1.68;
  margin-bottom: 16px;
}

.contact-phone {
  margin-bottom: 18px;
}

.contact-phone a {
  color: var(--ocean-deep);
  text-decoration: none;
  font-weight: 560;
}

.contact-phone a:hover {
  color: var(--midnight-purple);
  text-decoration: underline;
}

.trust-support-area {
  padding: 4.8em 0;
  background: var(--morning-mist);
}

.thank-you-hero-area {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--morning-mist) 0%, #f1f5f9 100%);
  text-align: center;
}

.success-message-container {
  max-width: 620px;
  margin: 0 auto;
}

.success-icon-wrapper {
  margin-bottom: 34px;
}

.success-checkmark {
  display: inline-block;
  width: 89px;
  height: 89px;
  background: var(--forest-whisper);
  border-radius: 50%;
  color: var(--snow-canvas);
  font-size: 43px;
  line-height: 89px;
  font-weight: bold;
  animation: success-bounce 0.6s ease-out;
}

@keyframes success-bounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-main-title {
  color: var(--charcoal-text);
  font-size: 44px;
  font-weight: 720;
  margin-bottom: 23px;
  font-family: "Playfair Display", serif;
}

.thank-you-description {
  color: var(--neutral-boundary);
  font-size: 18px;
  line-height: 1.67;
  margin-bottom: 0;
}

.next-steps-area {
  padding: 89px 0;
  background: var(--snow-canvas);
}

.steps-information-grid {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.steps-information-grid .col-large-4 {
  flex: 1;
  min-width: 280px;
}

.step-info-block {
  text-align: center;
  padding: 23px;
}

.step-info-block h3 {
  color: var(--charcoal-text);
  font-size: 22px;
  font-weight: 650;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.step-info-block p {
  color: var(--neutral-boundary);
  line-height: 1.68;
  font-size: 15px;
}

.immediate-resources-area {
  padding: 67px 0;
  background: #fafbfc;
}

.resources-intro {
  color: var(--neutral-boundary);
  font-size: 17px;
  margin-bottom: 41px;
}

.quick-links-container {
  display: flex;
  gap: 23px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-link-item {
  background: var(--snow-canvas);
  padding: 23px 27px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 5px 17px rgba(0,0,0,0.07);
  transition: all 0.32s ease;
  max-width: 280px;
  text-align: left;
}

.quick-link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 29px rgba(0,0,0,0.12);
}

.quick-link-item h4 {
  color: var(--charcoal-text);
  font-size: 18px;
  font-weight: 620;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: "Playfair Display", serif;
}

.link-duration {
  color: var(--ocean-deep);
  font-size: 13px;
  font-weight: 520;
}

.return-navigation-area {
  padding: 56px 0;
  background: var(--snow-canvas);
}

.navigation-options {
  display: flex;
  gap: 19px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-return-button,
.secondary-return-button {
  padding: 14px 29px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 580;
  font-size: 16px;
  display: inline-block;
  transition: all 0.32s ease;
}

.primary-return-button {
  background: var(--ocean-deep);
  color: var(--snow-canvas);
}

.primary-return-button:hover {
  background: var(--midnight-purple);
  transform: translateY(-2px);
}

.secondary-return-button {
  background: transparent;
  color: var(--ocean-deep);
  border: 2px solid var(--ocean-deep);
}

.secondary-return-button:hover {
  background: var(--ocean-deep);
  color: var(--snow-canvas);
  transform: translateY(-2px);
}

.trust-support-area h2 {
  color: var(--charcoal-text);
  font-family: "Playfair Display", serif;
  font-weight: 650;
  font-size: 38px;
  margin-bottom: 23px;
}

.trust-support-area p {
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 18px;
  color: var(--neutral-boundary);
}

.trust-support-area a {
  color: var(--ocean-deep);
  text-decoration: none;
  font-weight: 520;
}

.trust-support-area a:hover {
  color: var(--midnight-purple);
  text-decoration: underline;
}

.site-footer {
  padding: 4.7em 0;
}

.background-white {
  background: var(--snow-canvas);
}

.footer-brand-area {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 780;
}

.footer-brand-area a {
  color: var(--ocean-deep);
  text-decoration: none;
  font-size: 19px;
}

.unstyled-list {
  padding-left: 0;
  list-style: none;
}

.link-collection li {
  margin-bottom: 12px;
}

.link-collection a {
  color: rgba(0, 0, 0, 0.58);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.29s ease;
}

.link-collection a:hover {
  color: var(--charcoal-text);
}

.workspace-area {
  padding: 2.9em 0;
}

.justify-center {
  justify-content: center;
}

.center-margin {
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-4 { margin-bottom: 1.5rem; }
.margin-bottom-5 { margin-bottom: 3rem; }
.margin-bottom-90 { margin-bottom: 90px; }
.margin-top-5 { margin-top: 3rem; }
.margin-large-bottom-0 { margin-bottom: 0; }

@keyframes scroll-motion {
  0% {
    margin-top: 4px;
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    margin-top: 24px;
    opacity: 0;
  }
}

@media screen and (max-width: 890px) {
    .menu-controller-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 4;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--snow-canvas);
        transition: all 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .navigation-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .navigation-link {
        display: inline-block;
        padding: 12px 23px;
        font-size: 19px;
        color: var(--charcoal-text);
    }

    .menu-controller:checked ~ .navigation-wrapper {
        left: 0;
    }

    .menu-controller:checked ~ .menu-controller-label .menu-icon {
        background: transparent;
    }

    .menu-controller:checked ~ .menu-controller-label .menu-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-controller:checked ~ .menu-controller-label .menu-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .showcase-banner h1 {
        font-size: 2.4rem;
    }
    
    .description-text {
        font-size: 1.18rem;
    }

    .story-content {
        max-width: 100%;
        margin-bottom: 43px;
    }
    
    .story-visual:before {
        display: none;
    }

    .story-content h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .area-heading h2 {
        font-size: 34px;
    }

    .individual-service-area {
        margin-bottom: 57px;
    }

    .program-gallery {
        padding: 67px 0 43px; 
    }
    
    .primary-title {
        margin-bottom: 34px; 
    }
    
    .primary-title h2 {
        font-size: 43px; 
    }

    .primary-title h1 {
        font-size: 38px;
    }

    .area-title-accent {
        font-size: 32px;
    }

    .col-medium-3,
    .col-medium-4,
    .col-medium-6,
    .col-medium-7,
    .col-medium-8,
    .col-medium-10,
    .col-large-3,
    .col-large-4,
    .col-large-5,
    .col-large-6,
    .col-large-8,
    .col-large-12 {
        width: 100%;
        margin-bottom: 23px;
    }
}

@media screen and (max-width: 640px) {
    .content-wrapper {
        padding: 0 17px;
    }

    .showcase-banner {
        min-height: 520px;
    }

    .showcase-banner h1 {
        font-size: 1.9rem;
        line-height: 1.34;
    }

    .description-text {
        font-size: 1.02rem;
    }

    .story-content h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 23px;
    }

    .primary-title h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .primary-title h1 {
        font-size: 26px;
        margin-top: -28px;
    }

    .area-title-accent {
        font-size: 26px;
    }

    .leading-text {
        font-size: 1.12rem;
    }
}

@media screen and (min-width: 891px) {
    .navigation-wrapper {
        display: flex;
    }
}

@media screen and (max-width: 890px) {
    .resource-insights {
        padding: 67px 0;
    }

    .article-headline {
        font-size: 21px;
    }

    .blog-main-title {
        font-size: 32px;
    }

    .blog-lead-text {
        font-size: 17px;
    }

    .blog-text-content h2 {
        font-size: 28px;
    }

    .blog-text-content h3 {
        font-size: 22px;
    }

    .blog-navigation-section {
        justify-content: center;
        text-align: center;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .contact-form-container {
        padding: 34px 23px;
    }

    .form-header-section h2 {
        font-size: 28px;
    }

    .thank-you-main-title {
        font-size: 32px;
    }

    .steps-information-grid {
        flex-direction: column;
        gap: 23px;
    }

    .quick-links-container {
        flex-direction: column;
        align-items: center;
    }

    .navigation-options {
        flex-direction: column;
        align-items: center;
    }
}