/* ============================================================
   Page-Specific Styles
   ============================================================
   Add styles here that apply to individual pages only.
   Shared component styles belong in components.css.
   ============================================================ */

/* Home Page — Hero */

/* hero__eyebrow color set in components.css .hero--home .hero__eyebrow */

/* hero__sub removed — "Move forward. Move smart." is now the h1 */

/* Load-in animations (matching live site: 1.25s, fadeIn / fadeInLeft / fadeInUp) */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(120px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero: applied on DOMContentLoaded */
.hero-animate {
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.hero-animate--fade      { animation-name: fadeIn; }
.hero-animate--fade-left { animation-name: fadeInLeft; }
.hero-animate--d1 { animation-delay: 0.1s; }
.hero-animate--d2 { animation-delay: 0.3s; }
.hero-animate--d3 { animation-delay: 0.5s; }

/* Scroll-triggered: elements start invisible, .is-visible fires the animation */
.scroll-animate {
  opacity: 0;
}

.scroll-animate.is-visible {
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.scroll-animate.fade-in.is-visible        { animation-name: fadeIn; }
.scroll-animate.fade-in-left.is-visible   { animation-name: fadeInLeft; }
.scroll-animate.fade-in-up.is-visible     { animation-name: fadeInUp; }
.scroll-animate.fade-in-right.is-visible  { animation-name: fadeInRight; }

.scroll-animate.delay-300.is-visible  { animation-delay: 0.3s; }
.scroll-animate.delay-600.is-visible  { animation-delay: 0.6s; }
.scroll-animate.delay-900.is-visible  { animation-delay: 0.9s; }

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn--outline-white {
  background: transparent;
  color: var(--gp-white);
  border: 2px solid var(--gp-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  display: inline-block;
}

.btn--outline-white:hover {
  background: var(--gp-white);
  color: var(--gp-rich-black);
  transform: translateY(-1px);
}

.btn--outline-white:active {
  transform: translateY(0);
}

/* Home Page — Pillars */

.pillars-section {
  background: var(--gp-white);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

/* Heading: Rethink Sans 60px/400, line-height 55px, letter-spacing 0.3px (computed) */
.pillars-section__heading {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.3px;
  color: var(--gp-rich-black);
  text-align: center;
  margin-bottom: 20px;
}

/* Intro: Onest 18px/400, line-height 26px (computed) */
.pillars-section__intro {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gp-rich-black);
  text-align: center;
  margin-bottom: 14.4px; /* live: 14.4px computed */
}

/* Pillar icon row */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pillar {
  cursor: pointer;
  padding-bottom: 20px;
}

/* Pillar icons — using actual images from live site (circles baked in) */
.pillar__img {
  width: 150px;
  height: 150px;
  margin: 0 auto var(--space-sm);
  display: block;
  border-radius: 50%;
}

/* Pillar name: Onest 18px/700 (computed) */
.pillar__name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: var(--gp-rich-black);
  margin-bottom: 0;
}

/* Pillar description slider */
.pillar-slider {
  border-radius: 0;
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--gp-rich-black);
  margin-left: calc(-1 * var(--space-lg));
  margin-right: calc(-1 * var(--space-lg));
}

/* Color wipe overlay — slides right→left over the old colour */
.pillar-slider__wipe {
  position: absolute;
  inset: 0;
  z-index: 5;
  transform: translateX(100%);          /* off-screen right to start */
  pointer-events: none;
}

.pillar-slider__track {
  position: relative;
  height: 100%;
  padding: 40px var(--space-2xl);
  overflow: hidden;
  z-index: 1;
}

/* Slides stacked absolutely inside the track */
.pillar-slider__slide {
  position: absolute;
  inset: 0;
  padding: 40px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.pillar-slider__slide--active {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.pillar-slider__slide {
  display: none;
  text-align: center;
}

.pillar-slider__slide--active {
  display: block;
}

/* Slide background colors handled by JS on .pillar-slider container */
/* JS also updates text/arrow/dot colors for contrast on lime */

/* Slide heading: Onest 35px/700, white (computed) */
.pillar-slider__heading {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: normal; /* override inherited h3 value */
  color: var(--gp-white);
  margin-bottom: 30px; /* live: 30px */
}

/* Slide description: Onest 17px/400, line-height 23.8px, white (computed) */
.pillar-slider__desc {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gp-white);
  max-width: 780px;
  margin: 0 auto;
}

/* Arrows — overlaid on slider */
.pillar-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gp-white);
  font-size: 48px;
  cursor: pointer;
  padding: 0 var(--space-sm);
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
}

.pillar-slider__arrow--prev { left: 10px; }
.pillar-slider__arrow--next { right: 10px; }

.pillar-slider__arrow:hover {
  opacity: 1;
}

/* Pagination dots */
.pillar-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.pillar-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.pillar-slider__dot--active {
  background: var(--gp-rich-black);
  width: 24px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pillars-section__heading {
    font-size: 42px;
    line-height: 46px;
  }

  .pillar__img {
    width: 120px;
    height: 120px;
  }

  .pillar-slider {
    padding: var(--space-lg) var(--space-xl);
  }
}

@media (max-width: 767px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-section__heading {
    font-size: 32px;
    line-height: 36px;
  }

  .pillar__img {
    width: 100px;
    height: 100px;
  }

  /* Mobile: remove fixed height so full text is visible */
  .pillar-slider {
    height: auto;
    overflow: visible;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .pillar-slider__track {
    height: auto;
    overflow: visible;
    padding: 0;
  }

  /* Active slide: position relative so container expands to text height */
  .pillar-slider__slide--active {
    position: relative;
    inset: auto;
    padding: 30px 20px 60px;
    display: flex;
    opacity: 1;
    transform: none;
  }

  .pillar-slider__heading {
    font-size: 24px;
    line-height: 28px;
  }

  .pillar-slider__desc {
    font-size: 15px;
    line-height: 21px;
  }

  .pillar-slider__arrow {
    font-size: 32px;
    padding: 0 var(--space-xs);
  }

  /* Keep dots visible below the text */
  .pillar-slider__dots {
    position: static;
    transform: none;
    margin-top: 16px;
    justify-content: center;
  }
}

/* Home Page — Services Overview */

.services-overview {
  background: var(--gp-light-gray);
  padding: 0;
  position: relative;
  overflow: visible; /* allows woman's head to clip above section */
}

/* Inner only drives the left-column layout */
.services-overview__inner {
  padding: 60px 0;
  min-height: 540px; /* match live site height */
}

.services-overview__content {
  width: 50%;
  padding-right: 60px;
  margin-left: -8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-overview__eyebrow {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gp-rich-black);
  margin-bottom: 0;
}

.services-overview h2 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

/* Photo: direct child of section so it reaches the screen right edge */
.services-overview__photo {
  position: absolute;
  left: 50%;  /* starts exactly at the midpoint of the section */
  right: 0;   /* extends to the right edge */
  top: 0;
  bottom: 0;
  overflow: visible; /* head allowed to clip above orange into section above */
  background-color: var(--gp-orange);
}

/* GP >> mark behind the woman — semi-transparent like live site */
.services-overview__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/logos/GP-Logo mark-KO.svg');
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: 65% 45%;
  opacity: 0.35;
  z-index: 0;
}

.services-overview__photo img {
  position: absolute;
  top: -60px;               /* head clips 60px into grey section above */
  left: -50px;              /* overflows slightly into grey section on left */
  width: auto;
  height: calc(100% + 60px); /* 540px + 60px shift = 600px → bottom flush */
  z-index: 1;
  display: block;
}

/* Accordion */

.services-accordion__item {
  border-bottom: 1px solid var(--gp-orange);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.services-accordion__item:last-child {
  margin-bottom: 0;
}

.services-accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  gap: var(--space-sm);
}

.services-accordion__title::-webkit-details-marker { display: none; }

.services-accordion__service-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.services-accordion__title-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gp-orange);
  line-height: 26px;
}

