/* ==========================================================================
   Primary Care Solutions: Brand Stylesheet v2
   Navy #104581 / Blue #2872ad / Green #479743 / Light Blue-Gray #9fb7be
   Montserrat throughout. Body copy always black.
   ========================================================================== */

:root {
  --pcs-navy: #104581;
  --pcs-navy-dark: #0b2f52;
  --pcs-blue: #2872ad;
  --pcs-green: #479743;
  --pcs-green-dark: #3a7d37;
  --pcs-gray: #9fb7be;
  --pcs-gray-light: #eef3f5;
  --pcs-bg: #ffffff;
  --pcs-text: #000000;
  --max-width: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 69, 129, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 69, 129, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 69, 129, 0.18);
  --ease: cubic-bezier(.22, .8, .28, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--pcs-text);
  background: var(--pcs-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--pcs-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--pcs-navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
p { margin: 0 0 16px; color: var(--pcs-text); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container { padding: 0 22px; } }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pcs-green);
  margin-bottom: 16px;
}

.section { padding: 108px 0; }
@media (max-width: 780px) { .section { padding: 64px 0; } }

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.01em;
}
.section-lede { color: var(--pcs-text); font-size: 18px; max-width: 760px; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-head .section-lede { margin: 0 auto; }

.bg-tint { background: var(--pcs-gray-light); }
.bg-navy { background: var(--pcs-navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.88); }
.bg-navy .eyebrow { color: #8fd98c; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }
.reveal-5 { transition-delay: .40s; }
.reveal-6 { transition-delay: .48s; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); }
.btn-primary { background: var(--pcs-green); color: #fff; box-shadow: 0 12px 26px rgba(71,151,67,.32); }
.btn-primary:hover { background: var(--pcs-green-dark); color: #fff; box-shadow: 0 16px 32px rgba(71,151,67,.4); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-outline-navy { background: transparent; border-color: var(--pcs-navy); color: var(--pcs-navy); }
.btn-outline-navy:hover { background: var(--pcs-navy); color: #fff; }
.btn-sm { padding: 11px 22px; font-size: 13.5px; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(16,69,129,.08);
  transition: box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(16,69,129,.10); }

.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; transition: padding .3s ease; }
.site-header.scrolled .nav-row { padding: 9px 0; }

.brand { display: flex; align-items: center; color: var(--pcs-navy); }
.brand img { height: 112px; width: auto; transition: height .3s ease; display: block; position: relative; top: -8px; }
.site-header.scrolled .brand img { height: 78px; top: -5px; }
.brand img.brand-logo-mobile { display: none; }
@media (max-width: 640px) {
  .brand img { height: 76px; top: -6px; }
  .site-header.scrolled .brand img { height: 58px; top: -4px; }
  .brand img.brand-logo-desktop { display: none; }
  .brand img.brand-logo-mobile { display: block; }
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; color: var(--pcs-navy); font-weight: 600; font-size: 15px; padding-bottom: 4px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--pcs-green); transition: right .25s var(--ease);
}
.nav-links a:hover { color: var(--pcs-green); text-decoration: none; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--pcs-green); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none; position: relative; z-index: 310; flex: none;
  background: none; border: none; cursor: pointer; padding: 11px;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--pcs-navy);
  margin: 5px auto; transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; top: 0; z-index: 250;
  background: #fff;
  padding: 110px 32px 48px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; margin: 0 0 28px; padding: 0; }
.mobile-nav li { border-bottom: 1px solid #eef1f2; }
.mobile-nav a { display: block; padding: 18px 4px; font-size: 20px; font-weight: 700; color: var(--pcs-navy); }
.mobile-nav a.active { color: var(--pcs-green); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline-navy { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .nav-cta { display: none; }
}

/* ---------- Photo slot component ---------- */

.photo-slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pcs-navy) 0%, var(--pcs-blue) 55%, #1f8a56 130%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.95);
  text-align: center;
}
.photo-slot::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.14), transparent 50%);
}
.photo-slot::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 14px);
}
.slot-content { position: relative; z-index: 2; padding: 0 26px; }
.slot-icon { width: 44px; height: 44px; margin: 0 auto 12px; opacity: .92; }
.slot-text { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.slot-sub { font-size: 12px; opacity: .78; margin-top: 5px; font-weight: 500; text-transform: none; letter-spacing: 0; }

.photo-slot.has-photo::before,
.photo-slot.has-photo::after { display: none; }
.photo-slot.has-photo { background: #eef3f5; }
.photo-slot img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block;
}

.ratio-square { aspect-ratio: 1 / 1; }
.ratio-portrait { aspect-ratio: 3 / 4; }
.ratio-landscape { aspect-ratio: 4 / 3; }
.ratio-wide { aspect-ratio: 16 / 9; }
.ratio-hero { aspect-ratio: 4 / 5; }
@media (max-width: 640px) { .ratio-hero { aspect-ratio: 4 / 3; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--pcs-navy) 0%, #0c356a 55%, #082747 100%);
  color: #fff;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  will-change: transform;
}
.hero-blob-a {
  right: -160px; top: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(71,151,67,.38) 0%, rgba(71,151,67,0) 70%);
}
.hero-blob-b {
  left: -140px; bottom: -180px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(159,183,190,.28) 0%, rgba(159,183,190,0) 70%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
  padding: 116px 0 64px;
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 48px; text-align: left; }
}

