/*
Theme Name: Full Circle Coaching
Theme URI: https://fullcirclecoachingandconsulting.com
Author: Happy Camper Productions
Author URI: https://theevergreenapp.com
Description: Premium WordPress block theme for Full Circle Coaching & Consulting. Dark Prestige aesthetic — Dark Navy, Forest Green, and Warm Gold. Built for Canadian chiropractic business coaching.
Version: 1.2.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: full-circle-coaching
*/

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --fc-navy:   #1E3A5F;
  --fc-green:  #679146;
  --fc-gold:   #D4A84B;
  --fc-sage:   #F0F4EC;
  --fc-coral:  #E07A5F;
  --fc-blue:   #2567AF;
  --fc-white:  #FFFFFF;
  --fc-transition: 0.28s ease;
}

/* =============================================
   GLOBAL RESETS & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wp-site-blocks > footer {
  margin-block-start: 0;
}

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

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background-color: var(--fc-navy);
  position: sticky;
  top: 0;
  z-index: 200;
}

/* Nav menu links */
.wp-block-navigation a {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--fc-transition), border-color var(--fc-transition);
}

.wp-block-navigation a:hover {
  color: var(--fc-gold) !important;
  border-bottom-color: var(--fc-gold);
}

/* Site title in nav */
.wp-block-site-title a {
  color: var(--fc-white) !important;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Header logo — white pill so green/blue logo pops on navy */
.site-header-inner .wp-block-image {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 5px 10px;
  line-height: 0;
  display: flex;
  align-items: center;
}

.site-header-inner .wp-block-image img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

/* Nav CTA button override */
.nav-cta .wp-block-button__link {
  background-color: var(--fc-gold) !important;
  color: var(--fc-navy) !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2rem !important;
  padding: 0.65rem 1.4rem !important;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.nav-cta .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 168, 75, 0.4);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--fc-navy);
  padding: 5.5rem 0 5.5rem;
}

/* Decorative floating gold ring */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 75, 0.12);
  animation: floatRing 18s ease-in-out infinite;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(103, 145, 70, 0.18);
  animation: floatRing 24s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatRing {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(4deg); }
  66%       { transform: translateY(10px) rotate(-3deg); }
}