.services-accordion__icon {
  flex-shrink: 0;
}

.services-accordion__icon--open  { display: none; }
.services-accordion__icon--closed { display: block; }

.services-accordion__item[open] .services-accordion__icon--open  { display: block; }
.services-accordion__item[open] .services-accordion__icon--closed { display: none; }

.services-accordion__body {
  padding-top: var(--space-sm);
}

.services-accordion__body p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gp-rich-black);
  line-height: 22px;
  margin-bottom: var(--space-sm);
}

.services-accordion__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gp-rich-black);
  text-decoration: none;
}

.services-accordion__link:hover {
  color: var(--gp-orange);
}

@media (max-width: 1024px) {
  .services-overview__inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .services-overview__content {
    padding-right: 0;
  }

  .services-overview__photo {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Full-width content column — removes the 50% desktop constraint */
  .services-overview__content {
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }

  /* Smaller h2 so "Our Services" fits on one line */
  .services-overview h2 {
    font-size: 42px !important;
    line-height: 46px !important;
    letter-spacing: normal !important;
  }

}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 16px;
  color: var(--gp-gray);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* Blog Page Animations */

.blog-fade {
  opacity: 0;
}

.blog-fade.is-visible {
  animation: aboutFadeIn 0.7s ease forwards;
}

.blog-fade--d1.is-visible { animation-delay: 0s; }
.blog-fade--d2.is-visible { animation-delay: 0.3s; }
.blog-fade--d3.is-visible { animation-delay: 0.6s; }

/* Blog Listing Page — Hero */

.blog-hero {
  background: url('../assets/images/background-orange-arrows.svg') center/cover no-repeat;
  padding: 150px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.blog-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 23px;
  letter-spacing: 0.5px;
  color: var(--gp-light-lime);
  margin: 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 110px;
  line-height: 100px;
  letter-spacing: 0.3px;
  color: var(--gp-white);
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.blog-hero__desc {
  color: var(--gp-white);
  max-width: 580px;
  margin: 0;
  font-size: 21px;
  line-height: 28px;
}

/* Blog Listing Page — Cards */

.blog-listing {
  padding: 100px 0 140px;
}

.blog-listing .container {
  max-width: 1280px;
  padding: 0 20px;
}

.blog-listing .card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .blog-listing .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.blog-filter__dropdown-row {
  margin-bottom: 60px;
}

.blog-filter__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgb(105, 114, 125);
  cursor: pointer;
  transition: color 0.15s ease;
}

.blog-filter__btn--active,
.blog-filter__btn:hover {
  color: var(--gp-rich-black);
}

.blog-filter__dropdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-filter__label {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--gp-rich-black);
  white-space: nowrap;
}

