@font-face {
  font-family: "Norwester";
  src: url("../fonts/Norwester-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --body-font: "Oswald", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ui-font: "Oswald", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --title-font: "Norwester", "Anton", Arial, sans-serif;
}

/* Global Colors*/
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2b180d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b2f45; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #436d50; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* ===========================
   Global Buttons
   =========================== */
.btn-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--heading-color);
  background: transparent;
  color: var(--heading-color);
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
}

.btn-plain.invert {
  border: 1px solid var(--contrast-color);
  color: var(--contrast-color);
}
.btn-plain.invert {
  border: 1px solid var(--contrast-color); /* white outline */
  color: var(--contrast-color); /* white text */
}
.btn-plain.invert:hover {
  border-color: var(--accent-color); /* outline switches to green */
  color: var(--accent-color); /* text switches to green */
  background: transparent; /* keep background clear */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(
    255,
    255,
    255,
    0.6
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #436d50; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6fcfe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #17283b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* ---------- Hire Ground: Global Typography ---------- */

/* Brand tokens (safe: doesn't break existing vars) */
:root {
  --brand-navy: #3e517a;
  --body-ink: #363535;
}

/* Base text rhythm */
html {
  hanging-punctuation: first last;
} /* optional nicety */
body {
  font-family: var(--default-font);
  color: var(--default-color);
  line-height: 1.6;
  text-wrap: pretty;
}

p {
  margin: 0 0 1rem;
  color: var(--default-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: 0;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 800;
  letter-spacing: 0.02em;
}
h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
}
h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
}
h4 {
  font-size: 20px;
  font-weight: 700;
}
h5 {
  font-size: 18px;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 32px;
  padding: 0;
}

.section-head h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
  font-family: var(--default-font);
}

:is(.section-head, .welcome-title) h2 {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}
:is(.section-head, .welcome-title) p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);

  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
  font-family: var(--default-font);
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.1rem;
  }
}
/* Helpful utilities  */
.prose {
  max-width: 70ch;
  margin-inline: auto;
}
.prose--wide {
  max-width: 90ch;
  margin-inline: auto;
}
.lead {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--body-ink);
}
.muted {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}
.kicker {
  display: block;
  font: 700 12px var(--nav-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #111111;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px); /*  frosted effect */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.7);
  box-shadow: rgb(0, 0, 0, 1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  @media (max-width: 1199.98px) {
    #header {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      transition: none !important;
    }

    .navmenu {
      transition: none !important;
    }
    .mobile-nav-active .navmenu {
      z-index: 1001;
    }
    .mobile-nav-toggle {
      z-index: 1002;
    }
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* ===== Footer ===== */
footer.footer {
  --accent-color: #436d50;
  --background-color: #1e1e1e;
  --default-color: #e6e6e6;
  --heading-color: #ffffff;
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/* Footer-only dark preset */
footer.footer.dark-background {
  --background-color: #1e1e1e;
  --default-color: #e6e6e6;
  --heading-color: #ffffff;
  --surface-color: #2a2a2a;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 40%
  );
  position: absolute;
  inset: 0;
}

.page-title .container {
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 24px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  font-family: var(--heading-font);
}

.section-title h2:after {
  display: none;
}

.section-title p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: clamp(420px, 46vh, 680px);
  position: relative;
  display: grid;
  place-items: center; /* centers both layers */
  padding: 64px 0 0px;
  background: #f9f4ea; /* banner bg */
  overflow: hidden;
}
.hero-img {
  grid-area: 1 / 1;
  width: min(90vw, 820px); /* responsive cap, no cropping */
  height: auto;
  z-index: 1;
}
.hero .container {
  grid-area: 1 / 1;
  z-index: 2;
  text-align: center;
  max-width: none;
  transform: translateY(50%);
}
.hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 400;
  color: #111;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: block;
  padding: 15px;
  font-family: "Norwester", sans-serif;
}
.hero p {
  margin: 0 auto;
  color: #111111;
  font-size: 20px;
  padding-bottom: 10px;
  display: inline-block;
  width: auto;
}
.hero .d-flex {
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hg-divider {
  height: 6px;
  border: 0;
  background: linear-gradient(90deg, #163e22, #163e22, #163e22);
  background-size: 200% 100%;

  margin: 0;
  opacity: 0.5;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ---------- Mission Page ---------- */

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
  --heading-font: "Montserrat", "Roboto", system-ui, -apple-system, "Segoe UI",
    Arial, sans-serif;
}
.mission-values {
  background-color: #f9f4ea;
}
body {
  font-family: var(--default-font);
}

.mission-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  margin-bottom: 0.25rem;
}
.mission-quote {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.2;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding: 0.25rem 0 0.25rem 14px;
  margin: 0 0 8px 0;
}

/* elevator / callout */
.elevator-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  padding: 18px 18px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* values grid */
.values-grid .value-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 18px 16px;
  height: 100%;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.values-grid .value-card i {
  font-size: 28px;
  color: var(--heading-color);
  opacity: 0.9;
}
.values-grid .value-card h3 {
  margin: 10px 0 6px;
  font-weight: 800;
}
.values-grid .value-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* program cards */
.prog-card {
  background: var(--surface-color);
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 82%);
  padding: 18px 18px 16px;
  border-radius: 12px;
  height: 100%;
}
.prog-head {
  margin-bottom: 0.5rem;
}
.badge-soft {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), #fff 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}
.prog-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0 0 10px;
}
.prog-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
}
.prog-list i {
  color: var(--accent-color);
  line-height: 1.2;
}

.link-arrow {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid
    color-mix(in srgb, var(--accent-color), transparent 40%);
  padding-bottom: 2px;
}
.link-arrow:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* CTA strip */
.mission-cta {
  padding: 16px 18px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), #ffffff 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.mission-intro .col-bubbles {
  position: relative;
  min-height: 340px;
}

.mission-intro .bubble-cluster {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  max-width: 540px;
}

.mission-intro .col-bubbles {
  display: flex;
  align-items: center;
}

