/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background-color: rgba(27, 58, 92, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FAF8F5;
  color: #2D2D2D;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--mid {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

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

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section--sm {
  padding: 2.5rem 0;
}

.section--hero {
  padding: 4rem 0 5rem;
}

/* Section backgrounds */
.bg-cream { background-color: #FAF8F5; }
.bg-warm  { background-color: #F0EBE3; }
.bg-blue  { background-color: #E8ECF4; }
.bg-gold  { background-color: #FFF7E8; }
.bg-navy  { background-color: #1B3A5C; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-desktop .btn--primary { color: #fff; }
.nav-desktop .btn--primary:hover { color: #F0EBE3; }
.btn--primary {
  background-color: #1B3A5C;
  color: #fff;
  padding: 0.875rem 2rem;
}

.btn--primary:hover {
  background-color: #2261a3;
}

.btn--outline {
  background-color: transparent;
  color: #1B3A5C;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(27, 58, 92, 0.2);
}

.btn--outline:hover {
  border-color: rgba(27, 58, 92, 0.4);
  background-color: rgba(27, 58, 92, 0.04);
}

.btn--white {
  background-color: #fff;
  color: #1B3A5C;
  padding: 0.875rem 2rem;
}

.btn--white:hover {
  background-color: #F0EBE3;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

.btn--hero {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FAF8F5;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.header__logo:hover {
  color: #1B3A5C;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5A5A5A;
  display: inline-block;
  position: relative; /* for underline pseudo */
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

/* underline animation */
.nav-desktop a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1B3A5C;
  transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #1B3A5C;
}

.nav-desktop a:not(.btn):hover::after,
.nav-desktop a:not(.btn).active::after {
  width: 100%;
}



/* Mobile hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #2D2D2D;
  transition: color 0.2s ease;
}

.hamburger:hover {
  color: #1B3A5C;
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

.hamburger .icon-close {
  display: none;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  border-top: 1px solid #E5DDD3;
  padding: 0.5rem 1.5rem 1.5rem;
}

.nav-mobile a:not(.btn) {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #5A5A5A;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav-mobile a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1B3A5C;
  transition: width 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: #1B3A5C;
}

.nav-mobile a:not(.btn):hover::after,
.nav-mobile a:not(.btn).active::after {
  width: 100%;
}

.nav-mobile .btn {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
}

/* Mobile menu open state */
.header.menu-open .nav-mobile {
  display: block;
}

.header.menu-open .hamburger .icon-open {
  display: none;
}

.header.menu-open .hamburger .icon-close {
  display: block;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 4rem 0 5rem;
}

.hero__content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1B3A5C;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #5A5A5A;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__reassurance {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #7A7A7A;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 8rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.social-proof {
  padding: 2.5rem 0;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.social-proof__quote {
  font-size: 0.875rem;
  font-style: italic;
  color: #5A5A5A;
  line-height: 1.6;
}

.social-proof__name {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7A7A7A;
}

@media (min-width: 768px) {
  .social-proof__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   PHILOSOPHY CARDS
   ============================================================ */
.philosophy-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.philosophy-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(27, 58, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #1B3A5C;
}

.philosophy-card__icon svg {
  width: 22px;
  height: 22px;
}

.philosophy-card__title {
  margin-bottom: 0.75rem;
}

.philosophy-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
}

/* ============================================================
   FOR / NOT FOR SECTION
   ============================================================ */
.filter-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.filter-card--for {
  background-color: #E8ECF4;
}

.filter-card--not {
  background-color: #FFF7E8;
}

.filter-card__title {
  margin-bottom: 1.5rem;
}

.filter-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.filter-card__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.filter-card__item--check svg {
  color: #1B3A5C;
}

.filter-card__item--x svg {
  color: #C4963A;
}

.filter-card__item span {
  font-size: 0.9375rem;
  color: #4A4A4A;
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.step__number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(196, 150, 58, 0.2);
  line-height: 1;
}

.step__title {
  margin-top: 0.75rem;
}

.step__text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 221, 211, 0.6);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card__quote-icon {
  color: #C4963A;
  margin-bottom: 1rem;
}

.testimonial-card__quote-icon svg {
  width: 22px;
  height: 22px;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: #4A4A4A;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial-card__initials {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #E8ECF4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1B3A5C;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D2D2D;
}

.testimonial-card__desc {
  font-size: 0.75rem;
  color: #7A7A7A;
}

/* ============================================================
   PHOTO SECTION
   ============================================================ */
.photo-block {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.photo-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-block__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  padding: 1.5rem 2rem;
}

.photo-block__caption {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 768px) {
  .photo-block img {
    height: 420px;
  }
}

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(196, 150, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #C4963A;
}

.lead-magnet__icon svg {
  width: 24px;
  height: 24px;
}

.lead-magnet__form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.lead-magnet__input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid #E5DDD3;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #2D2D2D;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-magnet__input::placeholder {
  color: #9A9A9A;
}

.lead-magnet__input:focus {
  border-color: #1B3A5C;
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

.lead-magnet__disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #7A7A7A;
  text-align: center;
}

@media (min-width: 640px) {
  .lead-magnet__form {
    flex-direction: row;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta h2 {
  color: #fff;
  line-height: 1.3;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-top: 1.25rem;
}

.final-cta .btn {
  margin-top: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #F0EBE3;
  border-top: 1px solid #E5DDD3;
  padding: 3.5rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer__brand-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D2D2D;
}

.footer__brand-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #7A7A7A;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2D2D2D;
  margin-bottom: 1rem;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: #5A5A5A;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #1B3A5C;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5DDD3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.75rem;
  color: #7A7A7A;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__meta span,
.footer__meta a {
  font-size: 0.75rem;
  color: #7A7A7A;
  transition: color 0.2s ease;
}

.footer__meta a:hover {
  color: #1B3A5C;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   CREDENTIALS / BACKGROUND
   ============================================================ */
.credentials__heading {
  text-align: center;
  margin-bottom: 1rem;
}

.credentials__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.7;
}

.credentials__experience {
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background-color: #FAF8F5;
  border-radius: 1rem;
  border: 1px solid #E5DDD3;
}

.credentials__stat {
  font-size: 0.9375rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.credentials__stat:last-of-type {
  margin-bottom: 1rem;
}

.credentials__athlete {
  font-size: 0.9375rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #E5DDD3;
  font-style: italic;
}

.credentials-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.credentials-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5A5A5A;
  background-color: #FAF8F5;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #E5DDD3;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.pricing-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #E5DDD3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
  border-color: #1B3A5C;
  border-width: 2px;
}

.pricing-card__badge {
  background-color: #1B3A5C;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem;
}

.pricing-card__header {
  padding: 2rem 2rem 0;
}

.pricing-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A7A7A;
}

.pricing-card__price {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__amount {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1;
}

.pricing-card__period {
  font-size: 1rem;
  color: #7A7A7A;
  font-weight: 400;
}

.pricing-card__commitment {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #9A9A9A;
}

.pricing-card__body {
  padding: 1.5rem 2rem;
  flex: 1;
}

/* extra vertical spacing between paragraphs inside pricing cards */
.pricing-card__body p + p {
  margin-top: 1rem;
}

/* small gap between a paragraph and the following list in pricing cards */
.pricing-card__body p + ul {
  margin-top: 0.5rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-card__features li svg {
  width: 16px;
  height: 16px;
  color: #1B3A5C;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-card__features li span {
  font-size: 0.875rem;
  color: #4A4A4A;
  line-height: 1.5;
}

.pricing-card__ideal {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E5DDD3;
  font-size: 0.8125rem;
  color: #7A7A7A;
  line-height: 1.6;
  font-style: italic;
}

.pricing-card__cta {
  margin: 0 2rem 2rem;
  text-align: center;
  width: calc(100% - 4rem);
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  background-color: #F0EBE3;
  border-radius: 1rem;
}

.pricing-note p {
  font-size: 0.875rem;
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================================
   ABOUT HERO HEADING (single-page)
   ============================================================ */
.about-hero__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero__photo {
  border-radius: 1rem;
  overflow: hidden;
}

.about-hero__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-hero__intro {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.about-story p {
  color: #4A4A4A;
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.credentials__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.credentials__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #C4963A;
  flex-shrink: 0;
  margin-top: 0.625rem;
}

.credentials__text {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.about-philosophy-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.about-philosophy-card h3 {
  margin-bottom: 1rem;
}

.about-philosophy-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .about-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-hero__photo img {
    height: 500px;
  }
}

/* ============================================================
   BOOK A CALL PAGE
   ============================================================ */
.call-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.call-steps__num {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(27, 58, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B3A5C;
  margin-top: 0.125rem;
}

.call-steps__text {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.book-call__badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1B3A5C;
  margin-bottom: 0.5rem;
}

.book-call__subhead {
  margin-bottom: 1.5rem;
}

.book-call__grid {
  margin-bottom: 4rem;
}

.calendar-embed__label {
  font-weight: 500;
  color: #2D2D2D;
  margin-bottom: 1rem;
  text-align: center;
}

.calendar-embed__fallback {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #5A5A5A;
}

.calendar-embed__fallback a {
  color: #1B3A5C;
  text-decoration: underline;
}

.calendar-embed__fallback a:hover {
  text-decoration: none;
}

.calendar-embed {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 3rem;
  border: 1px solid #E5DDD3;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.calendar-embed__placeholder {
  font-size: 0.875rem;
  color: #9A9A9A;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #E5DDD3;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.open {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2D2D2D;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: #1B3A5C;
}

.faq-trigger svg {
  width: 16px;
  height: 16px;
  color: #7A7A7A;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================================
   REASSURANCE STRIP
   ============================================================ */
.reassurance__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #4A4A4A;
  line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }
.reveal-delay-4 { transition-delay: 480ms; }

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: #1B3A5C;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1.5rem;
  background: rgba(27, 58, 92, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.sticky-cta .btn--primary {
  background-color: #fff;
  color: #1B3A5C;
}

.sticky-cta .btn--primary:hover {
  background-color: #F0EBE3;
  color: #1B3A5C;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-page main {
  padding: 2rem 0 5rem;
}

.article-header {
  margin-bottom: 2.5rem;
}

.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5A5A5A;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.article-header__back:hover {
  color: #1B3A5C;
}

.article-header__title {
  margin-bottom: 0.75rem;
}

.article-header__meta {
  font-size: 0.875rem;
  color: #7A7A7A;
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #4A4A4A;
}

.article-body li p {
  margin-bottom: 0.5rem;
}

.article-body hr {
  border: none;
  border-top: 1px solid #E5DDD3;
  margin: 2.5rem 0;
}

.article-body a {
  color: #1B3A5C;
  text-decoration: underline;
}

.article-body a:hover {
  text-decoration: none;
}

.article-body strong {
  font-weight: 600;
  color: #2D2D2D;
}

.article-body em {
  font-style: italic;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5DDD3;
  font-size: 0.9375rem;
  color: #5A5A5A;
}

.article-footer a {
  color: #1B3A5C;
  text-decoration: underline;
}

.article-footer a:hover {
  text-decoration: none;
}

/* Articles listing */
.articles-list {
  padding: 2rem 0 5rem;
}

.articles-list__title {
  margin-bottom: 2rem;
}

.article-card {
  display: block;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid #E5DDD3;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(27, 58, 92, 0.2);
}

.article-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-card__meta {
  font-size: 0.8125rem;
  color: #7A7A7A;
  margin-bottom: 0.75rem;
}

.article-card__desc {
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.6;
}

/* ============================================================
   SUBSTACK RSS FEED EMBED
   ============================================================ */
 
/* Section wrapper — sits inside .container like everything else */
.substack-section {
  padding: 5rem 0 6rem;
}
 
.substack-section__header {
  margin-bottom: 2.5rem;
}
 
.substack-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1B3A5C;
  margin-bottom: 0.5rem;
}
 
.substack-section__heading {
  margin-bottom: 0.75rem;
}
 
.substack-section__sub {
  color: #5A5A5A;
  font-size: 1rem;
  line-height: 1.7;
}
 
/* Grid — constrained by the parent .container */
.substack-feed-embed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
 
@media (min-width: 640px) {
  .substack-feed-embed {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
 
@media (min-width: 1024px) {
  .substack-feed-embed {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
 
/* Card — mirrors .article-card */
.substack-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #E5DDD3;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
 
.substack-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(27, 58, 92, 0.2);
}
 
.substack-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
 
.substack-card__body {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
 
.substack-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #7A7A7A;
  margin: 0;
}
 
.substack-card__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.3;
  margin: 0;
}
 
.substack-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
 
.substack-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1B3A5C;
}
 
/* Loading / error / empty states */
.substack-skeleton,
.substack-error,
.substack-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #7A7A7A;
}
 
.substack-error a {
  color: #1B3A5C;
  text-decoration: underline;
}
 
.substack-error a:hover {
  text-decoration: none;
}
 
/* "View all" link below the feed */
.substack-feed__more {
  margin-top: 2.5rem;
  text-align: center;
}
 
.substack-feed__more a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1B3A5C;
  text-decoration: underline;
}
 
.substack-feed__more a:hover {
  text-decoration: none;
}