.blog-filter__select-wrap {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.blog-filter__select {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  background: var(--gp-white);
  border: 2px solid var(--gp-rich-black);
  border-radius: 4px;
  padding: 10px 52px 10px 14px;
  cursor: pointer;
  appearance: none;
  min-width: 320px;
  line-height: 1.4;
}

.blog-filter__select:focus {
  outline: 2px solid var(--gp-bright-blue);
  outline-offset: 1px;
}

.blog-filter__select-wrap::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: var(--gp-bright-blue);
  border-radius: 50%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .blog-filter__dropdown-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
  }

  .blog-filter__select-wrap {
    width: 100%;
  }

  .blog-filter__select {
    min-width: 0;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
  }
}

/* Blog listing page cards — scoped to .blog-listing to avoid
   bleeding into the home page carousel (.blog-carousel) */

.blog-listing .blog-card {
  display: flex;
  flex-direction: column;
  background: var(--gp-rich-black);
  border-radius: 0;
  overflow: hidden;
  height: 706px;
}

.blog-listing .blog-card__img-wrap {
  display: block;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}

.blog-listing .blog-card__img-wrap--empty {
  background: #1a2030;
}

.blog-listing .blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-listing .blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-listing .blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 30px 30px;
  gap: 20px;
}

.blog-listing .blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-listing .blog-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 18px;
  padding: 5px 12px;
  border-radius: 30px;
  color: var(--gp-light-blue);
  background: transparent;
}

.blog-listing .blog-card__tag[data-cat="ciso"] {
  color: var(--gp-rich-black);
  background: var(--gp-lime);
}

.blog-listing .blog-card__tag[data-cat="article"],
.blog-listing .blog-card__tag[data-cat="blog-post"] {
  color: var(--gp-light-blue);
  background: var(--gp-dark-gray);
}

.blog-listing .blog-card__tag[data-cat="hipaa"],
.blog-listing .blog-card__tag[data-cat="gen-ai"] {
  color: var(--gp-light-blue);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.blog-listing .blog-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gp-white);
  margin: 0;
}

.blog-listing .blog-card__title a {
  color: var(--gp-white);
  text-decoration: none;
}

.blog-listing .blog-card__title a:hover {
  color: var(--gp-light-lime);
}

.blog-listing .blog-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-listing .blog-card__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gp-bright-blue);
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
}

.blog-listing .blog-card__link:hover {
  color: var(--gp-med-blue);
}

@media (max-width: 1024px) {
  .blog-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .blog-hero h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .blog-listing {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .blog-hero h1 {
    font-size: 48px;
    line-height: 54px;
  }

  /* Center eyebrow on mobile to match rest of hero content */
  .blog-hero__eyebrow {
    text-align: center;
  }
}

/* Home Page — Blog Highlights */

.blog-highlights {
  background: var(--gp-white);
  padding: 100px 0;
  overflow: hidden;
}

.blog-highlights h2 {
  font-size: 60px;
  line-height: 55px;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 0;
}

.blog-highlights__intro {
  font-size: 18px;
  color: var(--gp-gray);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 48px;
}

/* Full-width JS carousel */
.blog-carousel {
  position: relative;
  width: 100%;
  margin: 40px 0 48px;
  overflow: hidden; /* clips cards extending beyond viewport */
}

.blog-carousel__viewport {
  width: 100%;
  overflow: visible;
}

/* Track: flex row, JS sets translateX to center active card */
.blog-carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Home carousel cards: 65vw wide, horizontal — image left, content right */
.blog-carousel__track .blog-card {
  flex: 0 0 65vw;
  max-width: 65vw;
  height: 360px;
  display: flex;
  flex-direction: row;
  background: var(--gp-rich-black);
  border-radius: 12px;
  overflow: hidden;
}

/* Left: image takes 45% of card width */
.blog-carousel__track .blog-card__img-wrap {
  flex: 0 0 45%;
  display: block;
  overflow: hidden;
}

.blog-carousel__track .blog-card__img-wrap--empty {
  background: #1a2030;
}

.blog-carousel__track .blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.blog-carousel__track .blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

/* Right: content */
.blog-carousel__track .blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
  gap: 18px;
}

