:root {
  --hcfm-navy: #0b1f3a;
  --hcfm-navy-mid: #143356;
  --hcfm-blue: #1c4f7c;
  --hcfm-gold: #c9a227;
  --hcfm-gold-soft: #e0c36a;
  --hcfm-cream: #f7f4ef;
  --hcfm-stone: #ebe6dc;
  --hcfm-ink: #121a24;
  --hcfm-muted: #5a6573;
  --hcfm-white: #fff;
  --hcfm-max: 1180px;
  --hcfm-font-display: "Cormorant Garamond", Georgia, serif;
  --hcfm-font-body: "Outfit", "Segoe UI", sans-serif;
  --hcfm-shadow: 0 24px 60px rgba(11, 31, 58, 0.18);
  --hcfm-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--hcfm-font-body);
  color: var(--hcfm-ink);
  background: var(--hcfm-cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, .hcfm-display {
  font-family: var(--hcfm-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hcfm-navy);
  letter-spacing: 0.01em;
}

a { color: inherit; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Top bar */
.hcfm-topbar {
  background: var(--hcfm-navy);
  color: rgba(255,255,255,.88);
  font-size: 0.8rem;
}
.hcfm-topbar__inner {
  max-width: var(--hcfm-max);
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hcfm-topbar__motto {
  margin: 0;
  font-family: var(--hcfm-font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--hcfm-gold-soft);
}
.hcfm-topbar__right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Header */
.hcfm-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  transition: box-shadow .3s var(--hcfm-ease);
}
.hcfm-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.1);
}
.hcfm-header__inner {
  max-width: var(--hcfm-max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hcfm-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--hcfm-navy);
  min-width: 0;
}
.hcfm-brand .custom-logo-link { line-height: 0; }
.hcfm-brand .custom-logo,
.hcfm-brand img {
  width: auto !important;
  max-height: 58px !important;
  height: auto !important;
}
.hcfm-brand__mark {
  width: 48px; height: 48px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--hcfm-gold-soft), transparent 42%),
    linear-gradient(145deg, var(--hcfm-blue), var(--hcfm-navy));
  border: 1px solid rgba(201, 162, 39, 0.5);
  flex-shrink: 0;
}
.hcfm-brand__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hcfm-brand__meta strong {
  font-family: var(--hcfm-font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}
.hcfm-brand__meta em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hcfm-muted);
}

.hcfm-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hcfm-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem;
}
.hcfm-nav__list a {
  display: inline-block;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hcfm-navy);
  position: relative;
}
.hcfm-nav__list a::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.3rem;
  height: 2px;
  background: var(--hcfm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--hcfm-ease);
}
.hcfm-nav__list a:hover::after,
.hcfm-nav__list .current-menu-item > a::after { transform: scaleX(1); }

.hcfm-lang {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.15rem;
  border: 1px solid rgba(224, 195, 106, 0.35);
  border-radius: 999px;
}
.hcfm-lang__link {
  min-width: 2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.75);
}
.hcfm-header .hcfm-lang__link { color: var(--hcfm-navy); }
.hcfm-lang__link.is-active,
.hcfm-lang__link:hover {
  background: var(--hcfm-gold);
  color: var(--hcfm-navy) !important;
}

.hcfm-social { display: inline-flex; gap: 0.35rem; align-items: center; }
.hcfm-social__link {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: transform .25s var(--hcfm-ease), background .25s, color .25s;
}
.hcfm-social__link svg { width: 15px; height: 15px; }
.hcfm-social--top .hcfm-social__link:hover {
  background: rgba(255,255,255,.12);
  color: var(--hcfm-gold-soft);
  transform: translateY(-2px);
}
.hcfm-social--footer .hcfm-social__link {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.hcfm-social--footer .hcfm-social__link:hover {
  background: var(--hcfm-gold);
  color: var(--hcfm-navy);
}

.hcfm-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(11,31,58,.2);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hcfm-nav-toggle span:not(.screen-reader-text) {
  display: block; width: 18px; height: 2px; background: var(--hcfm-navy);
}

/* Buttons */
.hcfm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform .25s var(--hcfm-ease), background .25s, color .25s, box-shadow .25s;
}
.hcfm-btn:hover { transform: translateY(-2px); }
.hcfm-btn--sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.hcfm-btn--gold {
  background: var(--hcfm-gold);
  color: var(--hcfm-navy);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.28);
}
.hcfm-btn--ghost {
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
  background: transparent;
}
.hcfm-btn--navy {
  background: var(--hcfm-navy);
  color: #fff;
}

