.hc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 44px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--hc-radius-pill);
  font-weight: 700;
  font-size: .875rem;
  line-height: 1;
  transition: background-color var(--hc-transition), border-color var(--hc-transition), color var(--hc-transition), transform var(--hc-transition);
}
.hc-button:hover { transform: translateY(-1px); }
.hc-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--hc-color-accent) 45%, transparent); outline-offset: 3px; }
.hc-button--primary { background: var(--hc-color-primary); color: var(--hc-color-white); }
.hc-button--primary:hover { background: var(--hc-color-primary-700); }
.hc-button--accent { background: var(--hc-color-accent); color: var(--hc-color-white); }
.hc-button--accent:hover { background: #ad7622; }
.hc-button--outline { background: transparent; border-color: var(--hc-color-border); color: var(--hc-color-text); }
.hc-button--hero-secondary { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.hc-button--hero-secondary:hover { background: rgba(255,255,255,.2); }

.hc-card {
  background: var(--hc-color-surface);
  border: 1px solid var(--hc-color-border);
  border-radius: var(--hc-radius-md);
  box-shadow: var(--hc-shadow-sm);
}

.hc-grid { display: grid; gap: var(--hc-space-5); }
.hc-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Header */
.hc-site-header {
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(17,32,29,.05);
}
.hc-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.hc-site-branding { flex: 0 0 auto; }
.hc-site-branding .custom-logo-link { display: inline-flex; align-items: center; }
.hc-site-branding .custom-logo { width: auto; max-width: 126px; max-height: 46px; }
.hc-brand-fallback { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.hc-brand-mark {
  width: 30px; height: 30px; border-radius: 50%; display: inline-grid; place-items: center;
  background: var(--hc-color-primary); color: #fff; font-family: var(--hc-font-heading); font-size: 15px;
}
.hc-brand-name { font-family: var(--hc-font-heading); font-size: 1rem; }
.hc-header__navwrap { display: flex; align-items: center; justify-content: flex-end; gap: 30px; flex: 1; }
.hc-primary-nav { margin-inline: auto; flex: 1; }
.hc-menu { list-style: none; display: flex; align-items: center; justify-content: center; gap: clamp(17px,1.65vw,30px); margin: 0; padding: 0; }
.hc-menu a { font-size: .8rem; font-weight: 600; color: #263631; transition: color var(--hc-transition); }
.hc-menu a:hover, .hc-menu .current-menu-item > a { color: var(--hc-color-primary); }
.hc-header-actions { display: flex; align-items: center; gap: 13px; white-space: nowrap; }
.hc-icon-button { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; }
.hc-icon-button:hover { background: var(--hc-color-surface-soft); }
.hc-icon-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hc-language-switcher { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--hc-color-muted); }
.hc-language-switcher a { font-weight: 700; opacity: .55; }
.hc-language-switcher a.is-active { color: var(--hc-color-primary); opacity: 1; }
.hc-header-login { font-size: .78rem; font-weight: 600; }
.hc-header-join { min-height: 38px; padding: .65rem 1rem; font-size: .76rem; }
.hc-menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.hc-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: var(--hc-color-text); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hc-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(460px, 49vw, 640px);
  display: flex;
  align-items: center;
  background-image: var(--hc-hero-image);
  background-size: cover;
  background-position: center 43%;
  color: #fff;
  overflow: hidden;
}
.hc-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hc-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,61,54,.88) 0%, rgba(16,71,63,.68) 38%, rgba(15,48,44,.24) 68%, rgba(13,34,31,.14) 100%),
    linear-gradient(0deg, rgba(10,31,28,.16), rgba(10,31,28,.04));
}
.hc-hero__inner { width: 100%; padding-block: clamp(58px,7vw,92px) clamp(92px,10vw,126px); }
.hc-hero__content { width: min(610px, 58%); }
.hc-hero__eyebrow { color: #f1bb57; margin-bottom: 18px; }
.hc-hero__eyebrow span { display: inline-block; padding: 5px 10px; border-radius: var(--hc-radius-pill); background: rgba(198,138,43,.15); border: 1px solid rgba(239,181,74,.26); }
.hc-hero__title { color: #fff; font-size: clamp(2.75rem,5vw,5.15rem); max-width: 720px; }
.hc-hero__title > span, .hc-hero__title > em { display: block; }
.hc-hero__title em { color: #e3ad4f; font-style: italic; font-weight: 500; }
.hc-hero__description { max-width: 560px; margin: 25px 0 0; color: rgba(255,255,255,.88); font-size: clamp(.93rem,1.15vw,1.05rem); line-height: 1.75; }
.hc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hc-hero-stats-wrap { position: relative; z-index: 5; margin-top: -42px; }
.hc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  background: #fff;
  border: 1px solid rgba(17,32,29,.08);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(17,32,29,.08);
  overflow: hidden;
}
.hc-stat { min-height: 94px; display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; position: relative; }
.hc-stat:not(:last-child)::after { content: ''; position: absolute; inset-block: 20px; inset-inline-end: 0; width: 1px; background: #e7ecea; }
.hc-stat strong { font-family: var(--hc-font-heading); font-size: clamp(1.35rem,2vw,1.75rem); font-weight: 600; color: var(--hc-color-primary); line-height: 1.05; }
.hc-stat span { margin-top: 6px; font-size: .75rem; color: var(--hc-color-muted); }

.hc-phase-placeholder { padding: 62px 0 86px; }
.hc-phase-placeholder p { margin: 0; color: #9aa6a2; text-align: center; font-size: .84rem; }


/* Phase 3 — Campaigns & Programmes */
.hc-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hc-heading--section { font-size: clamp(1.55rem,2.1vw,2.15rem); line-height: 1.15; }
.hc-campaigns { padding: 62px 0 76px; background: #f3f7f5; overflow: hidden; }
.hc-campaigns__heading { margin-bottom: 24px; }
.hc-campaigns__heading .hc-eyebrow { margin-bottom: 7px; color: var(--hc-color-accent); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hc-carousel-controls { display: flex; gap: 8px; }
.hc-carousel-controls span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid rgba(17,32,29,.07); color: var(--hc-color-primary); font-size: .83rem; }
.hc-campaigns__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(285px, 1fr); grid-template-rows: 1fr; gap: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding-bottom: 2px; }
.hc-campaigns__track::-webkit-scrollbar { display: none; }
.hc-campaign-card { min-height: 126px; padding: 18px 20px 17px; border-radius: 12px; color: #fff; background: var(--hc-campaign-color); display: flex; flex-direction: column; align-items: flex-start; scroll-snap-align: start; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); transition: transform var(--hc-transition), filter var(--hc-transition); }
.hc-campaign-card:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.04); }
.hc-campaign-card__type { display: inline-block; padding: 4px 8px; border-radius: var(--hc-radius-pill); background: rgba(255,255,255,.14); font-size: .59rem; font-weight: 800; letter-spacing: .08em; }
.hc-campaign-card__title { margin-top: 15px; font-family: var(--hc-font-heading); font-size: 1.03rem; line-height: 1.22; font-weight: 600; }
.hc-campaign-card__meta { margin-top: auto; padding-top: 8px; font-size: .67rem; color: rgba(255,255,255,.78); }

/* Phase 4 — About Hidayat Centre */
.hc-about { padding: clamp(78px, 9vw, 124px) 0; background: #fff; }
.hc-about__grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(56px, 8vw, 112px); align-items: center; }
.hc-about__visual { position: relative; min-height: 345px; display: grid; grid-template-columns: 1.08fr 1fr; gap: 12px; align-items: center; }
.hc-about__image { margin: 0; overflow: hidden; border-radius: 12px; background: var(--hc-color-surface-soft); }
.hc-about__image img { width: 100%; height: 100%; object-fit: cover; }
.hc-about__image--primary { height: 310px; }
.hc-about__image--secondary { height: 276px; }
.hc-about__stats { position: absolute; inset-inline-start: 26%; bottom: -16px; min-width: 245px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 10px; overflow: hidden; background: var(--hc-color-primary); color: #fff; box-shadow: 0 14px 30px rgba(17,32,29,.17); }
.hc-about-stat { min-height: 76px; padding: 13px 18px; display: flex; flex-direction: column; justify-content: center; }
.hc-about-stat + .hc-about-stat { border-inline-start: 1px solid rgba(255,255,255,.18); }
.hc-about-stat strong { font-family: var(--hc-font-heading); font-size: 1.45rem; line-height: 1; font-weight: 600; }
.hc-about-stat span { margin-top: 6px; font-size: .62rem; line-height: 1.3; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .04em; }
.hc-about__content .hc-eyebrow { margin-bottom: 9px; font-size: .64rem; }
.hc-about__title { max-width: 520px; font-size: clamp(2rem, 3.15vw, 3.05rem); line-height: 1.05; }
.hc-about__copy { margin-top: 22px; max-width: 610px; color: var(--hc-color-muted); }
.hc-about__copy p { margin: 0; font-size: .91rem; line-height: 1.72; }
.hc-about__copy p + p { margin-top: 14px; }
.hc-about__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hc-button--outline { background: transparent; color: var(--hc-color-primary); border: 1px solid rgba(30,87,79,.27); }
.hc-button--outline:hover { background: var(--hc-color-surface-soft); color: var(--hc-color-primary-dark); }

/* Phase 5 — Programmes & Services. Scoped to this section so approved Phase 4 sizing remains untouched. */
.hc-services {
  padding: 82px 0 88px;
  background: var(--hc-color-surface-soft);
}
.hc-services__intro {
  width: min(650px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}
.hc-services__intro .hc-eyebrow {
  margin-bottom: 8px;
  font-size: .64rem;
}
.hc-services__intro .hc-heading--section {
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
}
.hc-services__description {
  width: min(560px, 100%);
  margin: 13px auto 0;
  color: var(--hc-color-muted);
  font-size: .82rem;
  line-height: 1.62;
}
.hc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hc-service-card {
  min-height: 174px;
  padding: 20px 19px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(17, 32, 29, .055);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(17, 32, 29, .018);
  transition: border-color var(--hc-transition), box-shadow var(--hc-transition), transform var(--hc-transition);
}
.hc-service-card:hover {
  color: inherit;
  border-color: rgba(30, 87, 79, .14);
  box-shadow: 0 8px 20px rgba(17, 32, 29, .045);
  transform: translateY(-1px);
}
.hc-service-card__icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #edf5f2;
  color: var(--hc-color-primary);
}
.hc-service-card__icon svg {
  width: 15px;
  height: 15px;
}
.hc-service-card__title {
  font-family: var(--hc-font-heading);
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--hc-color-text);
}
.hc-service-card__description {
  margin-top: 8px;
  color: var(--hc-color-muted);
  font-size: .69rem;
  line-height: 1.58;
}

/* Phase 6 — Upcoming Events. New section only; approved v5.5 sections are untouched. */
.hc-events {
  padding: 78px 0 86px;
  background: #fff;
}
.hc-events__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.hc-events__heading .hc-eyebrow {
  margin-bottom: 7px;
  font-size: .64rem;
}
.hc-events__heading .hc-heading--section {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
}
.hc-events__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--hc-color-text);
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}
.hc-events__view-all span { transition: transform var(--hc-transition); }
.hc-events__view-all:hover span { transform: translateX(3px); }
.hc-events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hc-event-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(17, 32, 29, .09);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(17, 32, 29, .018);
}
.hc-event-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  background: #dce8e4;
}
.hc-event-card__media img,
.hc-event-card__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hc-event-card__placeholder {
  background: linear-gradient(135deg, #d8e5e1, #eef4f2 55%, #c7d9d4);
}
.hc-event-card__badge {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--hc-color-primary);
  color: #fff;
  font-size: .56rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hc-event-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 15px 13px;
}
.hc-event-card__meta {
  min-height: 28px;
  margin: 0 0 9px;
  color: var(--hc-color-muted);
  font-size: .59rem;
  line-height: 1.5;
}
.hc-event-card__meta > span:first-child { margin-inline-end: 5px; color: var(--hc-color-primary); }
.hc-event-card__title {
  margin: 0;
  font-family: var(--hc-font-heading);
  font-size: 1rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--hc-color-text);
}
.hc-event-card__title a { color: inherit; }
.hc-event-card__excerpt {
  margin: 9px 0 15px;
  color: var(--hc-color-muted);
  font-size: .66rem;
  line-height: 1.58;
}
.hc-event-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 3px;
}
.hc-event-card__register,
.hc-event-card__details {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .61rem;
  font-weight: 600;
}
.hc-event-card__register {
  padding: 6px 14px;
  background: var(--hc-color-primary);
  color: #fff;
}
a.hc-event-card__register:hover { background: var(--hc-color-primary-dark); color: #fff; }
.hc-event-card__details {
  padding: 6px 9px;
  color: var(--hc-color-text);
}
a.hc-event-card__details:hover { color: var(--hc-color-primary); }
.hc-event-card--demo .hc-event-card__register,
.hc-event-card--demo .hc-event-card__details { cursor: default; }

/* Phase 7 — Support Our Community. New section only; all approved v5.6 selectors remain untouched. */
.hc-support {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 78px;
  background: #17675d;
  color: #fff;
}
.hc-support__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background:
    linear-gradient(35deg, transparent 38%, rgba(255,255,255,.12) 39%, transparent 40%) 0 0 / 82px 82px,
    linear-gradient(145deg, transparent 42%, rgba(255,255,255,.08) 43%, transparent 44%) 20px 8px / 108px 108px,
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.08), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(0,0,0,.12), transparent 27%);
}
.hc-support__intro {
  width: min(690px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}
.hc-support__eyebrow {
  margin-bottom: 8px;
  color: #e7bd68;
  font-size: .62rem;
}
.hc-support__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 1.1;
}
.hc-support__description {
  width: min(620px, 100%);
  margin: 12px auto 0;
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  line-height: 1.6;
}
.hc-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.hc-support-card {
  min-height: 190px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  backdrop-filter: blur(2px);
}
.hc-support-card__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}
.hc-support-card__icon svg { width: 15px; height: 15px; }
.hc-support-card__title {
  margin: 0;
  color: #fff;
  font-family: var(--hc-font-heading);
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 600;
}
.hc-support-card__description {
  margin: 8px 0 18px;
  color: rgba(255,255,255,.72);
  font-size: .66rem;
  line-height: 1.55;
}
.hc-support-card__cta {
  min-height: 30px;
  margin-top: auto;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #fff;
  color: var(--hc-color-primary-dark);
  font-size: .61rem;
  line-height: 1;
  font-weight: 650;
}
.hc-support-card__cta:hover { color: var(--hc-color-primary); transform: translateY(-1px); }
.hc-support-card__cta span:last-child { transition: transform var(--hc-transition); }
.hc-support-card__cta:hover span:last-child { transform: translateX(2px); }