.blog-carousel__track .blog-card__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--gp-white);
  margin: 0;
}

.blog-carousel__track .blog-card__title a {
  color: var(--gp-white);
  text-decoration: none;
}

.blog-carousel__track .blog-card__title a:hover {
  color: var(--gp-light-lime);
}

.blog-carousel__track .blog-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel__track .blog-card__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gp-bright-blue);
  text-decoration: none;
  margin-top: auto;
}

.blog-carousel__track .blog-card__link:hover {
  color: var(--gp-med-blue);
}

@media (max-width: 767px) {
  /* Single-card carousel on mobile — one tall vertical card at a time */
  .blog-carousel {
    overflow: hidden;
  }

  .blog-carousel__track {
    flex-direction: row;
    gap: 16px;
  }

  .blog-carousel__track .blog-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    flex-direction: column;
    height: auto;
    min-height: 480px;
  }

  .blog-carousel__track .blog-card__img-wrap {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .blog-carousel__track .blog-card__body {
    flex: 1;
    padding: 20px;
  }

  .blog-carousel__controls {
    display: flex;
  }
}

/* Arrows: row below the cards */
.blog-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/* Arrows: bare chevron SVG, matching live site style */
.blog-carousel__arrow {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--gp-rich-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.blog-carousel__arrow:hover {
  opacity: 1;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .blog-carousel__track .blog-card { flex: 0 0 90vw; max-width: 90vw; }
}


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

/* CTA button — matches live site computed styles exactly */
.btn--blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gp-white);
  background: var(--gp-orange); /* orange — needed for visibility on white bg */
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn--blog-cta:hover {
  background: #e5571a;
}

@media (max-width: 1024px) {
  .blog-highlights h2 {
    font-size: 42px;
    line-height: 46px;
  }

  #home-blog-grid {
    padding: 0 40px;
    margin: 0 -40px;
  }

  #home-blog-grid .blog-card {
    min-width: 320px;
  }
}

@media (max-width: 767px) {
  #home-blog-grid {
    padding: 0 20px;
    margin: 0 -20px;
  }

  #home-blog-grid .blog-card {
    min-width: 280px;
  }
}

/* Services Page — Shared */

.service-section {
  background: var(--gp-white);
  padding-bottom: var(--space-sm);
}

.service-section--alt {
  background: var(--gp-white);
}

/* Services Page — h2/h3 typography matching live computed values */

.service-section h2,
.isms-section h2,
.service-tailored__content h2,
.service-leadership h2 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.service-tailored__content h2 {
  font-size: 42px;
  line-height: 50px;
  max-width: 560px;
  margin-bottom: 30px;
}

.page-chro .service-tailored__content h2 {
  font-size: 36px;
  line-height: 44px;
}

.service-article h3 {
  font-size: 46px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.3px;
  margin-bottom: var(--space-md);
}

/* Services Page — ISMS light-theme override (live site: white background) */

/* Higher specificity (two classes) so it wins over .isms-section base rule */
.isms-section.isms-section--services {
  background: var(--gp-white);
  color: var(--gp-rich-black);
  padding: 0 0 50px;
}

.isms-section__heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.isms-section.isms-section--services h2 {
  color: var(--gp-rich-black);
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  line-height: 72px;
}

.isms-section--services .isms-section__intro {
  color: var(--gp-rich-black);
  text-align: center;
  max-width: 850px;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.isms-section--services .eyebrow {
  color: var(--gp-bright-blue);
}

/* ISMS static wheel image for services page */

.isms-wheel-image {
  display: block;
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 20px auto 0;
}

/* Light-theme detail card */

/* ISMS wheel centered layout for services page */
.isms-wheel-center {
  display: flex;
  justify-content: center;
  margin: var(--space-xl) 0 var(--space-lg);
}

.isms-wheel-center .isms-wheel {
  width: 100%;
  max-width: 600px;
}

/* Aspect-ratio wrapper: maintains 1329:1080 ratio of the PNG */
.isms-wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 81.26%; /* 1080/1329 * 100 */
  height: 0;
}

.isms-wheel-img,
.isms-wheel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.isms-wheel-img {
  object-fit: contain;
}

/* SVG overlay sits on top of the PNG — see isms-wheel.js for geometry */
#isms-wheel svg path:focus {
  outline: none;
}