.mh-attrib {
  margin-top: 4px !important;
}

.bubble-cluster,
.bubble {
  z-index: 0;
}
.mission-intro .col-text {
  position: relative;
  z-index: 1;
}

.mission-hero {
  background-position: center;
  background-size: cover;
}

.mh-title {
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  margin-bottom: 24px !important;
  color: #3e517a !important;
}

.mh-h2 {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}

.mh-h3 {
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
  color: #3e517a !important;
}

/* Body text + list items */
.mh-body {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
  color: color-mix(in srgb, var(--default-color), transparent 25%) !important;
}

/* Value cards */
.value-card {
  background: white;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  padding: 18px 16px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}
.value-icon {
  font-size: 28px;
  color: var(--heading-color);
  opacity: 0.88;
}

/* Program cards */
.prog-card {
  background: var(--surface-color);
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 14px;
  padding: 18px 18px 14px;
  height: 100%;
}
.prog-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0 0 10px;
}
.prog-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
}
.prog-list i {
  color: var(--accent-color);
  line-height: 1.2;
}

.link-line {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid
    color-mix(in srgb, var(--accent-color), transparent 40%);
  padding-bottom: 2px;
}
.link-line:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* ---------- Bubble Cluster ---------- */
.bubble-cluster {
  position: relative;
  width: 100%;
  min-height: 280px;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  outline: 3px solid #fff; /* clean ring */
}
.bubble-lg {
  width: 180px;
  height: 180px;
  top: 0;
  left: 6%;
}
.bubble-md {
  width: 130px;
  height: 130px;
  top: 110px;
  left: 48%;
}
.bubble-sm {
  width: 92px;
  height: 92px;
  top: 30px;
  left: 72%;
}
.bubble.b2 {
  top: 170px;
  left: 20%;
}
.bubble.b3 {
  top: 210px;
  left: 65%;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .bubble-lg {
    width: 160px;
    height: 160px;
    left: 2%;
  }
  .bubble-md {
    width: 120px;
    height: 120px;
    left: 48%;
  }
  .bubble-sm {
    width: 86px;
    height: 86px;
    left: 70%;
  }
  .bubble.b2 {
    top: 160px;
    left: 16%;
  }
  .bubble.b3 {
    top: 200px;
    left: 62%;
  }
}
@media (max-width: 575.98px) {
  .bubble-cluster {
    min-height: 240px;
  }
  .bubble-lg {
    width: 140px;
    height: 140px;
    left: 0;
  }
  .bubble-md {
    width: 110px;
    height: 110px;
    left: 44%;
  }
  .bubble-sm {
    width: 80px;
    height: 80px;
    left: 68%;
  }
  .bubble.b2 {
    top: 150px;
    left: 10%;
  }
  .bubble.b3 {
    top: 190px;
    left: 56%;
  }
}
/* ================================
   BOOKING 
   ================================ */

/* 1) HERO */
.booking-page .bk-hero {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}
.bk-intro .mh-title {
  text-align: left !important;
}
.booking-page .bk-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}

/* photo frame */
.booking-page .bk-photo {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  padding: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}
.booking-page .bk-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* hero CTAs */
.booking-page .bk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}
.booking-page .bk-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.booking-page .bk-btn:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* radio card options */

.booking-page .bk-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-page .bk-option label {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  padding: 14px 14px;
  border: 1px solid var(--bk-border);
  background: var(--bk-surface);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.booking-page .bk-option label i {
  font-size: 22px;
  color: var(--bk-accent);
}
.booking-page .bk-option label strong {
  display: block;
  color: var(--bk-navy);
}
.booking-page .bk-option label span {
  display: block;
  font-size: 0.95rem;
  color: rgba(15, 23, 33, 0.66);
}
.booking-page .bk-option input:checked + label {
  border-color: color-mix(in srgb, var(--bk-accent), #000 15%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* inline secondary action under options */
.booking-page .bk-inline-actions {
  margin-top: 10px;
}

/* 3) REQUEST CARD */
.booking-page .bk-card {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  padding: 20px;
}
.mh-p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3e517a;
}
.booking-page .bk-card .body-text {
  color: rgba(15, 23, 33, 0.75);
}

/* form details */
.booking-page .bk-form .form-label {
  font-weight: 600;
  color: var(--bk-navy);
}
.booking-page .bk-form .form-control,
.booking-page .bk-form .form-select {
  border: 1px solid var(--bk-border);
  border-radius: 8px;
}

/* 4) SLIM CTA */
.booking-page .bk-cta {
  padding: 44px 0 64px;
  background: color-mix(in srgb, var(--bk-accent), #ffffff 94%);
}

/* 5) TYPOGRAPHY COLORS (Mission alignment) */
.booking-page .bk-hero .mh-tiny {
  color: color-mix(in srgb, var(--bk-navy), transparent 40%);
}
.booking-page .bk-hero .mh-title,
.booking-page .bk-band .mh-title,
.booking-page .bk-cta .mh-title {
  color: var(--bk-navy);
}
.booking-page .bk-hero .body-text,
.booking-page .bk-band .body-text {
  color: rgba(15, 23, 33, 0.8);
}

@media (max-width: 991.98px) {
  .booking-page .bk-hero {
    padding-top: 72px;
  }
}
/* === Booking: intro split === */
.booking-page .bk-intro {
  padding: 72px 0 40px;
  background: #fff;
}
.booking-page .bk-intro .bk-lead {
  max-width: 720px;
}

.booking-page .bk-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.booking-page .bk-btn,
.booking-page .bk-btn-submit {
  all: unset;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.booking-page .bk-btn:hover,
.booking-page .bk-btn-submit:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}
.booking-page .bk-card h3 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}

/* ——— Welcome ——— */
.welcome-section {
  background-color: #f9f4ea;
  padding: 60px 20px;
  border-radius: 8px;
}

.welcome .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3e517a;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 1.25rem;
}
.welcome .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

/* Title + intro paragraph */
.welcome-title {
  text-align: center;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .welcome-title h2 {
    font-size: 2.1rem;
  }
}

/* Content column */
.welcome-content h2 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.welcome-content .lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.welcome-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Stats row */
.welcome-stats {
  display: flex;
  gap: 32px;
  margin: 44px 0;
  flex-wrap: wrap;
}
.welcome-stats .stat-item {
  min-width: 160px;
}
.welcome-stats .stat-number {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: #163e22;
  font-family: var(--heading-font);
}
.welcome-stats .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 6px;
}