.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; text-transform: uppercase; margin-bottom: 22px; }
.hero .eyebrow { color: #8fd98c; }
.hero p.lede { color: rgba(255,255,255,.9); font-size: 19px; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; z-index: 2; }
.hero-media .photo-slot { box-shadow: var(--shadow-lg); }
.floating-stat {
  position: absolute; left: -20px; bottom: -26px; z-index: 3;
  background: #fff; color: var(--pcs-navy);
  border-radius: 16px; padding: 20px 26px;
  box-shadow: 0 22px 44px rgba(8,39,71,.35);
  min-width: 190px;
}
@media (max-width: 520px) { .floating-stat { left: 12px; bottom: -20px; padding: 16px 20px; min-width: 160px; } }
.floating-stat .num { font-size: 28px; font-weight: 800; color: var(--pcs-green); display: block; line-height: 1; }
.floating-stat .label { font-size: 12.5px; font-weight: 700; color: var(--pcs-navy); margin-top: 4px; }

.stats-band {
  position: relative;
  z-index: 5;
  padding: 88px 0 32px;
}
@media (max-width: 700px) { .stats-band { padding: 56px 0 24px; } }

#mission { padding-top: 56px; }
@media (max-width: 780px) { #mission { padding-top: 32px; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 18px; } }

.stat-block {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #eef1f2;
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-block:hover { transform: translateY(-6px); }
.stat-block .icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--pcs-gray-light); color: var(--pcs-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.stat-num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--pcs-navy);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pcs-gray);
}

/* ---------- Mission / Vision panels ---------- */

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

.pillar-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7edf0;
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-card .icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pcs-navy), var(--pcs-blue));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar-card h3 { text-transform: uppercase; font-size: 19px; letter-spacing: 0.04em; color: var(--pcs-navy); }

.mv-banner { border-radius: var(--radius); overflow: hidden; margin-top: 30px; box-shadow: var(--shadow-md); }
.mv-banner .photo-slot { border-radius: 0; }

/* ---------- Section divider ---------- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #d8e0e3 50%, transparent);
}
.section-divider-icon {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pcs-green);
  opacity: 0.5;
}
@media (max-width: 640px) {
  .section-divider { padding: 28px 24px; gap: 14px; }
  .section-divider-icon { width: 32px; height: 32px; }
  .section-divider-icon svg { width: 32px; height: 32px; }
}

/* ---------- Values ---------- */

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; margin-top: 20px; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

.value-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 22px;
  border-radius: var(--radius-sm);
  transition: background .25s ease;
}
.value-item:hover { background: var(--pcs-gray-light); }
.value-item .index {
  flex: none;
  font-size: 34px; font-weight: 800; line-height: 1;
  color: var(--pcs-gray);
  font-variant-numeric: tabular-nums;
}
.value-item h4 { margin: 0 0 6px; font-size: 16.5px; color: var(--pcs-navy); font-weight: 700; }
.value-item p { margin: 0; font-size: 14.5px; }

/* ---------- Parallax band ---------- */