.isms-detail--light {
  background: var(--gp-light-gray);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  max-width: 640px;
  margin: 0 auto;
  min-height: 80px;
}

.isms-detail--light .isms-detail__name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gp-rich-black);
  margin-bottom: var(--space-xs);
}

.isms-detail--light .isms-detail__desc {
  font-size: 16px;
  color: var(--gp-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ISMS Wheel — Modal Popup (matches live site off-canvas panel) */

.isms-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.isms-modal-overlay--open {
  opacity: 1;
  pointer-events: all;
}

body.isms-modal-open {
  overflow: hidden;
}

.isms-modal-panel {
  background: #F4F6F8;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.2s ease;
}

.isms-modal-overlay--open .isms-modal-panel {
  transform: translateY(0);
}

.isms-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 16px;
  gap: 12px;
}

.isms-modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gp-rich-black);
  margin: 0;
}

.isms-modal-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gp-gray);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gp-gray);
  transition: border-color 0.15s, color 0.15s;
  margin-top: 2px;
}

.isms-modal-close:hover {
  border-color: var(--gp-rich-black);
  color: var(--gp-rich-black);
}

.isms-modal-list {
  list-style: none;
  padding: 0 0 8px;
  margin: 0;
}

.isms-modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gp-rich-black);
  line-height: 1.4;
}

.isms-modal-check {
  flex-shrink: 0;
}

/* Services page — all sections use 1280px content width (matching live site) */
.service-section .container,
.isms-section--services .container {
  max-width: 1360px;
}

/* Services Page — Intro (two-column: h2 left, body right) */

.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: var(--space-xl);
}

.service-intro h2 {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.3px;
}

.service-intro p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gp-rich-black);
  margin-bottom: 14.4px;
}

/* Services Page — Service Card Rows (icon+label left, description right) */

.service-card-row {
  display: grid;
  grid-template-columns: 1fr 2.033fr;
  gap: 40px;
  align-items: start;
  background: rgba(12, 80, 213, 0.04);
  border: 1px solid rgba(12, 80, 213, 0.12);
  border-radius: var(--radius-md);
  padding: 35px 30px 30px;
  margin-bottom: var(--space-md);
}

.service-card-row__label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.service-card-row__label svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.service-card-row__label span {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.3px;
  padding-left: 5px;
  color: var(--gp-rich-black);
}

.service-card-row p {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  color: var(--gp-rich-black);
  margin-bottom: 14.4px;
}

/* Services Page — Risk-based Tailored Approach */

.service-tailored-section {
  background: var(--gp-light-gray) url('../assets/images/background-gray-blue-arrows.svg') center center / cover no-repeat;
  padding: 0;
  margin-top: 70px;
  position: relative;
  overflow: visible;
  min-height: 560px;
}


.service-tailored__content {
  max-width: 820px;
  padding: 80px 0 60px;
}

.service-tailored__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--gp-rich-black);
  margin-bottom: 14.4px;
  max-width: 560px;
}

/* Man photo: absolutely positioned, overflows 87px above section top */
.service-tailored__photo {
  position: absolute;
  top: -87px;
  right: 0;
  left: auto;
  width: 538px;
  height: auto;
  display: block;
}

/* CHRO page: shift man photo to left edge of dark panel at full size */
.page-chro .service-tailored__photo {
  left: calc(50% - 60px);
  right: auto;
  width: 538px;
}

/* Services Page — Service Articles Grid (2×2) */

.service-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  row-gap: 64px;
}

.service-article img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: var(--space-md);
}

.service-article h3 {
  margin-bottom: var(--space-sm);
}

.service-article p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--gp-rich-black);
  margin-bottom: 0;
}

/* Services Page — Leadership Experience */

.service-leadership {
  text-align: center;
  background: var(--gp-light-gray);
  padding: 0;
}

.service-leadership .container {
  max-width: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.service-leadership h2 {
  margin-bottom: 30px;
}

.service-leadership p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gp-rich-black);
  margin: 0;
}



@media (max-width: 1024px) {
  .service-intro {
    grid-template-columns: 1fr;
  }

  .service-intro h2 {
    font-size: 48px;
    line-height: 44px;
  }

  .service-card-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-tailored {
    grid-template-columns: 1fr;
  }

  .service-tailored__image {
    order: -1;
  }
}