/* CTA button */
.welcome-cta .welcome-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.welcome-cta .welcome-btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Image and floating card  */
.welcome-image {
  position: relative;
}
.welcome-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.welcome-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--surface-color);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
  max-width: 280px;
}
.welcome-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.welcome-card-content .icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-card-content .icon i {
  font-size: 22px;
  color: #daa520;
}
.welcome-card-content .text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.welcome-card-content .text p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

/* Mobile niceties*/
@media (max-width: 992px) {
  .welcome .row {
    text-align: center;
  }
  .welcome-stats {
    justify-content: center;
  }
  .welcome-floating-card {
    position: static;
    margin-top: 20px;
    max-width: none;
  }
}
.welcome-highlight {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 6px 12px;
  border-left: 2px solid var(--accent-color);
}

.welcome-highlight p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Icon colors */
.welcome-highlight .phone-icon {
  color: #3e517a; /* deep navy/indigo to match your site accent */
}

.welcome-highlight .location-icon {
  color: #d75651; /* soft sage green */
}

.welcome-highlight .star-icon {
  color: #f5c518; /* warm golden yellow */
}

/* spacing */
.welcome-highlight i {
  margin-right: 4px;
}

/* =========================================
   About Page
   ========================================= */

/* --- Header band --- */

.about-header {
  padding: 60px 0 30px; /* top 60, sides 0, bottom 30 */
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}
.about-page .about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.about-header .about-lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.about-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}
.about-header .about-title {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.about-header p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.about-header .about-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}
.about-page .main h2 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}

.about-page .section-title h2 {
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  margin-bottom: 24px !important;
  color: #3e517a !important;
}
.about-page .section .col-md-4 p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.about-page .about .content ul {
  margin-top: 10px;
  padding-left: 0; /* remove browser default indent */
  list-style: none; /* hide bullets */
}

.about-page .about .content ul li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about-page .about .content ul i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 4px; /* aligns icon with first line of text */
}
/* --- Intro section (image + content) --- */

.about-page .about .content ul {
  margin-top: 6px;
}
.about-page .about .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}
.about-page .about .content ul i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* Soft image utility */
.img-soft {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* --- Mission + Vision section --- */
.mission-vision {
  --background-color: #f9f4ea;
  --surface-color: #ffffff;
  padding: 60px 0;
}

/* --- Values grid --- */
about-page .section-title {
  text-align: center !important;
}

about-page .section-title h2,
.about-page .section-title p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.values .value-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 22px 18px;
  height: 100%;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  text-align: center;
}
.values .value-item i {
  font-size: 2rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 8px;
}
.values .value-item h4 {
  margin: 6px 0 8px;
  color: var(--heading-color);
}
.values .value-item p {
  margin: 0;
}
.values .value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* --- Section titles inside About page --- */
.about-page .section-title {
  margin-bottom: 32px;
}
.about-page .section-title h2 {
  font-weight: 800;
  letter-spacing: 0.01em;
}
.about-page .section-title p {
  margin: 0;
}

/* --- Responsive tweaks --- */
@media (max-width: 991px) {
  .about-page .about .content h2,
  .about-page .about .content h3 {
    margin-top: 6px;
  }
}
/* ================= Services ================ */
:root {
  --header-h: 88px;
}
@media (max-width: 1199.98px) {
  :root {
    --header-h: 76px;
  } /* mobile/tablet */
}

body.no-hero main {
  padding-top: var(--header-h);
}

@supports (selector(:has(*))) {
  header.header.fixed-top + main:not(:has(.page-title)) {
    padding-top: var(--header-h);
  }
}
body.no-hero main {
  padding-top: var(--header-h);
}

@supports (selector(:has(*))) {
  header.header.fixed-top + main:not(:has(.page-title)) {
    padding-top: var(--header-h);
  }
}

/* Titles */
.service-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 300 !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

/* Tiny label */
.service-tiny {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Paragraphs */
.services-page p,
.body-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Quick chips */
.services-nav .container {
  text-align: center;
}

.chip-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: #3e517a;
}
.chip:hover {
  transform: translateY(-1px);
  border-color: var(--accent-color);
}

/* Service Stripes */

.service-stripes .stripe {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: min(3vw, 28px);
  align-items: center;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color), #fff 97%),
    #fff 70%
  );
}
.service-stripes .stripe.flipped {
  grid-template-columns: 1.2fr 1.1fr;
}
.service-stripes .stripe.flipped .stripe-media {
  order: 2;
}
.service-stripes .stripe.flipped .stripe-body {
  order: 1;
}

.stripe-media {
  aspect-ratio: 19/10;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.stripe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stripe-body .service-title {
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 4px 0 8px;
}
.stripe-body .body-text {
  margin: 4px 0 12px;
}
.stripe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.underline-hover {
  position: relative;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.underline-hover:hover::after {
  transform: scaleX(1);
}

/* Circle Portrait Testimonials */
.circle-quotes {
  background-color: #f8f4ea;
}
.circle-quotes .t-header {
  text-align: center;
  margin-bottom: 28px;
}

.cq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.cq-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 28px 20px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.cq-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -60px; /* circle overlaps top edge */
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #f9f9f9;
}

.cq-card blockquote {
  margin: 16px 0 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.cq-card figcaption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
}

@media (max-width: 768px) {
  .cq-card img {
    width: 72px;
    height: 72px;
    margin-top: -50px;
  }
}

/* ===========================
   Workshops Page 
   =========================== */
.mh-tiny {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
}
.mh-subtitle {
  text-align: center !important;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.mh-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  text-align: center !important;
}
.workshops-page .session-title {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Workshop cards */
.workshop-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  padding: 18px 18px 16px;
  height: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* Polaroid-style square image */
.polaroid-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  margin: 0 auto 18px;
  position: relative;
  padding: 6px;
}

.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid-img::after {
  content: "";
  display: block;
  height: 12px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  border-radius: 0 0 8px 8px;
}

/* Card body + list */
.card-body-wrap {
  padding: 4px 10px 8px;
}
.workshop-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: var(--bk-navy);
}
.workshop-card li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.975rem;
}
.workshop-card li i {
  color: #3e517a;
  font-size: 1.05rem;
  line-height: 1;
  margin-top: 2px;
}

