/* ============================================================
   PCCC Phase C — Peregrine Design System
   Tokens: #1c2833 (Peregrine family) | #293A4A (PCCC accent) | #FF6C2C (CTA)
   No gradients. No purple. Verbatim content from live site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --peregrine-family: #1c2833;
  --pccc-accent:      #293A4A;
  --pccc-accent-mid:  #3d556a;
  --pccc-cta:         #FF6C2C;
  --pccc-cta-dark:    #e05a1a;
  --white:            #ffffff;
  --light-bg:         #F4F7FB;
  --body-text:        #677294;
  --text-dark:        #293A4A;
  --text-heading:     #1c2833;
  --border:           #dfe3ee;
  --card-radius:      12px;
  --btn-radius:       6px;
  --nav-h:            72px;

  /* Spacing */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-6:  24px;
  --s-8:  32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;

  /* Type */
  --text-xs:   clamp(0.75rem, 0.70rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.80rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-md:   clamp(1.125rem, 1.00rem + 0.625vw, 1.375rem);
  --text-lg:   clamp(1.375rem, 1.20rem + 0.875vw, 1.75rem);
  --text-xl:   clamp(1.75rem, 1.50rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2.25rem, 1.875rem + 1.875vw, 3rem);
  --text-3xl:  clamp(2.5rem, 2.00rem + 2.50vw, 3.5rem);

  /* Shadows */
  --shadow-base:      0 1px 3px rgba(28,40,51,0.08), 0 1px 2px rgba(28,40,51,0.05);
  --shadow-elevated:  0 4px 12px rgba(28,40,51,0.12), 0 2px 4px rgba(28,40,51,0.06);
  --shadow-prominent: 0 10px 24px rgba(28,40,51,0.14), 0 4px 8px rgba(28,40,51,0.06);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  color: var(--body-text);
  background: var(--white);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--peregrine-family);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 40px);
  transition: box-shadow 0.2s ease;
}
.nav-shell.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo { height: 36px; width: auto; }
.nav-logo-scroll { display: none; }
.nav-shell.scrolled .nav-logo-default { display: none; }
.nav-shell.scrolled .nav-logo-scroll  { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s ease;
}
.nav-link:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  background: var(--pccc-cta);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.1s ease;
}
.nav-cta:hover { background: var(--pccc-cta-dark); }
.nav-cta:active { transform: translateY(1px) scale(0.98); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-2);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.2s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--peregrine-family);
  padding: var(--s-6);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: var(--s-4) 0;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .nav-cta {
  margin-top: var(--s-4);
  width: 100%;
  justify-content: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  background: var(--pccc-cta);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--pccc-cta-dark); }
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-primary-lg {
  padding: 14px 36px;
  font-size: var(--text-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 27px;
  border-radius: var(--btn-radius);
  border: 2px solid var(--pccc-cta);
  background: transparent;
  color: var(--pccc-cta);
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  background: var(--pccc-cta);
  color: #fff;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 11px 27px;
  border-radius: var(--btn-radius);
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  border-top: 3px solid var(--pccc-cta);
  box-shadow: var(--shadow-base);
  padding: var(--s-8);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: var(--s-6);
}
.card-heading {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}
.card-body {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--pccc-cta);
  transition: gap 0.15s ease;
}
.card-link:hover { gap: var(--s-3); }