/* Tailored section: hide photo + dark overlay at tablet and below */
@media (max-width: 1024px) {
  .service-tailored__photo {
    display: none;
  }

  .service-tailored-section::after {
    display: none;
  }

  .service-tailored-section {
    background: var(--gp-light-gray) !important;
    min-height: 0;
    overflow: hidden;
  }

  .service-tailored__content {
    max-width: 100%;
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .service-intro h2 {
    font-size: 48px;
    line-height: 44px;
  }

  .service-articles {
    grid-template-columns: 1fr;
  }

  .service-tailored__content {
    padding: 40px 0;
  }

  .service-tailored__content h2 {
    font-size: 40px !important;
    line-height: 44px !important;
    letter-spacing: normal !important;
  }
}

/* Services Page — ISMS Wheel */

.isms-section {
  background: var(--gp-rich-black);
  color: var(--gp-white);
}

.isms-section .eyebrow {
  color: var(--gp-lime);
}

.isms-section h2 {
  color: var(--gp-white);
  margin-bottom: var(--space-sm);
}

.isms-section__intro {
  color: var(--gp-light-gray);
  max-width: 700px;
  margin-bottom: var(--space-xl);
}

.isms-wheel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.isms-wheel-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.isms-wheel {
  width: 100%;
  max-width: 380px;
}

.isms-wheel svg {
  width: 100%;
  height: auto;
}

.isms-detail {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  min-height: 100px;
}

.isms-detail__name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gp-lime);
  margin-bottom: var(--space-xs);
}

.isms-detail__desc {
  font-size: 16px;
  color: var(--gp-light-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.isms-legend {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-xs);
}

.isms-legend__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px var(--space-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
  color: var(--gp-light-gray);
  font-size: 15px;
}

.isms-legend__item:hover,
.isms-legend__item--active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gp-white);
}

.isms-legend__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-white);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .isms-wheel-wrapper {
    grid-template-columns: 1fr;
  }

  .isms-wheel-panel {
    flex-direction: row;
    align-items: flex-start;
  }

  .isms-wheel {
    max-width: 260px;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .isms-wheel-panel {
    flex-direction: column;
  }

  .isms-wheel {
    max-width: 100%;
  }
}

/* Blog Listing */
/* TODO: Blog grid layout and filters (Joshua) */

/* Contact Page */

/* About Page — Logo watermark on colored sections */

.hero,
.about-millie {
  position: relative;
  overflow: hidden;
}

.about-millie::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/logos/GP-Logo mark.svg');
  background-repeat: repeat;
  background-size: 80px;
  opacity: 0.08;
  pointer-events: none;
}

/* About Page — Hero */

/* About page fade-in animation */
@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aboutSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-slide-up {
  opacity: 0;
}

.about-slide-up.is-visible {
  animation: aboutSlideUp 1s ease forwards;
}

.about-fade {
  opacity: 0;
}

.about-fade.is-visible {
  animation: aboutFadeIn 0.7s ease forwards;
}

.about-fade.is-visible:nth-child(2) { animation-delay: 0.1s; }
.about-fade.is-visible:nth-child(3) { animation-delay: 0.2s; }
.about-fade.is-visible:nth-child(4) { animation-delay: 0.3s; }

.hero--about {
  background: url('../assets/images/background-dark-blue-arrows.svg') center / cover no-repeat;
  background-color: var(--gp-rich-black);
  text-align: center;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero--about .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 0 20px;
}

.hero--about p.hero--about__eyebrow {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gp-light-lime);
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: center;
}

.hero--about h1 {
  font-family: var(--font-heading);
  font-size: 110px;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: 0.3px;
  text-align: center;
  max-width: none;
  color: var(--gp-white);
  margin-bottom: 0;
}

.hero--about p:not(.hero--about__eyebrow) {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gp-white);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* About Page — Mission */

.about-mission {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--gp-white);
  text-align: center;
}

.about-mission h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.3px;
  color: var(--gp-rich-black);
  margin-bottom: var(--space-md);
}

.about-mission p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--gp-rich-black);
  max-width: 840px;
  margin: 0 auto 14.4px;
  text-align: center;
}

/* About Page — Team */

.about-team {
  padding: 60px 0 140px;
  background: var(--gp-white);
  text-align: center;
}

.about-team h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.3px;
  color: var(--gp-rich-black);
  margin-bottom: var(--space-md);
}

.about-team__card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(161, 200, 243, 0.3);
  padding: 30px 140px 30px 30px;
  text-align: left;
  position: relative;
}

.about-team__card-body {
  min-width: 0;
  max-width: 820px;
}

.about-team__card-header {
  display: block;
}

.about-team__toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  top: 61px;
  right: 30px;
}

.about-team__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.about-team__cofounder {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gp-bright-blue);
}

.about-team__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gp-rich-black);
}

.about-team__toggle {
  transition: transform 0.5s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.about-team__toggle svg {
  width: 54px;
  height: 54px;
}

.about-team__toggle-btn[aria-expanded="true"] .about-team__toggle {
  transform: rotate(180deg);
}

.about-team__bio {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
}

.about-team__bio p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gp-rich-black);
  margin-bottom: 14px;
}