.workshops-page .section .text-center .btn-plain {
  margin: 8px 6px 0;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .circle-img {
    width: 132px;
    height: 132px;
  }
  .btn-plain {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* ============================
   Leadership Training
   ============================ */

body.leader-page {
  --header-height: 40px !important;
  padding-top: var(--header-height);
}

/* ---------- Page Title  ---------- */
.leader-hero .mh-title {
  display: inline-block;
  font-family: var(--heading-font) !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: var(--brand-navy) !important;
}
.leader-hero .mh-tiny {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.body-text {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
  color: color-mix(in srgb, var(--default-color), transparent 25%) !important;
}

/* ---------- Hero (angled split with blob image) ---------- */
.leader-page .leader-hero {
  position: relative;
  overflow: clip;
  background: #fff;
  padding: 100px 0 80px;
  isolation: isolate;
}
.leader-page .leader-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 81, 122, 0.1), transparent 55%);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  z-index: 0;
}
.leader-page .leader-hero .hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leader-page .leader-hero .hero-blob {
  width: min(520px, 90%);
  aspect-ratio: 1/1;
  border-radius: 28% 72% 60% 40% / 42% 36% 64% 58%;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border: 10px solid color-mix(in srgb, var(--accent-color), white 82%);
}
.leader-page .leader-hero .hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Metrics ribbon ---------- */
.leader-page .leader-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), #ffffff 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}
.leader-page .leader-metrics .metric {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.leader-page .leader-metrics .value {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #3e517a;
}
.leader-page .leader-metrics .label {
  color: #6b7280;
  white-space: nowrap;
}

/* ----------(Sessions Mosaic) ---------- */
.leader-page .sessions.steps-band {
  background: #f9f4ea;
}

.leader-page .sessions {
  padding: 60px 0;
}

.leader-page .sessions .session-col {
  display: flex; /* lets the cards stretch evenly */
}

.leader-page .sessions .session-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-page .sessions .session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
}

.leader-page .sessions .session-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  background: #3e517a;
  color: white;
  margin-bottom: 10px;
}

.leader-page .sessions .session-card h3 {
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
  color: #3e517a !important;
}

.leader-page .sessions .session-card p {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.leader-page .sessions .session-card ul {
  margin: 10px 0 0;
  padding-left: 1.1rem;
}

.leader-page .sessions .session-card li {
  margin-bottom: 6px;
}
/* ===========================
   CTA
   =========================== */
.leader-page .leader-cta {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.leader-page .btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}

.leader-page .btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}
/* ============================
   Hire Ground — Slim Cards 
   ============================ */
.hg-slim-wrap {
  /* Brand accents for this section */
  --navy: #3e517a;
  --sage: #436d50;
  background-color: #f8f4ea2d;
}

/* Let each grid column stretch its child card */
.hg-slim-wrap .row > [class*="col-"] {
  display: flex;
}
.hg-slim-wrap h2 {
  font-size: 2.5rem;
  font-weight: 380;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #3e517a;
  margin-bottom: 1rem;
}
.hg-slim-wrap p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgb(54, 53, 53);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
/* Card shell */
.hg-slim-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Subtle lift + glow on hover */
.hg-slim-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--navy), transparent 70%);
  box-shadow: 0 16px 40px #3e517a43,
    0 0 0 2px color-mix(in srgb, var(--navy), transparent 82%),
    0 0 28px 6px color-mix(in srgb, var(--navy), transparent 88%);
}

/* Media area —  cards */
.hg-slim-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hg-slim-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hg-slim-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 16px 18px 20px;
  flex: 1 1 auto;
}

.hg-slim-tag {
  display: inline-block;
  color: #15100af6;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding-bottom: 2px; /* space for underline */
  border-bottom: 2px solid #43656d6c; /* thin line */
  background: none;
  border-radius: 0;
  text-transform: uppercase;
}
/* Titles & text spacing */
.hg-slim-title {
  margin: 6px 0 2px;
  font-size: 1.05rem;
}
.hg-slim-text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-top: auto;
}
.btn-services {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.text-center .btn-services:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .hg-slim-body {
    padding: 14px 16px 16px;
  }
  .hg-slim-title {
    font-size: 1rem;
  }
}

.hg-start-sooner .hg-slim-text {
  margin-top: 1px !important;
}

/* ================================
   BOOKING (fresh layout, scoped)
   ================================ */

/* Tokens */
.booking-page {
  --bk-navy: #3e517a; /* headings */
  --bk-ink: #0f1721; /* body text */
  --bk-mute: #374151;
  --bk-accent: var(--accent-color);
  --bk-beige: #f9f4ea;
  --bk-surface: var(--surface-color, #fff);
  --bk-border: rgba(15, 23, 33, 0.14);
}

/* HERO */
.booking-page .bk-hero {
  padding: 88px 0 40px;
  background: radial-gradient(
      1200px 300px at 20% -50%,
      rgba(62, 81, 122, 0.08),
      transparent 60%
    ),
    #fff;
}
.booking-page .bk-lead {
  max-width: 720px;
}

/* photo frame */
.booking-page .bk-photo {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  padding: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}
.booking-page .bk-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* hero CTAs */
.booking-page .bk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}
.booking-page .bk-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.booking-page .bk-btn:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