/* Phase 8 — Stay Connected + Footer. New selectors only; approved v5.7 sections remain untouched. */
.hc-site-footer {
  background: #0f2521;
  color: rgba(255,255,255,.78);
}
.hc-newsletter {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #112824;
}
.hc-newsletter__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(330px, 430px);
  align-items: center;
  gap: 44px;
  padding-block: 25px;
}
.hc-newsletter__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--hc-font-heading);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}
.hc-newsletter__copy p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.52);
  font-size: .66rem;
  line-height: 1.55;
}
.hc-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
  justify-self: end;
  width: min(100%, 430px);
}
.hc-newsletter__form input {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  outline: 0;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: .64rem;
}
.hc-newsletter__form input::placeholder { color: rgba(255,255,255,.43); }
.hc-newsletter__form input:focus { border-color: rgba(231,189,104,.72); }
.hc-newsletter__form button {
  min-height: 34px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--hc-color-accent);
  color: #fff;
  cursor: pointer;
  font-size: .62rem;
  line-height: 1;
  font-weight: 700;
}
.hc-newsletter__form button:hover { filter: brightness(.96); }

.hc-footer-main { padding: 48px 0 44px; }
.hc-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .72fr .82fr 1fr;
  gap: 52px;
  align-items: start;
}
.hc-footer-brand__identity {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.hc-footer-brand__identity .custom-logo-link { display: inline-flex; align-items: center; }
.hc-footer-brand__identity .custom-logo { width: auto; max-width: 112px; max-height: 42px; object-fit: contain; }
.hc-footer-brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1b6b60;
  color: #fff;
  font-family: var(--hc-font-heading);
  font-size: .78rem;
}
.hc-footer-brand__identity strong { font-family: var(--hc-font-heading); font-size: .86rem; line-height: .95; }
.hc-footer-brand__identity small { font-family: var(--hc-font-body); font-size: .44rem; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.65); }
.hc-footer-brand > p {
  width: min(100%, 240px);
  margin: 15px 0 17px;
  color: rgba(255,255,255,.52);
  font-size: .61rem;
  line-height: 1.65;
}
.hc-footer-socials { display: flex; gap: 7px; flex-wrap: wrap; }
.hc-footer-socials a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  font-size: .53rem;
  font-weight: 700;
}
.hc-footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,.25); }
.hc-footer-column h3 {
  margin: 3px 0 16px;
  color: rgba(255,255,255,.62);
  font-family: var(--hc-font-body);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hc-footer-column ul { list-style: none; margin: 0; padding: 0; }
.hc-footer-column li + li { margin-top: 10px; }
.hc-footer-column li a {
  color: rgba(255,255,255,.6);
  font-size: .6rem;
  line-height: 1.4;
}
.hc-footer-column li a:hover { color: #fff; }
.hc-footer-prayer__table {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
}
.hc-footer-prayer__table > div {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 9px;
  color: rgba(255,255,255,.55);
  font-size: .57rem;
}
.hc-footer-prayer__table > div + div { border-top: 1px solid rgba(255,255,255,.055); }
.hc-footer-prayer__table strong { color: rgba(255,255,255,.75); font-size: .57rem; font-weight: 600; }
.hc-footer-contact dl { margin: 0; }
.hc-footer-contact dl > div + div { margin-top: 9px; }
.hc-footer-contact dt {
  margin: 0 0 2px;
  color: rgba(255,255,255,.42);
  font-size: .48rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hc-footer-contact dd {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .58rem;
  line-height: 1.48;
}
.hc-footer-contact a:hover { color: #fff; }
.hc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #0d211e;
}
.hc-footer-bottom__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.hc-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.33);
  font-size: .49rem;
}
.hc-footer-legal { display: flex; align-items: center; gap: 20px; }
.hc-footer-legal a { color: rgba(255,255,255,.36); font-size: .49rem; }
.hc-footer-legal a:hover { color: rgba(255,255,255,.75); }

/* v5.20 — Media controls only. No approved layout measurements changed. */
.hc-support[style*="--hc-support-bg"]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hc-support-bg);
  background-size: cover;
  background-position: center;
  opacity: .20;
}

/* v5.26 — Hero video stacking fix: video is background only; copy/CTAs remain above it. */
.hc-hero__video { z-index: -2; }
.hc-hero__overlay { z-index: -1; }
.hc-hero__inner { position: relative; z-index: 1; }