.about-team__bio-inner {
  padding: 16px 0 16px;
  max-width: 720px;
}

.about-team__social--header { display: block; margin-top: 4px; }
.about-team__social--bio    { display: none; }

.about-team__card.is-expanded .about-team__social--header { display: none; }
.about-team__card.is-expanded .about-team__social--bio    { display: block; }

.about-team__photo {
  flex-shrink: 0;
  min-width: 112px;
}

.about-team__photo img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.about-team__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.about-team__name {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gp-bright-blue);
}


.about-team__social {
  list-style: none;
  display: block;
  margin-top: var(--space-md);
}

.about-team__social li {
  display: flex;
  align-items: center;
}

.about-team__social-link {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
  color: var(--gp-rich-black);
}

.about-team__social-link--linkedin {
  color: #0A66C2;
}

.about-team__social-link--x {
  color: #000000;
}

.about-team__social-link span {
  color: var(--gp-rich-black);
  padding-left: 5px;
}

.about-team__social-link:hover {
  opacity: 0.75;
}


@media (max-width: 1024px) {
  .hero--about h1 {
    font-size: 60px;
    line-height: 65px;
  }

  .about-team__card {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .hero--about h1 {
    font-size: 48px;
    line-height: 52px;
  }


  .about-mission h2,
  .about-team h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .about-team__card {
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .about-team__photo {
    min-width: unset;
  }

  .about-team__photo img {
    width: 140px;
    height: 140px;
  }

  .about-team__card-body {
    width: 100%;
  }

  .about-team__toggle-btn {
    top: 220px;
    right: 20px;
  }
}

/* About Page (legacy — unused, kept for reference) */

.about-story {
  background: var(--gp-white);
  padding: var(--space-2xl) 0;
  border-top: 4px solid var(--gp-lime);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-story__content p,
.about-story__values p {
  color: var(--gp-gray);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.about-values__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-values__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--gp-light-gray);
  border-left: 4px solid var(--gp-orange);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.about-values__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-values__item strong {
  display: block;
  font-weight: 600;
  color: var(--gp-rich-black);
  margin-bottom: 4px;
}

.about-values__item p {
  margin: 0;
  font-size: 15px;
}

.about-story__content .eyebrow,
.about-story__mission .eyebrow {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gp-rich-black);
}

.about-story__content h2 {
  font-weight: 700;
}

.about-story__mission {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--gp-light-gray);
}

.about-story__mission h3 {
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about-bio {
  background: var(--gp-rich-black);
  padding: var(--space-2xl) 0;
}

.about-bio__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-bio__photo-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.08);
}

.about-bio .eyebrow {
  color: var(--gp-lime);
}

.about-bio h2 {
  color: var(--gp-white);
}

.about-bio__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--gp-med-blue);
  margin-bottom: var(--space-md);
}

.about-bio__content p {
  color: var(--gp-light-blue);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.about-bio__certs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.about-bio__cert {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gp-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-bio__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-bio__social-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gp-lime);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-bio__social-link:hover {
  color: var(--gp-white);
}

/* Millie B Section */

.about-millie {
  background: var(--gp-light-lime);
  padding: var(--space-2xl) 0;
}

.about-millie__grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-millie__photos {
  display: block;
}

.about-millie__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-natural);
}

.about-millie__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--gp-bright-blue);
  margin-bottom: var(--space-md);
}

.about-millie__content p {
  color: var(--gp-rich-black);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.about-millie__certs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.about-millie__cert {
  background: var(--gp-lime);
  color: var(--gp-rich-black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-bio__grid {
    grid-template-columns: 260px 1fr;
  }

  .about-millie__grid {
    grid-template-columns: 1fr;
  }
}

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

  .about-bio__photo-placeholder {
    aspect-ratio: 1 / 1;
    max-width: 200px;
  }

  .about-millie__photos {
    grid-template-columns: 1fr;
  }

  .about-millie__photo--secondary {
    grid-column: 1;
  }
}

/* Privacy Policy Page — Hero */

.hero--privacy {
  background-color: var(--gp-orange) !important;
  background-image: url('../assets/images/background-dark-blue-arrows.svg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: screen !important;
  padding: 150px 0 100px !important;
  text-align: center !important;
}

.hero--privacy h1 {
  font-size: 110px !important;
  line-height: 100px !important;
  color: var(--gp-white) !important;
  letter-spacing: 0.3px !important;
  max-width: none !important;
  margin: 0 auto !important;
}

/* Privacy Policy Page — Content */

.privacy-content {
  background: var(--gp-white);
  padding: var(--space-lg) 0 var(--space-xl);
}

.privacy-updated {
  font-size: 14px;
  color: var(--gp-gray);
  margin-top: var(--space-lg);
  margin-bottom: 0;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 0;
  padding: 0;
}

.privacy-section h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gp-rich-black);
  font-weight: 400;
  margin-top: var(--space-md);
  margin-bottom: 8px;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gp-rich-black);
  letter-spacing: normal;
  margin-top: 14px;
  margin-bottom: 4px;
}