.booking-page .bk-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--bk-navy);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2px;
}
.booking-page .bk-link:hover {
  color: var(--bk-accent);
  border-bottom-color: var(--bk-accent);
}

/* 2) BEIGE BAND */
.booking-page .bk-band {
  padding: 56px 0;
}
.booking-page .bk-band--beige {
  background: var(--bk-beige);
}

/* radio card options */
.booking-page .bk-option {
  margin-bottom: 10px;
}
.booking-page .bk-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-page .bk-option label {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  padding: 14px 14px;
  border: 1px solid var(--bk-border);
  background: var(--bk-surface);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.booking-page .bk-option label i {
  font-size: 22px;
  color: var(--bk-accent);
}
.booking-page .bk-option label strong {
  display: block;
  color: var(--bk-navy);
}
.booking-page .bk-option label span {
  display: block;
  font-size: 0.95rem;
  color: rgba(15, 23, 33, 0.66);
}
.booking-page .bk-option input:checked + label {
  border-color: color-mix(in srgb, var(--bk-accent), #000 15%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* inline secondary action under options */
.booking-page .bk-inline-actions {
  margin-top: 10px;
}

/* 3) REQUEST CARD */
.booking-page .bk-card {
  background: var(--bk-surface);
  border: 1px solid var(--bk-border);
  padding: 20px;
}
.booking-page .bk-card h3 {
  color: var(--bk-navy);
  margin: 0;
}
.booking-page .bk-card .body-text {
  color: rgba(15, 23, 33, 0.75);
}

/* form details */
.booking-page .bk-form .form-label {
  font-weight: 600;
  color: var(--bk-navy);
}
.booking-page .bk-form .form-control,
.booking-page .bk-form .form-select {
  border: 1px solid var(--bk-border);
  border-radius: 8px;
}

/* 4) SLIM CTA */
.booking-page .bk-cta {
  padding: 44px 0 64px;
  background: color-mix(in srgb, var(--bk-accent), #ffffff 94%);
}

/* 5) TYPOGRAPHY COLORS (Mission alignment) */
.booking-page .bk-hero .mh-tiny {
  color: color-mix(in srgb, var(--bk-navy), transparent 40%);
}
.booking-page .bk-hero .mh-title,
.booking-page .bk-band .mh-title,
.booking-page .bk-cta .mh-title {
  color: var(--bk-navy);
}
.booking-page .bk-hero .body-text,
.booking-page .bk-band .body-text {
  color: rgba(15, 23, 33, 0.8);
}

@media (max-width: 991.98px) {
  .booking-page .bk-hero {
    padding-top: 72px;
  }
}
booking-page .bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid var(--bk-accent);
  background: var(--bk-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.booking-page .bk-btn:hover {
  background: transparent;
  color: var(--bk-accent);
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 0;
  font-weight: 400;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Service Cards Section
--------------------------------------------------------------*/
.service-cards .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.service-cards .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.service-cards .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.service-cards .card-item .card-body {
  padding: 30px;
}

.service-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-cards .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline li {
  list-style: none;
}
.team-timeline {
  background: #fff; /* white */
  border-top: 2px solid #92918e;
}
.t-squiggle {
  color: color-mix(in srgb, #3e517a, transparent 20%);
}

.t-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-tiny {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.mh-title {
  font-family: var(--heading-font) !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: var(--brand-navy) !important;
}
.team-hero::before {
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 28%
  );
}
.mission-intro .mh-kicker {
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.mission-intro .mh-attrib {
  color: var(--accent-color);
}
/* Team Card Revamp */
.section-intro p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.t-meta h3 {
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #000;
}

.t-meta .role {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.t-meta p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.team-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.team-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.team-card .card-bg img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.team-card .card-body {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.team-card h4 {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.team-card span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.team-card a {
  font-size: 18px;
  color: var(--accent-color);
}
.team-card a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* ===== FAQs Page ===== */

:root {
  --header-h: 88px; /* desktop */
}
@media (max-width: 1199.98px) {
  :root {
    --header-h: 76px;
  } /* mobile/tablet */
}

body.no-hero main {
  padding-top: var(--header-h);
}

/* Optional: automatic on modern browsers */
@supports (selector(:has(*))) {
  header.header.fixed-top + main:not(:has(.page-title)) {
    padding-top: var(--header-h);
  }
}
body.no-hero main {
  padding-top: var(--header-h);
}

@supports (selector(:has(*))) {
  header.header.fixed-top + main:not(:has(.page-title)) {
    padding-top: var(--header-h);
  }
}
.faqs {
  padding: 60px 0;
}

.faqs-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.faqs-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.faqs-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}
.faqs h2 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.faqs p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Image style */
.faqs-photo {
  border-radius: 18px;
  box-shadow: 0 30px 60px -25px color-mix(in srgb, var(--default-color), transparent
        85%);
  display: block;
}

/* FAQ Q&A tiles */
.faqs .faqs-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--default-color), transparent
        85%);
}

.faqs .faqs-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--brand-navy);
  background: white;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #3e517a, transparent 0%);
}

.faqs .faqs-item h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.faqs .faqs-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--body-ink);
}

@media (max-width: 575.98px) {
  .faqs {
    padding: 44px 0;
  }
  .faqs .faqs-item {
    padding: 16px;
  }
}
.faqs .btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.faqs .btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* ===========================
   CONTACT PAGE 
   =========================== */

#contact-hero::before,
#contact-hero::after {
  content: none !important;
  display: none !important;
}

/* Two-column layout */
.hg-contact2 .hg-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .hg-contact2 .hg-row {
    grid-template-columns: 1fr;
  }
}

/* Small photo */
.hg-contact2 .hg-photo {
  width: 100%;
  max-width: 360px;
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.hg-contact2 .hg-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hg-contact2 .hg-intro-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.25;
  color: var(--brand-navy);
  margin: 0 0 6px;
  font-family: var(--heading-font);
}
.hg-contact2 .hg-intro-text {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}

/* Info list */
.hg-contact2 .hg-info {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.hg-contact2 .hg-info-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
}
.hg-contact2 .hg-info-item i {
  font-size: 1.25rem;
  margin-top: 2px;
}
.hg-contact2 .hg-info-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}
.hg-contact2 .hg-info-value {
  display: block;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}