/* ========== Revolution-style slider ========== */
.hcfm-rev {
  position: relative;
  height: min(92vh, 860px);
  overflow: hidden;
  background: var(--hcfm-navy);
  color: #fff;
}
.hcfm-rev__slides { position: absolute; inset: 0; }
.hcfm-rev__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--hcfm-ease), visibility 1s;
  z-index: 1;
}
.hcfm-rev__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hcfm-rev__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hcfm-rev__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hcfm-rev__slide.is-active .hcfm-rev__media img {
  transform: scale(1);
  animation: hcfm-kenburns 9s ease-out forwards;
}
.hcfm-rev__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7,18,34,.82) 8%, rgba(7,18,34,.35) 55%, rgba(7,18,34,.55) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,162,39,.18), transparent 45%);
}
.hcfm-rev__content {
  position: relative;
  z-index: 3;
  max-width: var(--hcfm-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5.5rem;
}
.hcfm-rev__eyebrow,
.hcfm-rev__title,
.hcfm-rev__text,
.hcfm-rev__actions {
  opacity: 0;
  transform: translateY(28px);
}
.hcfm-rev__slide.is-active .hcfm-rev__eyebrow {
  animation: hcfm-layer-in .8s var(--hcfm-ease) .15s forwards;
}
.hcfm-rev__slide.is-active .hcfm-rev__title {
  animation: hcfm-layer-in .9s var(--hcfm-ease) .32s forwards;
}
.hcfm-rev__slide.is-active .hcfm-rev__text {
  animation: hcfm-layer-in .9s var(--hcfm-ease) .48s forwards;
}
.hcfm-rev__slide.is-active .hcfm-rev__actions {
  animation: hcfm-layer-in .9s var(--hcfm-ease) .62s forwards;
}
.hcfm-rev__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hcfm-gold-soft);
}
.hcfm-rev__title {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  color: #fff;
  font-weight: 600;
}
.hcfm-rev__text {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.9);
  font-weight: 300;
}
.hcfm-rev__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hcfm-rev__nav {
  position: absolute;
  z-index: 5;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}
.hcfm-rev__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .25s, background .25s;
}
.hcfm-rev__dot.is-active {
  background: var(--hcfm-gold);
  transform: scale(1.25);
}
.hcfm-rev__arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.hcfm-rev__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(11,31,58,.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: background .25s, border-color .25s;
}
.hcfm-rev__arrow:hover {
  background: var(--hcfm-gold);
  border-color: var(--hcfm-gold);
  color: var(--hcfm-navy);
}
.hcfm-rev__arrow--prev { left: 1rem; }
.hcfm-rev__arrow--next { right: 1rem; }

@keyframes hcfm-kenburns {
  from { transform: scale(1.12) translate3d(0,0,0); }
  to { transform: scale(1) translate3d(-1.5%, -1%, 0); }
}
@keyframes hcfm-layer-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.hcfm-section {
  padding: clamp(3.2rem, 7vw, 5.8rem) 1.25rem;
}
.hcfm-section__inner {
  max-width: var(--hcfm-max);
  margin: 0 auto;
}
.hcfm-section__title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin: 0 0 0.7rem;
}
.hcfm-section__intro {
  max-width: 40rem;
  color: var(--hcfm-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}
.hcfm-section--navy {
  background: linear-gradient(145deg, #0b1f3a, #132f52 55%, #0b1f3a);
  color: #fff;
}
.hcfm-section--navy .hcfm-section__title,
.hcfm-section--navy h2,
.hcfm-section--navy h3 { color: #fff; }
.hcfm-section--navy .hcfm-section__intro { color: rgba(255,255,255,.76); }
.hcfm-section--stone { background: var(--hcfm-stone); }
.hcfm-section--cream { background: var(--hcfm-cream); }

.hcfm-quote-block {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.hcfm-quote-block blockquote {
  margin: 0;
  font-family: var(--hcfm-font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--hcfm-gold-soft);
}
.hcfm-quote-block cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--hcfm-font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.hcfm-grid { display: grid; gap: 1.5rem; }
.hcfm-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.hcfm-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: center; }
.hcfm-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.hcfm-card {
  background: transparent;
}
.hcfm-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--hcfm-shadow);
}
.hcfm-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--hcfm-ease);
}
.hcfm-card:hover .hcfm-card__media img { transform: scale(1.06); }
.hcfm-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.55rem;
}
.hcfm-card p {
  margin: 0;
  color: var(--hcfm-muted);
}