/* ── Section headers ──────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  margin-bottom: var(--s-3);
}
.section-headline {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
}
.section-subtext {
  font-size: var(--text-md);
  color: var(--body-text);
  line-height: 1.6;
  max-width: 600px;
}
.section-header-centered {
  text-align: center;
}
.section-header-centered .section-subtext {
  margin-left: auto;
  margin-right: auto;
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: var(--s-24) 0;
}
.section-compact {
  padding: var(--s-16) 0;
}
.section-light {
  background: var(--light-bg);
}
.section-dark {
  background: var(--peregrine-family);
  color: #fff;
}
.section-dark .section-headline { color: #fff; }
.section-dark .section-subtext  { color: rgba(255,255,255,0.7); }
.section-dark .section-eyebrow  { color: var(--pccc-cta); }

.section-mid {
  background: var(--pccc-accent);
  color: #fff;
}
.section-mid .section-headline { color: #fff; }
.section-mid .section-subtext  { color: rgba(255,255,255,0.75); }
.section-mid .section-eyebrow  { color: var(--pccc-cta); }

/* ── Grid layouts ─────────────────────────────────────────── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}
.split-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.split-60-40 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-12);
  align-items: center;
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: var(--pccc-accent);
  padding: var(--s-16) 0;
  text-align: center;
}
.page-hero-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  margin-top: var(--s-3);
}

/* ── Home Hero ────────────────────────────────────────────── */
.home-hero {
  background: var(--pccc-accent);
  padding: var(--s-24) 0 0;
  overflow: hidden;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.home-hero-content {
  padding-bottom: var(--s-24);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  background: rgba(255,108,44,0.12);
  border: 1px solid rgba(255,108,44,0.25);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: var(--s-6);
}
.home-hero h1 {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
}
.home-hero-subtext {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--s-8);
}
.hero-ctas {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.home-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-hero-image img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

/* ── Authority strip ──────────────────────────────────────── */
.authority-strip {
  background: var(--peregrine-family);
  padding: var(--s-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.authority-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.authority-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.authority-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pccc-cta);
}

/* ── Portfolio section ────────────────────────────────────── */
.portfolio-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border-top: 3px solid var(--pccc-cta);
  box-shadow: var(--shadow-base);
  padding: var(--s-8);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.portfolio-card-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: var(--s-6);
}
.portfolio-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  background: rgba(255,108,44,0.10);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: var(--s-3);
}

/* ── Reviews Marquee ──────────────────────────────────────── */
.reviews-section {
  background: var(--pccc-cta);
  padding: var(--s-16) 0;
  overflow: hidden;
}
.reviews-section .section-headline { color: #fff; }
.reviews-section .section-subtext  { color: rgba(255,255,255,0.8); }
.reviews-header {
  text-align: center;
  margin-bottom: var(--s-12);
  padding: 0 var(--s-6);
}
.reviews-header .section-headline { color: #fff; }
.marquee-track {
  display: flex;
  gap: var(--s-6);
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: var(--s-6) var(--s-8);
  width: 360px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.review-card-body {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.review-card-body em {
  font-style: normal;
  color: var(--text-heading);
}
.review-card-footer {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.2;
}
.review-org {
  font-size: var(--text-xs);
  color: var(--body-text);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--light-bg);
  padding: var(--s-24) 0;
}
.cta-box {
  background: var(--pccc-cta);
  border-radius: var(--card-radius);
  padding: var(--s-12) var(--s-8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-3);
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  margin-bottom: var(--s-6);
}
.cta-box .btn-outline-white { border-color: rgba(255,255,255,0.6); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--peregrine-family);
  padding: var(--s-16) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--s-4);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: var(--s-6);
}
.footer-peregrine-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 5px 10px;
}
.footer-col-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  margin-bottom: var(--s-4);
}
.footer-link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s-2);
  transition: color 0.15s ease;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-contact-item {
  display: flex;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s-3);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-mahiri {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ── Pricing cards ────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border-top: 3px solid var(--pccc-cta);
  box-shadow: var(--shadow-base);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.pricing-card-header {
  background: var(--pccc-accent);
  padding: var(--s-6) var(--s-6) var(--s-4);
}
.pricing-card-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card-body {
  padding: var(--s-6);
}
.pricing-amount {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.pricing-period {
  font-size: var(--text-xs);
  color: var(--body-text);
  margin-bottom: var(--s-6);
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--body-text);
  margin-bottom: var(--s-2);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}
.pricing-check {
  color: var(--pccc-cta);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Team cards ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-6);
}
.team-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-base);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.team-card-info {
  padding: var(--s-4);
  border-top: 3px solid var(--pccc-cta);
}
.team-card-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.team-card-role {
  font-size: var(--text-xs);
  color: var(--pccc-cta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-2);
}
.team-card-bio {
  font-size: var(--text-xs);
  color: var(--body-text);
  line-height: 1.5;
}