/* Form card */
.hg-contact2 .hg-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 24px;
}
.hg-contact2 .hg-card-title {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 12px;
  font-family: var(--heading-font);
}

/* Form fields */
.hg-contact2 .hg-label,
.hg-contact2 .hg-input,
.hg-contact2 .hg-textarea {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body-ink);
}
.hg-contact2 .hg-input,
.hg-contact2 .hg-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  padding: 10px 12px;
}

/* =========================================================
   PRICING PAGE
   ======================================================= */
.pricing-page .page-title.pricing-title {
  padding: 110px 0 28px;
}
.pricing-page .page-title.pricing-title:before {
  display: none;
}

.pricing-page .mh-tiny {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
}
.pricing-page .mh-title {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  color: #3e517a;
  margin-bottom: 16px;
}
.mh-sub {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  color: #3e517a;
  margin-bottom: 16px;
}
.body-text {
  font-family: var(--default-font);
  font-size: 1rem;
  line-height: 1.7;
  color: #3e517a;
}
.lead-tight {
  line-height: 1.5;
}
.pricing-media .pricing-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.pricing-scope .section-head {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-scope .section-head h2 {
  font-family: var(--heading-font);
  font-size: 1.9rem;
  font-weight: 600;
  color: #3e517a;
  margin-bottom: 8px;
}
.pricing-scope .section-head p {
  margin: 0 auto;
  color: #3e517a;
  max-width: 720px;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
  background: #fff;
  border: 1px solid rgba(62, 81, 122, 0.18);
  border-radius: 999px;
  padding: 6px;
  width: max-content;
}
.pricing-toggle .toggle-btn {
  border: 0;
  background: transparent;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  padding: 8px 8px;
  border-radius: 999px;
  color: #3e517a;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-toggle .toggle-btn.is-active {
  background: #3e517a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(62, 81, 122, 0.25);
}
.pricing-page section.pricing {
  padding-top: 10px;
}

.plan {
  height: 100%;
  background: #fff;
  justify-content: space-between;
  border: 1px solid rgba(62, 81, 122, 0.14);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.plan-head h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3e517a;
}
.plan-head p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 14px;
}
.ready-sub {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: #3e517a;
}
.plan-head .badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent-color);
  color: white;
  border: 1px solid rgba(62, 81, 122, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-price {
  min-height: 44px;
  display: flex;
  align-items: baseline;
  gap: 6px 8px;
  flex-wrap: wrap;
}
.plan-price .price {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: #3e517a;
}
.plan-price .unit {
  font-size: 0.95rem;
  color: rgba(62, 81, 122, 0.85);
}

.plan-price .price,
.plan-price .unit {
  display: none;
}
.plan-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 4px;
}
.plan-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%) !important;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3e517a;
  font-weight: 700;
}

.plan .btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
  margin-top: auto;
}
.plan .btn-plain:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.plan-foot {
  min-height: 56px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

.deals-hub {
  background: #f9f4ea;
  padding: 80px 0;
  border-top: 1px solid rgba(62, 81, 122, 0.15);
  border-bottom: 1px solid rgba(62, 81, 122, 0.15);
}
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.deal-card {
  background: #fff;
  border: 1px solid rgba(62, 81, 122, 0.14);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Card A — Ready to start*/
.deal-card.mod-start {
  background: white;
  border-color: rgba(62, 81, 122, 0.18);
}
.deal-card.mod-start .btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.deal-card.mod-start .btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* Card B — bundle saver */
.deal-card.mod-bundle .btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.deal-card.mod-bundle .btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 575px) {
  .mh-title {
    font-size: 1.9rem;
  }
  .pricing-toggle {
    width: 100%;
    max-width: 360px;
  }
  .pricing-toggle .toggle-btn {
    flex: 1;
  }
}
/* Side-by-side on desktop */
@media (min-width: 992px) {
  .deals-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================
   MENTORSHIP — Hero, Text, Stacked Images
   ============================================ */

.mentorship-page .page-title.has-hero {
  padding: 140px 0 44px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .mentorship-page .page-title.has-hero {
    padding: 120px 0 36px;
  }
}

.mentorship-page .page-title .mh-tiny {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 6px;
}
.mentorship-page .page-title .mh-title,
.mentorship-page .page-title h1 {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--heading-font);
}

.mentorship-page .page-title .lead,
.mentorship-page .page-title .breadcrumbs {
  display: none !important;
}

.mentorship-page .section-title h2,
.mentorship-page .mint-card h2,
.mentorship-page .mentorship-teaser h3 {
  display: block;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 24px;
  font-family: var(--heading-font);
}

.mentorship-page .section-title p,
.mentorship-page .mint-card p,
.mentorship-page .mentorship-teaser p,
.mentorship-page .mint-card li,
.mentorship-page .mentorship-steps p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 14px;
}