.hcfm-split__media img {
  width: 100%;
  box-shadow: var(--hcfm-shadow);
}

/* Stats */
.hcfm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
  text-align: center;
}
.hcfm-stat__num {
  font-family: var(--hcfm-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--hcfm-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hcfm-stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
}

/* Gallery */
.hcfm-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.65rem;
}
.hcfm-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.hcfm-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--hcfm-ease);
}
.hcfm-gallery a:hover img { transform: scale(1.08); }

/* Reveal animations */
.hcfm-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--hcfm-ease), transform .8s var(--hcfm-ease);
}
.hcfm-reveal.is-in {
  opacity: 1;
  transform: none;
}
.hcfm-reveal-delay-1 { transition-delay: .1s; }
.hcfm-reveal-delay-2 { transition-delay: .2s; }
.hcfm-reveal-delay-3 { transition-delay: .3s; }

/* Steps / prayers */
.hcfm-steps { counter-reset: step; display: grid; gap: 1rem; }
.hcfm-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11,31,58,.1);
}
.hcfm-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--hcfm-font-display);
  font-size: 1.55rem;
  color: var(--hcfm-gold);
}
.hcfm-step h3 { margin: 0 0 0.3rem; font-size: 1.3rem; }
.hcfm-step p { margin: 0; color: var(--hcfm-muted); }

.hcfm-prayer {
  border-left: 3px solid var(--hcfm-gold);
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.65);
}
.hcfm-prayer h3 { margin: 0 0 0.35rem; font-size: 1.3rem; }
.hcfm-prayer p { margin: 0; color: var(--hcfm-muted); }

.hcfm-cta {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 1.25rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hcfm-cta h2 {
  color: #fff;
  margin: 0 0 0.7rem;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}
.hcfm-cta p {
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  color: rgba(255,255,255,.86);
}

/* Footer */
.hcfm-footer {
  background: #071525;
  color: rgba(255,255,255,.78);
}
.hcfm-footer__inner {
  max-width: var(--hcfm-max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}
.hcfm-footer__brand strong {
  display: block;
  font-family: var(--hcfm-font-display);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.hcfm-footer__brand p { margin: 0; max-width: 28rem; }
.hcfm-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hcfm-footer h4 {
  margin: 0 0 0.8rem;
  color: var(--hcfm-gold-soft);
  font-size: 1.05rem;
}
.hcfm-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hcfm-footer__menu a {
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
  color: rgba(255,255,255,.72);
}
.hcfm-footer__menu a:hover { color: var(--hcfm-gold-soft); }
.hcfm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--hcfm-max);
  margin: 0 auto;
  padding: 1.1rem 1.25rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}
.hcfm-footer__quote {
  margin: 0;
  font-family: var(--hcfm-font-display);
  font-style: italic;
  color: var(--hcfm-gold-soft);
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--hcfm-font-display) !important;
}

@media (max-width: 980px) {
  .hcfm-grid--3,
  .hcfm-grid--2,
  .hcfm-grid--4,
  .hcfm-stats,
  .hcfm-gallery,
  .hcfm-footer__inner,
  .hcfm-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .hcfm-brand__meta em { display: none; }
  .hcfm-topbar__motto { display: none; }
}