.parallax-band {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  background: linear-gradient(150deg, #0b2f52 0%, var(--pcs-navy) 50%, #0c3f74 100%);
}
.parallax-pattern {
  position: absolute;
  inset: -25% -10%;
  opacity: .5;
  will-change: transform;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.14) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
}
.parallax-glow {
  position: absolute; left: 50%; top: 50%; width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(71,151,67,.28) 0%, rgba(71,151,67,0) 70%);
  will-change: transform;
}
.parallax-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; text-align: center; }
.parallax-content blockquote {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.4;
  margin: 0 0 22px; color: #fff;
}
.parallax-content cite { font-style: normal; color: #8fd98c; font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Services ---------- */

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e7edf0;
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pcs-green); }
.service-card .ghost-num {
  position: absolute; top: -18px; right: 8px;
  font-size: 92px; font-weight: 800; color: var(--pcs-gray-light);
  line-height: 1; z-index: 0; user-select: none;
}
.service-card .icon {
  position: relative; z-index: 1;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--pcs-gray-light); color: var(--pcs-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .icon { background: var(--pcs-green); color: #fff; }
.service-card h3 { position: relative; z-index: 1; font-size: 19px; margin-bottom: 12px; }
.service-card p { position: relative; z-index: 1; font-size: 14.5px; }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e7edf0;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .photo-wrap { overflow: hidden; }
.team-card .photo-slot { transition: transform .5s var(--ease); border-radius: 0; }
.team-card:hover .photo-slot { transform: scale(1.05); }
.team-body { padding: 26px 28px 32px; text-align: center; }
.team-body h3 { font-size: 18px; margin-bottom: 2px; }
.team-role { color: var(--pcs-green); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.team-body p { font-size: 14.5px; text-align: left; }

/* ---------- FAQ ---------- */

.faq-item { border-bottom: 1px solid #e2e8ea; }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 24px 6px; font-weight: 700; color: var(--pcs-navy); font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--pcs-green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--pcs-green); flex: none; font-weight: 800;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 6px 24px; font-size: 15px; max-width: 780px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--pcs-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-card .photo-slot { margin: -40px -36px 28px; border-radius: var(--radius) var(--radius) 0 0; }
.contact-card h3 { color: #fff; font-size: 20px; }
.contact-card p { color: rgba(255,255,255,0.85); }
.contact-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.16); }
.contact-row:first-of-type { border-top: none; }
.contact-row .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #8fd98c; font-weight: 700; display: block; margin-bottom: 4px; }
.contact-row div p { margin: 0; color: #fff; font-size: 15px; }

.form-card { background: #fff; border: 1px solid #e7edf0; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 40px 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--pcs-navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid #d8e0e3; border-radius: 10px;
  font-family: inherit; font-size: 15px; color: #000; background: #fbfcfd;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--pcs-blue); box-shadow: 0 0 0 4px rgba(40,114,173,.12); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form-two { grid-template-columns: 1fr; } }
.form-disclaimer { font-size: 12px; color: #6b7780; margin-top: -4px; }

/* ---------- CTA band ---------- */

.cta-band { position: relative; overflow: hidden; background: var(--pcs-green); color: #fff; text-align: center; padding: 76px 0; }
.cta-band::before {
  content: ""; position: absolute; inset: -20%;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: .6;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 17px; }

/* ---------- Skeleton / coming-soon cards ---------- */

.skeleton-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .skeleton-grid { grid-template-columns: 1fr; } }

.skeleton-card {
  border: 1px solid #e7edf0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.skeleton-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.skeleton-body { padding: 26px 24px; }
.skeleton-tag {
  display: inline-block; background: rgba(71,151,67,.12); color: var(--pcs-green);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.skeleton-line { height: 12px; background: var(--pcs-gray-light); border-radius: 6px; margin-bottom: 10px; }
.skeleton-line.short { width: 62%; }
.skeleton-line.title { height: 16px; width: 88%; margin-bottom: 14px; }

.coming-soon-note {
  text-align: center; max-width: 560px; margin: 56px auto 0;
  padding: 28px 32px; border-radius: var(--radius);
  background: var(--pcs-gray-light);
}
.coming-soon-note p { margin-bottom: 18px; }

/* ---------- Footer ---------- */

.site-footer { background: #0b2f52; color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.14); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 44px; }
.footer-brand strong { color: #fff; font-size: 15px; letter-spacing: 0.03em; }
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 11px; font-size: 14.5px; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: #8fd98c; }
.footer-tagline { color: #8fd98c; font-weight: 700; font-size: 14px; margin-top: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 10px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--pcs-navy) 0%, #0c356a 60%, #082747 100%);
  color: #fff; padding: 92px 0 0;
}
.page-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
  padding-bottom: 76px;
}
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; padding-bottom: 48px; } }
.page-hero h1 { color: #fff; text-transform: uppercase; font-size: clamp(30px, 4vw, 46px); }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 560px; }
.page-hero .photo-slot { box-shadow: var(--shadow-lg); }

/* ---------- Misc content blocks ---------- */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.two-col-photo { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .two-col-photo { grid-template-columns: 1fr; } }

.story-photo { margin-bottom: 56px; }
.story-photo .photo-slot { box-shadow: var(--shadow-lg); border-radius: var(--radius); }
@media (max-width: 700px) { .story-photo .photo-slot { aspect-ratio: 4 / 3; } }
.story-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.story-copy p { text-align: left; }

.divider { height: 4px; width: 64px; background: var(--pcs-green); border-radius: 2px; margin: 0 0 22px; }
.badge-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.badge-pill { background: var(--pcs-gray-light); color: var(--pcs-navy); font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 999px; }

/* ---------- Small-screen spacing refinements ---------- */

@media (max-width: 640px) {
  .pillar-card { padding: 30px 24px; }
  .stat-block { padding: 28px 20px; }
  .contact-card, .form-card { padding: 30px 24px; }
  .service-card { padding: 26px 22px; }
  .team-body { padding: 22px 20px 26px; }
  .skeleton-body { padding: 22px 20px; }
  .section-head { margin-bottom: 40px; }
  .parallax-band { padding: 76px 0; }
  .cta-band { padding: 56px 0; }
  .page-hero { padding: 84px 0 0; }
  .contact-card .photo-slot { margin: -30px -24px 22px; }
  .hero-actions .btn,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-blob, .parallax-pattern, .parallax-glow { transform: none !important; }
  .btn:hover, .service-card:hover, .pillar-card:hover, .team-card:hover, .skeleton-card:hover { transform: none; }
}