.mentorship-page .short-strong {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.mentorship-page .mint-list {
  padding-left: 0;
  margin: 0 0 10px;
  list-style: none;
}
.mentorship-page .mint-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.mentorship-page .mint-list i {
  color: var(--accent-color);
  line-height: 1.6;
}

.mentorship-page .mentorship-intro {
  padding-top: 24px;
}
.mentorship-page .mentorship-intro .row {
  margin-top: -6px;
}

.mentorship-page .stacked-photos {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.mentorship-page .stacked-photos > a:first-child {
  display: block;
  background: #eee;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.mentorship-page .stacked-photos > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating second photo */
.mentorship-page .stacked-photos .photo-floating {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: 58%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
}
.mentorship-page .stacked-photos .photo-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .mentorship-page .stacked-photos .photo-floating {
    right: -2%;
    bottom: -8%;
    width: 66%;
  }
}

.mentorship-page .polaroid {
  display: inline-block;
  background: #fff;
  padding: 10px 10px 26px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.mentorship-page .polaroid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.mentorship-page .polaroid .caption {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.mentorship-page .btn-mentorship {
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
  background: transparent;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.mentorship-page .btn-mentorship:hover {
  background: var(--brand-navy);
  color: #fff;
}

.mentorship-page .btn-mentorship-alt {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.mentorship-page .btn-mentorship-alt:hover {
  background: var(--accent-color);
  color: #fff;
}

/* =========================
   Partnerships Page 
   ========================= */

/* Hero */
.partner-hero {
  background: var(--beige);
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 30px;
}

.partner-hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed var(--navy, #3e517a);
  border-color: color-mix(in srgb, var(--navy, #3e517a), transparent 65%);
  color: var(--navy, #3e517a);
  background: rgba(255, 255, 255, 0.5);
  background: #fff8;
}
.partner-hero .hero-photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.partner-hero .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .partner-hero .grid {
    grid-template-columns: 1fr;
  }
  .partner-hero .hero-photo {
    aspect-ratio: 4 / 3;
  } /* a bit shorter on mobile */
}
.hero-photo .ph {
  aspect-ratio: 5/4;
  width: 100%;
  background: linear-gradient(135deg, #e5efe7, #cfe0d6);
}
.partners-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: #3e517a;
  margin-bottom: 16px;
}
.ways-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3e517a;
}
.partner-card .body-text {
  font-size: 1rem !important;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%) !important;
}
/* partner cards */

.partner-ways {
  background-color: #f8f4ea;
}
.partnerships-page .partner-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.partnerships-page .partner-card:hover {
  transform: translateY(-4px) rotate(-0.2deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.partnerships-page .partner-card .pc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.partnerships-page .partner-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}
.partnerships-page .partner-card:hover .pc-media img {
  transform: scale(1.06);
}
.partnerships-page .partner-card .pc-body {
  padding: 20px 18px;
}
.partnerships-page .partner-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3e517a;
}
.partnerships-page .mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.partnerships-page .mini-tags span {
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.partnerships-page .subtle-note .btn.btn-plain {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
  margin-top: auto;
}
.partnerships-page .subtle-note .btn.btn-plain:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}
/* =======================
   Athletes & Coaches Page
   ======================= */
.athletes-page .page-title.athletes-hero {
  position: relative;
  padding: 160px 0 40px;
  text-align: center;
  overflow: hidden;
}
.athletes-page .athletes-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25; /* soft overlay */
  mix-blend-mode: multiply;
}
.athletes-page .chip-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.athletes-page .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), #ffffff 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  font-size: 0.9rem;
}

.athletes-page .split-program {
  position: relative;
  background: var(--background-color);
}
.athletes-page .split-program .diagonal-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--accent-color), #ffffff 94%) 60%,
    transparent 100%
  );
  transform: skewY(-3deg);
  z-index: 0;
}
.athletes-page .split-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: 200px auto;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.athletes-page .split-card-media {
  position: relative;
  overflow: hidden;
}
.athletes-page .split-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.athletes-page .split-card-body {
  padding: 22px 22px 24px;
}
.athletes-page .split-card .checklist {
  margin: 12px 0 16px;
  padding-left: 0;
  list-style: none;
}
.athletes-page .split-card .checklist li {
  padding-left: 26px;
  position: relative;
  margin: 6px 0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.athletes-page .split-card .checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  color: var(--accent-color);
  font-weight: 700;
}
.athletes-page .split-card.athletes .mh-title.h3,
.athletes-page .split-card.coaches .mh-title.h3 {
  font-size: 30px !important;
}

/* Playbook Sessions */
.athletes-page .playbook {
  background: #f8f4ea;
}
.athletes-page .session-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
}
.athletes-page .h5 {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #3e517a;
}
.athletes-page .session-card .session-num {
  position: absolute;
  top: -14px;
  left: 16px;
  background: #3e517a;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: white;
}
.athletes-page .session-card .bullet {
  margin: 10px 0 0;
  padding-left: 18px;
}
.athletes-page .session-card .bullet li {
  margin: 6px 0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* CTA */
.athletes-page .athlete-cta {
  background: color-mix(in srgb, var(--accent-color), #ffffff 88%);
}
.athletes-page .leader-cta {
  text-align: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.btn-athletes {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-navy);
  transition: all 0.25s ease;
}
.btn-athletes:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}
@media (max-width: 576px) {
  .athletes-page .split-card {
    grid-template-rows: 180px auto;
  }
}

/* =========================================
   MENTORSHIP PAGE 
   ========================================= */

.mentorship-page .page-title.mentorship-hero-clean {
  background: transparent;
  padding: 120px 0 36px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 88%);
}
@media (max-width: 575.98px) {
  .mentorship-page .page-title.mentorship-hero-clean {
    padding: 100px 0 28px;
  }
}
.mentorship-page .page-title.mentorship-hero-clean .mh-tiny {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  margin-bottom: 6px;
}