/* Contact */
.hcfm-contact {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.hcfm-contact__info {
  display: grid;
  gap: 1rem;
}
.hcfm-contact__card {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.06);
}
.hcfm-contact__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}
.hcfm-contact__card p {
  margin: 0;
  color: var(--hcfm-muted);
  font-size: 0.98rem;
}
.hcfm-contact__card a {
  color: var(--hcfm-blue);
  text-decoration: none;
  font-weight: 500;
}
.hcfm-contact__card a:hover { color: var(--hcfm-gold); text-decoration: underline; }
.hcfm-contact__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hcfm-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hcfm-form {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.08);
}
.hcfm-form h3 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
}
.hcfm-form__intro {
  margin: 0 0 1.15rem;
  color: var(--hcfm-muted);
  font-size: 0.95rem;
}
.hcfm-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.hcfm-form__field {
  margin-bottom: 0.85rem;
}
.hcfm-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--hcfm-navy);
}
.hcfm-form__field input,
.hcfm-form__field select,
.hcfm-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: 3px;
  background: var(--hcfm-cream);
  font: inherit;
  color: var(--hcfm-ink);
  transition: border-color .2s, box-shadow .2s;
}
.hcfm-form__field textarea { min-height: 140px; resize: vertical; }
.hcfm-form__field input:focus,
.hcfm-form__field select:focus,
.hcfm-form__field textarea:focus {
  outline: none;
  border-color: var(--hcfm-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
  background: #fff;
}
.hcfm-form__notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--hcfm-gold);
  background: rgba(201, 162, 39, 0.12);
  color: var(--hcfm-navy);
  font-size: 0.95rem;
}
.hcfm-form__notice--error {
  border-left-color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  color: #7a1a12;
}
.hcfm-map {
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: var(--hcfm-stone);
  min-height: 220px;
}
.hcfm-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

/* Blog / News */
.hcfm-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hcfm-news__head .hcfm-section__intro { margin-bottom: 0; }
.hcfm-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.hcfm-news-card {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--hcfm-ease), box-shadow .3s;
}
.hcfm-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hcfm-shadow);
}
.hcfm-news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hcfm-stone);
}
.hcfm-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--hcfm-ease);
}
.hcfm-news-card:hover .hcfm-news-card__media img { transform: scale(1.05); }
.hcfm-news-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hcfm-navy), var(--hcfm-blue));
}
.hcfm-news-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.hcfm-news-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hcfm-gold);
  font-weight: 700;
}
.hcfm-news-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}
.hcfm-news-card__title a {
  text-decoration: none;
  color: var(--hcfm-navy);
}
.hcfm-news-card__title a:hover { color: var(--hcfm-blue); }
.hcfm-news-card__excerpt {
  margin: 0;
  color: var(--hcfm-muted);
  font-size: 0.95rem;
  flex: 1;
}
.hcfm-news-card__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hcfm-blue);
}
.hcfm-news-card__link:hover { color: var(--hcfm-gold); }

.hcfm-blog-hero {
  background: linear-gradient(120deg, rgba(11,31,58,.92), rgba(20,51,86,.82));
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}
.hcfm-blog-hero__inner {
  max-width: var(--hcfm-max);
  margin: 0 auto;
}
.hcfm-blog-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.hcfm-blog-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.hcfm-blog-pagination a,
.hcfm-blog-pagination span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(11,31,58,.15);
  color: var(--hcfm-navy);
  background: #fff;
  font-size: 0.9rem;
}
.hcfm-blog-pagination .current {
  background: var(--hcfm-navy);
  color: #fff;
  border-color: var(--hcfm-navy);
}

.hcfm-article__hero {
  background: linear-gradient(145deg, #0b1f3a, #143356);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 1.25rem 2.5rem;
}
.hcfm-article__hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hcfm-article__title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hcfm-article__byline {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
}
.hcfm-article__featured {
  max-width: 960px;
  margin: -2rem auto 0;
  padding: 0 1.25rem;
}
.hcfm-article__featured img {
  width: 100%;
  height: auto;
  box-shadow: var(--hcfm-shadow);
}
.hcfm-article__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.hcfm-article__content p { margin: 0 0 1.15rem; }
.hcfm-article__content h2,
.hcfm-article__content h3 {
  margin: 1.8rem 0 0.75rem;
}
.hcfm-article__footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

@media (max-width: 980px) {
  .hcfm-news__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hcfm-contact,
  .hcfm-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hcfm-nav-toggle { display: inline-flex; }
  .hcfm-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--hcfm-cream);
    border-bottom: 1px solid rgba(11,31,58,.1);
    box-shadow: var(--hcfm-shadow);
  }
  .hcfm-nav.is-open { display: flex; }
  .hcfm-nav__list { flex-direction: column; }
  .hcfm-grid--3,
  .hcfm-grid--2,
  .hcfm-grid--4,
  .hcfm-stats,
  .hcfm-gallery,
  .hcfm-footer__inner,
  .hcfm-footer__cols {
    grid-template-columns: 1fr;
  }
  .hcfm-rev { height: min(88vh, 680px); }
  .hcfm-rev__arrow { display: none; }
  .hcfm-news__grid {
    grid-template-columns: 1fr;
  }
}