.privacy-section p {
  font-size: 18px;
  color: var(--gp-rich-black);
  line-height: 26px;
  margin-bottom: 8px;
  max-width: none;
}

.privacy-section ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-top: 8px;
  margin-bottom: 8px;
}

.privacy-section ul li {
  font-size: 18px;
  color: var(--gp-rich-black);
  line-height: 1.7;
  margin-bottom: 8px;
}

.privacy-section a {
  color: var(--gp-bright-blue);
  text-decoration: underline;
}

.privacy-section a:hover {
  color: var(--gp-med-blue);
}

@media (max-width: 767px) {
  .hero--privacy h1 {
    font-size: 56px;
  }

  .privacy-section h2 {
    font-size: 36px;
    line-height: 40px;
  }
}

/* ── Blog Post Page ─────────────────────────────────── */

/* Hero — same orange background image as the Blog index page */
.blog-post-hero {
  background: url('../../assets/images/background-orange-arrows.svg') center / cover no-repeat;
  padding: 150px 0 100px;
  text-align: center;
}

.blog-post-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.blog-post-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.blog-post-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.blog-post-hero__subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
}

/* Meta bar — white strip below hero */
.blog-post-meta-bar {
  background: var(--gp-white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.blog-post-meta-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-post-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.blog-post-tag--cat {
  background: #2ECC71;
  color: #fff;
  text-transform: uppercase;
}

.blog-post-tag--date {
  background: rgba(0,0,0,0.07);
  color: var(--gp-gray);
}

.blog-post-tag--author {
  background: rgba(0,0,0,0.07);
  color: var(--gp-gray);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* Article layout */
.blog-post-article {
  padding: 56px 0 80px;
  background: var(--gp-white);
}

/* Two-column intro grid */
.blog-post-article__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.blog-post-article__intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gp-gray);
  margin-bottom: 18px;
}

/* Sidebar CTA card */
.blog-post-cta {
  background: var(--gp-rich-black);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 80px;
}

.blog-post-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gp-white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.blog-post-cta p {
  font-size: 14px;
  color: var(--gp-light-gray);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Single-column body after intro */
.blog-post-article__body {
  max-width: 740px;
}

.blog-post-article__body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gp-rich-black);
  margin: 40px 0 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-post-article__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gp-rich-black);
  margin: 40px 0 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-post-article__body h2:first-child,
.blog-post-article__body h3:first-child { margin-top: 0; }

.blog-post-article__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gp-gray);
  margin-bottom: 18px;
}

.blog-post-article__body ul,
.blog-post-article__body ol {
  padding-left: 1.6rem;
  margin-bottom: 18px;
}

.blog-post-article__body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gp-gray);
  margin-bottom: 8px;
}

.blog-post-article__body li > p { margin-bottom: 0; }

.blog-post-article__body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 28px 0;
  display: block;
}

.blog-post-article__body strong { color: var(--gp-rich-black); }

.blog-post-article__body a {
  color: var(--gp-bright-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Orange callout block */
.blog-post-article__body .callout,
.blog-post-article .callout {
  background: #E8602A;
  border-radius: 4px;
  padding: 40px 60px;
  margin: 40px 0;
  text-align: center;
}

.blog-post-article__body .callout h2,
.blog-post-article__body .callout h3 {
  color: #fff;
  text-decoration: none;
  font-style: italic;
  margin: 0 0 12px;
  font-size: 26px;
}

.blog-post-article__body .callout p {
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .blog-post-article__grid {
    grid-template-columns: 1fr;
  }
  .blog-post-cta { position: static; }
  .blog-post-article__body { max-width: 100%; }
  .blog-post-hero h1 { font-size: clamp(32px, 7vw, 52px); }
  .blog-post-article__body .callout { padding: 32px 24px; }
}

/* ============================================================
   Fractional CTO Service Page (services/cto.html)
   Placeholder styles — Task 1.5
   Note: ../css/ paths resolve correctly from services/ subdirectory
   ============================================================ */

/* Hero inherits .hero--services from components.css */
/* [PLACEHOLDER — Add CTO-specific hero overrides here if needed] */

/* [PLACEHOLDER — Add CTO page section styles here when content is provided] */


/* ============================================================
   Fractional CHRO Service Page (services/chro.html)
   Placeholder styles — Task 1.5
   ============================================================ */

/* Hero inherits .hero--services from components.css */
/* [PLACEHOLDER — Add CHRO-specific hero overrides here if needed] */

/* [PLACEHOLDER — Add CHRO page section styles here when content is provided] */