.mentorship-page .page-title.mentorship-hero-clean .mh-title {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

/* 2) INTRO CARD (left column) */
.mentorship-page .mentorship-intro .mint-card h2.h1 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.mentorship-page .mentorship-intro .mint-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.mentorship-page .mentorship-intro .mint-list li {
  font-family: var(--default-font, Roboto, system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* 3) ROADMAP (zig-zag section title + lead) */
.mentorship-page .mentorship-steps .section-title h2 {
  font-family: var(--heading-font, Montserrat, Roboto, system-ui, sans-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #3e517a;
  margin-bottom: 24px;
}
.mentorship-page .mentorship-steps .section-title p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Roadmap step cards */
.mentorship-page .mentorship-steps .timeline .t-body h4 {
  font-family: var(--heading-font, Montserrat, Roboto, system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand-navy);
  margin: 0 0 6px;
}
.mentorship-page .mentorship-steps .timeline .t-body p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.mentorship-page .mentorship-teaser h3 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}
.mentorship-page .mentorship-teaser p,
.mentorship-page .mentorship-teaser .mint-list li {
  font-family: var(--default-font, Roboto, system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.mentorship-page .page-title.mentorship-hero-clean .mh-title {
  font-family: var(--heading-font) !important;
  font-size: 3rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: var(--brand-navy) !important;
}
/* =========== Mentorship — Roadmap Zig-Zag============ */

.mentorship-page .mentorship-steps {
  background: #f9f4ea;
}

/* Timeline steps (zig-zag on large, stacked on small) */
.mentorship-steps {
  background: color-mix(in srgb, var(--brand-cream), transparent 70%);
}
.timeline {
  position: relative;
  margin: 10px auto 0;
  max-width: 920px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateX(-50%);
}
.t-item {
  position: relative;
  width: 50%;
  padding: 14px 20px;
}
.t-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.t-item:nth-child(even) {
  left: 50%;
}
.t-icon {
  position: absolute;
  top: 16px;
  left: calc(100% - 12px);
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--contrast-color);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.t-item:nth-child(even) .t-icon {
  left: -12px;
}
.t-body {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 16px 16px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.t-body h4 {
  margin: 0 0 6px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .timeline:before {
    left: 8px;
  }
  .t-item,
  .t-item:nth-child(even),
  .t-item:nth-child(odd) {
    width: 100%;
    left: 0;
    text-align: left;
  }
  .t-icon {
    left: 8px;
    transform: none;
  }
  .t-item .t-body {
    margin-left: 36px;
  }
}
/* Discovery button */
.mentorship-page .btn.btn-mentorship {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--brand-navy);
}
.mentorship-page .btn.btn-mentorship:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}
.mentorship-page .btn.btn-mentorship-alt {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--brand-navy);
}
.mentorship-page .btn.btn-mentorship-alt:hover {
  background: none;
  color: var(--accent-color);
  transform: translateY(-1px);
}

/* ==========================================================
   RESOURCES PAGE 
   ----------------------------------------------------------------
   ========================================================== */
/* Page title */
.resources-page .page-title {
  text-align: left;
}
.resources-page .page-title .container {
  max-width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}
.resources-page .page-title .res-tiny {
  display: inline-block;
  margin-bottom: 6px;
  font: var(--res-tiny);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.resources-page .page-title .res-title {
  margin: 0;
  font: var(--res-title);
  font-weight: 800;
  color: var(--heading-color);
}

/* Intro section */
.resources-page .res-intro .container {
  max-width: min(1120px, 100% - 2rem);
}
.resources-page .res-head {
  margin: 0 0 10px;
  font-weight: 800;
  color: #3e517a !important;
}
.res-intro .res-span {
  color: #3e517a;
}

.resources-page .res-body {
  margin: 0 0 14px;
  font: var(--res-body);
  color: var(--default-color);
}
.resources-page .res-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px dashed color-mix(in srgb, var(--res-accent), transparent 60%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--res-accent), #fff 92%);
  color: var(--res-ink);
  font-weight: 600;
}
.resources-page .res-flag i {
  color: var(--res-accent);
}

/* Image figure */
.resources-page .res-figure {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--res-surface);
  padding: 8px;
}
.resources-page .res-cap {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-top: 6px;
}

/* Grid section */
.section-tight {
  padding-top: 20px !important;
}
.resources-page .res-grid .container {
  max-width: min(1120px, 100% - 2rem);
}
.resources-page .res-grid-title {
  font: var(--res-grid-title);
  font-weight: 800;
  color: var(--heading-color);
}
.resources-page .res-grid-sub {
  font: var(--res-grid-sub);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Cards */
.resources-page .res-card {
  height: 100%;
  background: var(--res-surface);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 20px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resources-page .res-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.resources-page .res-card .res-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--res-accent), #fff 85%);
  color: color-mix(in srgb, var(--res-accent), black 25%);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.resources-page .res-card-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #3e517a;
}
.resources-page .res-card-body {
  margin: 0 0 14px;
  font: var(--res-card-body);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.resources-page .res-actions {
  display: flex;
  gap: 10px;
}

.resources-page .btn-res {
  cursor: not-allowed;
  opacity: 0.7;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  background: color-mix(in srgb, var(--res-accent), #fff 94%);
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.resources-page .btn-res:disabled {
  pointer-events: none;
}
body.resources-coming-page section.res-grid,
body.resources-page section.res-grid {
  background: #f9f4ea; /* light beige */
  padding-top: 60px;
  padding-bottom: 60px;
}

body.resources-coming-page section.res-grid .res-card,
body.resources-page section.res-grid .res-card {
  background: #fff;
}

body.resources-coming-page section.res-grid .res-note,
body.resources-page section.res-grid .res-note {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
}

/* Info strip */
.resources-page .res-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: color-mix(in srgb, var(--res-accent), #fff 96%);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}
.resources-page .res-note i {
  color: var(--res-accent);
}
.res-note {
  color: color-mix(in srgb, var(--default-color), transparent 25%) !important;
}
body.resources-coming-page .page-title .res-tiny,
body.resources-page .page-title .res-tiny {
  /* "Resources" (tiny label) */
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

body.resources-coming-page .page-title .res-title,
body.resources-coming-page .page-title h1.res-title a,
body.resources-page .page-title .res-title,
body.resources-page .page-title h1.res-title a {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  text-decoration: none;
}

body.resources-coming-page .res-grid .section-title .res-grid-title,
body.resources-page .res-grid .section-title .res-grid-title {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #3e517a;
}

body.resources-coming-page .res-flag,
body.resources-coming-page .res-head,
body.resources-coming-page .res-note,
body.resources-page .res-flag,
body.resources-page .res-head,
body.resources-page .res-note {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

body.resources-coming-page .res-body,
body.resources-coming-page .res-card .res-card-body,
body.resources-page .res-body,
body.resources-page .res-card .res-card-body {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.section-tight-top {
  padding-top: 20px !important;
  margin-top: 0 !important;
}