/* ── History timeline ─────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--s-8);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-entry {
  position: relative;
  margin-bottom: var(--s-12);
}
.timeline-entry::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s-8) - 4px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pccc-cta);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--pccc-cta);
}
.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  margin-bottom: var(--s-2);
}
.timeline-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-2);
  line-height: 1.3;
}
.timeline-body {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.7;
}
.timeline-image {
  max-width: 220px;
  border-radius: 6px;
  margin-top: var(--s-3);
}

/* ── Contact form ─────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--s-4);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--s-2);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.15s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--pccc-cta);
  box-shadow: 0 0 0 3px rgba(255,108,44,0.12);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── Info box ─────────────────────────────────────────────── */
.info-box {
  background: var(--light-bg);
  border-radius: var(--card-radius);
  padding: var(--s-8);
  border-left: 4px solid var(--pccc-cta);
}
.info-box h3 {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-4);
}
.info-item {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.5;
}
.info-item strong { color: var(--text-heading); }

/* ── Training cards ───────────────────────────────────────── */
.training-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border-top: 3px solid var(--pccc-cta);
  box-shadow: var(--shadow-base);
  padding: var(--s-6);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.training-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.training-card-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pccc-cta);
  margin-bottom: var(--s-2);
}
.training-card-name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-2);
  line-height: 1.3;
}
.training-card-desc {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.6;
}

/* ── Philosophy pillars ───────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}
.pillar {
  text-align: center;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,108,44,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}
.pillar-icon svg {
  width: 24px; height: 24px;
  stroke: var(--pccc-cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-2);
}
.pillar-body {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.6;
}

/* ── Ethics text ──────────────────────────────────────────── */
.ethics-content {
  max-width: 800px;
}
.ethics-content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-4);
  margin-top: var(--s-8);
}
.ethics-content h3:first-child { margin-top: 0; }
.ethics-content p, .ethics-content li {
  font-size: var(--text-base);
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: var(--s-3);
}
.ethics-content ol, .ethics-content ul {
  padding-left: var(--s-6);
}
.ethics-content ol li { list-style: decimal; }
.ethics-content ul li { list-style: disc; }
.ethics-content a {
  color: var(--pccc-cta);
  text-decoration: underline;
}

/* ── Legal ────────────────────────────────────────────────── */
.legal-link {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  border-left: 4px solid var(--pccc-cta);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
  transition: box-shadow 0.15s ease;
  margin-bottom: var(--s-4);
}
.legal-link:hover {
  box-shadow: var(--shadow-base);
  color: var(--pccc-cta);
}
.legal-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,108,44,0.10);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-icon svg {
  width: 18px; height: 18px;
  stroke: var(--pccc-cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── TLC offerings ────────────────────────────────────────── */
.tlc-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-base);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tlc-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}
.tlc-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.tlc-card-body {
  padding: var(--s-6);
  background: var(--white);
  border-top: 3px solid var(--pccc-cta);
}
.tlc-card-name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--s-2);
}
.tlc-card-desc {
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.6;
}

/* ── Hosting features ─────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--body-text);
  line-height: 1.5;
}
.feature-check {
  width: 20px;
  height: 20px;
  background: rgba(255,108,44,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg {
  width: 10px; height: 10px;
  stroke: var(--pccc-cta);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Cookie consent ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--peregrine-family);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--s-4) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  z-index: 999;
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
#cookie-accept {
  padding: 8px 20px;
  background: var(--pccc-cta);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .home-hero h1 { font-size: clamp(2rem, 2rem + 2vw, 3rem); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }

  .home-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .home-hero-content { padding-bottom: var(--s-8); }
  .home-hero-image { max-height: 280px; overflow: hidden; }
  .home-hero-image img { max-height: 280px; }

  .split-50, .split-60-40 { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .authority-strip-inner { gap: var(--s-4); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary-lg, .hero-ctas .btn-outline-white { width: 100%; justify-content: center; }
  .review-card { width: 300px; }
  .cta-box { padding: var(--s-8) var(--s-6); }
}

@media (max-width: 480px) {
  .section { padding: var(--s-16) 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* Ensure no gradient anywhere */
/* (No gradient properties used in any rule above) */