.hero-eyebrow {
  display: inline-block;
  background-color: rgba(103, 145, 70, 0.25);
  color: var(--fc-gold) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  border: 1px solid rgba(212, 168, 75, 0.3);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-headline {
  color: var(--fc-white) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  line-height: 1.1 !important;
  animation: fadeUp 0.7s ease 0.25s both;
}

.hero-tagline {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  color: var(--fc-gold) !important;
  line-height: 1.3 !important;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-subtext {
  color: rgba(240, 244, 236, 0.82) !important;
  line-height: 1.7 !important;
  max-width: 580px;
  animation: fadeUp 0.7s ease 0.55s both;
}

.hero-cta-group {
  animation: fadeUp 0.7s ease 0.7s both;
}

.hero-primary-btn .wp-block-button__link {
  background-color: var(--fc-gold) !important;
  color: var(--fc-navy) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2rem !important;
  padding: 1rem 2.25rem !important;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.hero-primary-btn .wp-block-button__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.45);
}

.hero-secondary-btn .wp-block-button__link {
  background-color: transparent !important;
  color: rgba(240, 244, 236, 0.85) !important;
  border: 1px solid rgba(240, 244, 236, 0.35) !important;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: 2rem !important;
  padding: 1rem 2rem !important;
  transition: color var(--fc-transition), border-color var(--fc-transition), background-color var(--fc-transition);
}

.hero-secondary-btn .wp-block-button__link:hover {
  background-color: rgba(240, 244, 236, 0.1) !important;
  color: var(--fc-white) !important;
  border-color: rgba(240, 244, 236, 0.6) !important;
}

.hero-trust {
  color: rgba(240, 244, 236, 0.5) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  animation: fadeUp 0.7s ease 0.85s both;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background-color: var(--fc-sage);
  padding: 5rem 0;
}

.services-label {
  color: var(--fc-green) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-headline {
  color: var(--fc-navy) !important;
  font-weight: 800 !important;
}

.service-card {
  background-color: var(--fc-white);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  border-top: 3px solid var(--fc-green);
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(103, 145, 70, 0.12);
  margin-bottom: 1.1rem;
}

/* =============================================
   ABOUT / DR. TOM SECTION
   ============================================= */
.about-section {
  background-color: var(--fc-white);
  padding: 5.5rem 0;
}

.about-section .wp-block-media-text__content {
  padding: 2rem 2.5rem;
}

.about-label {
  color: var(--fc-green) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-headline {
  color: var(--fc-navy) !important;
  font-weight: 800 !important;
}

.about-stat {
  border-left: 3px solid var(--fc-gold);
  padding-left: 1.1rem;
  margin: 0.75rem 0;
}

.about-stat-number {
  color: var(--fc-navy) !important;
  font-weight: 800 !important;
  font-size: 2rem !important;
  line-height: 1.1 !important;
}

.about-stat-label {
  color: rgba(30, 58, 95, 0.65) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
}

.about-image-placeholder {
  background: linear-gradient(145deg, var(--fc-navy) 0%, #2d5a8e 50%, var(--fc-green) 100%);
  border-radius: 12px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 75, 0.3);
}

/* =============================================
   RESULTS / SOCIAL PROOF SECTION
   ============================================= */
.results-section {
  background-color: var(--fc-navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(103, 145, 70, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.results-label {
  color: var(--fc-gold) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.results-headline {
  color: var(--fc-white) !important;
  font-weight: 800 !important;
}

.stat-block {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 75, 0.2);
  border-radius: 10px;
  background-color: rgba(255,255,255,0.04);
  transition: border-color var(--fc-transition), background-color var(--fc-transition);
}

.stat-block:hover {
  border-color: rgba(212, 168, 75, 0.45);
  background-color: rgba(255,255,255,0.07);
}

.stat-number {
  color: var(--fc-gold) !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  line-height: 1.1 !important;
}

.stat-label {
  color: rgba(240, 244, 236, 0.7) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.testimonial-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 168, 75, 0.15);
  border-left: 3px solid var(--fc-gold);
  border-radius: 10px;
  padding: 2rem 2.25rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  color: rgba(240, 244, 236, 0.92) !important;
  font-size: 1.15rem !important;
  line-height: 1.65 !important;
}

.testimonial-author {
  color: var(--fc-gold) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* =============================================
   PILLARS SECTION
   ============================================= */
.pillars-section {
  background-color: var(--fc-sage);
  padding: 5rem 0;
}

.pillars-label {
  color: var(--fc-green) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pillars-headline {
  color: var(--fc-navy) !important;
  font-weight: 800 !important;
}

/* Legacy card styles (kept for safety) */
.pillar-card {
  background-color: var(--fc-white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border-top: 3px solid transparent;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.pillar-card.vision  { border-top-color: #7BA352; }
.pillar-card.focus   { border-top-color: #3A8FB7; }
.pillar-card.systems { border-top-color: #C4883A; }
.pillar-card.team    { border-top-color: #9B7BB8; }

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.1);
}

/* =============================================
   PILLAR HORIZONTAL STRIPES (new layout)
   ============================================= */
.pillar-stripes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.pillar-stripe {
  display: flex;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pillar-stripe:hover {
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.12);
  transform: translateY(-2px);
}

/* Left accent color bar */
.pillar-stripe-accent {
  width: 6px;
  min-height: 100%;
  align-self: stretch;
  flex-shrink: 0;
}

.pillar-stripe.vision  .pillar-stripe-accent { background-color: #7BA352; }
.pillar-stripe.focus   .pillar-stripe-accent { background-color: #3A8FB7; }
.pillar-stripe.systems .pillar-stripe-accent { background-color: #C4883A; }
.pillar-stripe.team    .pillar-stripe-accent { background-color: #9B7BB8; }

/* Ghost number */
.pillar-stripe-number {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(30, 58, 95, 0.055);
  padding: 1.75rem 1.5rem 1.75rem 2.25rem;
  flex-shrink: 0;
  width: 130px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.04em;
}

/* Text content */
.pillar-stripe-content {
  flex: 1;
  padding: 2rem 2.5rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.pillar-stripe-title {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #1E3A5F !important;
  line-height: 1.2;
  margin: 0 !important;
  flex: 0 0 220px;
}

.pillar-stripe-body {
  font-size: 1rem;
  color: rgba(30, 58, 95, 0.68) !important;
  line-height: 1.7;
  margin: 0 !important;
  flex: 1;
}

@media (max-width: 768px) {
  .pillar-stripe {
    flex-wrap: wrap;
  }
  .pillar-stripe-number {
    width: 80px;
    font-size: 3.5rem;
    padding: 1.5rem 1rem;
  }
  .pillar-stripe-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.5rem 1.5rem 1.5rem 0.5rem;
  }
  .pillar-stripe-title {
    flex: none;
  }
}

.pillar-number {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  color: rgba(30, 58, 95, 0.1) !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem;
}

/* =============================================
   RESOURCES SECTION
   ============================================= */
.resources-section {
  background-color: var(--fc-white);
  padding: 5rem 0;
}

.resources-label {
  color: var(--fc-green) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.resource-card {
  background-color: var(--fc-sage);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(103, 145, 70, 0.15);
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.1);
}

.resource-badge {
  display: inline-block;
  background-color: var(--fc-green);
  color: var(--fc-white) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.resource-btn .wp-block-button__link {
  background-color: var(--fc-navy) !important;
  color: var(--fc-white) !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2rem !important;
  padding: 0.75rem 1.5rem !important;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.resource-btn .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.3);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--fc-green) 0%, #4a6e31 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: floatRing 20s ease-in-out infinite;
  pointer-events: none;
}

.cta-headline {
  color: var(--fc-white) !important;
  font-weight: 800 !important;
  text-align: center;
}

.cta-tagline {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  color: var(--fc-gold) !important;
  text-align: center;
}

.cta-subtext {
  color: rgba(255,255,255,0.85) !important;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-main-btn .wp-block-button__link {
  background-color: var(--fc-gold) !important;
  color: var(--fc-navy) !important;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2rem !important;
  padding: 1.1rem 2.75rem !important;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
}

.cta-main-btn .wp-block-button__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.cta-disclaimer {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.78rem !important;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer-inner {
  background-color: var(--fc-navy);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-logo {
  color: var(--fc-white) !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  color: var(--fc-gold) !important;
  font-size: 0.9rem !important;
}

.footer-label {
  color: rgba(240, 244, 236, 0.5) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(240, 244, 236, 0.7) !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--fc-transition);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--fc-gold) !important;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1) !important;
  margin: 2rem 0 1.5rem;
}

.footer-copyright {
  color: rgba(240, 244, 236, 0.4) !important;
  font-size: 0.78rem !important;
}

/* =============================================
   EQUAL CARD LAYOUTS
   ============================================= */
.equal-cards > .wp-block-column {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}

.equal-cards > .wp-block-column > .wp-block-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equal-cards .cta-bottom {
  margin-top: auto;
  justify-content: flex-start;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   SPLIT-SCREEN HERO PHOTO COLUMN
   ============================================= */

/* The columns wrapper — remove default gap, fill viewport width */
.hero-split-columns {
  gap: 0 !important;
}

/* Left text column: constrained padding, flex column layout */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 2.5rem;
  background-color: var(--fc-navy);
}

/* Right photo column: stretch to fill full height of hero */
.hero-photo-col {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 0 !important;
  /* Ensure the column div itself stretches */
  align-self: stretch !important;
}

/* The wp:cover block inside the photo column */
.hero-photo-col .wp-block-cover {
  min-height: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-photo-col .wp-block-cover__image-background {
  object-position: center 15% !important;
  height: 100% !important;
  width: 100% !important;
}

/* Ensure hero columns container is flex-aligned */
.hero-columns.wp-block-columns {
  align-items: stretch !important;
}

/* Left-edge gradient fade: blends the photo into the Navy text column */
.hero-photo-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #1E3A5F 0%, rgba(30, 58, 95, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* =============================================
   ABOUT SECTION SPLIT (full-bleed photo + text)
   ============================================= */
.about-split-columns {
  gap: 0 !important;
}

/* Photo column — full bleed with cover block fill */
.about-image-col {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 0 !important;
}

.about-image-col .wp-block-cover {
  min-height: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0;
  padding: 0 !important;
}

.about-image-col .wp-block-cover__image-background {
  object-position: center 10% !important;
}

/* Right-edge gradient fade: blends photo into white content column */
.about-image-col::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Text content column */
.about-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 2.5rem 4.5rem 4rem;
  background-color: var(--fc-white);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background-color: #152d4a;
}

/* Force trust bar flex items (WP paragraphs) to be inline / not stretch to full width */
.trust-bar .wp-block-group > .wp-block-paragraph {
  display: inline !important;
  width: auto !important;
  flex-shrink: 0;
  margin: 0 !important;
}

.trust-bar-stat {
  text-align: center;
  padding: 2rem 1.5rem;
}

.trust-stat-number {
  color: var(--fc-gold) !important;
  font-weight: 800 !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  line-height: 1 !important;
  display: block;
}

.trust-stat-label {
  color: rgba(240, 244, 236, 0.7) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  display: block;
}

/* =============================================
   RESULTS — CSS GRID STATS ROW
   ============================================= */
.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 3rem;
}

.results-stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(212, 168, 75, 0.15);
}

.results-stat-item:last-child {
  border-right: none;
}

.results-stat-num {
  display: block;
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--fc-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}

.results-stat-lbl {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(240, 244, 236, 0.7);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .results-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-stat-item:nth-child(2) {
    border-right: none;
  }
  .results-stat-item:nth-child(1),
  .results-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(212, 168, 75, 0.15);
  }
}

/* =============================================
   BLOG INDEX — POST CARDS
   ============================================= */
.blog-hero-section {
  position: relative;
}

.blog-card {
  transition: transform var(--fc-transition), box-shadow var(--fc-transition);
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.14);
}

.blog-card .wp-block-post-title a {
  color: var(--fc-navy) !important;
  text-decoration: none;
}

.blog-card .wp-block-post-title a:hover {
  color: var(--fc-green) !important;
}

.blog-card .wp-block-read-more {
  color: var(--fc-green) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-post-hero {
  background-color: var(--fc-navy);
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-content-area {
  max-width: 760px;
  margin: 0 auto;
}

.post-content-area h2,
.post-content-area h3 {
  color: var(--fc-navy);
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content-area p {
  line-height: 1.8;
  color: rgba(30, 58, 95, 0.85);
}

.post-content-area a {
  color: var(--fc-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-content-area blockquote {
  border-left: 4px solid var(--fc-gold);
  padding-left: 1.5rem;
  margin-left: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fc-navy);
  opacity: 0.85;
}

.post-author-bio {
  background-color: var(--fc-sage);
  border-left: 4px solid var(--fc-green);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.5rem;
}

/* =============================================
   COACH TEAM GRID
   ============================================= */

.team-section {
  overflow: hidden;
}

.team-section .wp-block-columns {
  gap: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.team-section .wp-block-columns:last-child {
  margin-bottom: 0 !important;
}

.coach-card {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35) !important;
}

/* Photo cover fills the card top */
.coach-card .wp-block-cover {
  border-radius: 0 !important;
  overflow: hidden;
  background-color: #1E3A5F !important;
}

.coach-card .wp-block-cover img {
  object-fit: cover;
  object-position: center top !important;
  transition: transform 0.4s ease;
}


.coach-card:hover .wp-block-cover img {
  transform: scale(1.04);
}

/* Text area inside card */
.coach-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.coach-role-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-gold);
  margin-bottom: 0.35rem;
}

/* =============================================
   AS FEATURED IN — LOGO BAR
   ============================================= */
.featured-in-bar {
  background-color: #0C1E2E;
  padding: 2.5rem 0;
  overflow: hidden;
}

.featured-in-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.featured-in-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 75, 0.6);
  margin: 0 0 1.75rem 0;
}

.featured-in-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

/* ALL logo items — greyscale with detail preserved */
.fi-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fi-logo-item img {
  display: block;
  object-fit: contain;
  /* Greyscale + brighten so detail is visible on dark bg */
  filter: grayscale(100%) brightness(1.8) contrast(0.75);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.fi-logo-item:hover img {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
}

/* Square podcast / channel thumbnails — uniform 54px height */
.fi-logo-podcast img {
  height: 54px;
  width: 54px;
  border-radius: 10px;
  object-fit: cover;
}

/* YouTube round thumbnail */
.fi-logo-yt img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: cover;
}

/* Wide horizontal logos */
.fi-logo-wide img {
  height: 42px;
  width: auto;
  max-width: 140px;
}

/* =============================================
   BOLD MANIFESTO SECTION
   ============================================= */
.manifesto-section {
  background-color: #0F1E2D;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2.5rem;
  text-align: center;
  color: rgba(240, 244, 236, 0.82); /* default fallback for all children */
}

/* Force dark-section text to be light regardless of WP theme defaults */
.manifesto-section,
.manifesto-section * {
  color: inherit;
}
.manifesto-section .wp-block-html {
  color: rgba(240, 244, 236, 0.82);
}

.manifesto-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fc-gold);
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.25);
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  margin: 0 0 2.5rem 0;
}

.manifesto-headline {
  font-size: clamp(2.6rem, 5vw, 4.25rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  margin: 0 0 2rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(240, 244, 236, 0.72) !important;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.manifesto-three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 5rem;
}

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

.manifesto-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 75, 0.12);
  border-top: 2px solid rgba(212, 168, 75, 0.5);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.manifesto-col:hover {
  background: rgba(255, 255, 255, 0.07);
  border-top-color: var(--fc-gold);
}

.manifesto-col-icon {
  margin-bottom: 1.25rem;
}

.manifesto-col-title {
  font-size: 1.2rem;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.3;
  margin: 0 0 0.85rem 0;
}

.manifesto-col-body {
  font-size: 0.975rem;
  color: rgba(240, 244, 236, 0.68) !important;
  line-height: 1.75;
  margin: 0;
}

.manifesto-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-manifesto-cta {
  display: inline-block;
  background-color: var(--fc-gold);
  color: var(--fc-navy) !important;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.15rem 3rem;
  border-radius: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-manifesto-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 168, 75, 0.4);
}

.manifesto-cta-note {
  font-size: 0.78rem;
  color: rgba(240, 244, 236, 0.4);
  letter-spacing: 0.04em;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works-section {
  background-color: #FFFFFF;
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 9rem 2.5rem;
  text-align: center;
}

.hiw-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fc-green);
  margin: 0 0 1.25rem 0;
}

.hiw-headline {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--fc-navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(30, 58, 95, 0.65);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  margin-bottom: 0;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 3.25rem;
  left: calc(33.33% / 2 + 3.25rem / 2);
  right: calc(33.33% / 2 + 3.25rem / 2);
  height: 2px;
  background: linear-gradient(to right, var(--fc-green), var(--fc-gold));
  z-index: 0;
}

@media (max-width: 768px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hiw-steps::before { display: none; }
}

.hiw-step {
  padding: 0 2rem;
  position: relative;
}

.hiw-step:first-child { padding-left: 0; }
.hiw-step:last-child  { padding-right: 0; }

.hiw-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--fc-navy);
  color: var(--fc-gold);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.hiw-step-connector { display: none; }

.hiw-step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fc-navy);
  line-height: 1.3;
  margin: 0 0 0.85rem 0;
}

.hiw-step-body {
  font-size: 1rem;
  color: rgba(30, 58, 95, 0.7);
  line-height: 1.75;
  margin: 0;
}

.btn-hiw-cta {
  display: inline-block;
  background-color: var(--fc-navy);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.15rem 3rem;
  border-radius: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hiw-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.25);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 768px) {
  .hero-section {
    padding: 3.5rem 0 3.5rem;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }

  /* Stack split columns on mobile */
  .hero-split-columns .wp-block-column,
  .about-split-columns .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  .hero-photo-col {
    min-height: 320px;
    order: -1; /* photo above text on mobile */
  }

  /* Remove gradient fades on mobile (stacked) */
  .hero-photo-col::before,
  .about-image-col::after {
    display: none;
  }

  .hero-text-col {
    padding: 3rem 1.5rem;
  }

  .about-content-col {
    padding: 3rem 1.5rem;
  }

  .about-image-placeholder {
    min-height: 260px;
  }

  .trust-bar-stat {
    padding: 1.5rem 1rem;
  }

  .results-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stack coach cards to 1 per row on mobile */
  .team-section .wp-block-columns {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .team-section .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}
