/* ==========================================================================
   HNCC Theme — design system
   Deep Worship Blue #003F5A · Ministry Teal #007A7A · Revival Orange #DE6600
   Warm Gold #FEA02F · Soft Cream #EBD9C8
   ========================================================================== */

:root {
	--hncc-primary: #de6600;
	--hncc-primary-glow: #ff7d12;
	--hncc-secondary: #007a7a;
	--hncc-accent: #fea02f;
	--hncc-worship: #003f5a;
	--hncc-worship-deep: #002637;
	--hncc-cream: #ebd9c8;
	--hncc-cream-light: #f7efe7;
	--hncc-bg: #fbf6f1;
	--hncc-text: #002637;
	--hncc-link: #007a7a;
	--hncc-button: #de6600;
	--hncc-border: rgba(0, 63, 90, .14);
	--hncc-font-head: "Cormorant Garamond", Georgia, serif;
	--hncc-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--hncc-font-size: 17px;
	--hncc-radius: 18px;
	--hncc-radius-lg: 28px;
	--hncc-shadow: 0 20px 60px -24px rgba(0, 63, 90, .35);
	--hncc-shadow-soft: 0 8px 28px -14px rgba(0, 63, 90, .3);
	--hncc-ease: cubic-bezier(.22, 1, .36, 1);
	--hncc-container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--hncc-bg);
	color: var(--hncc-text);
	font-family: var(--hncc-font-body);
	font-size: var(--hncc-font-size);
	line-height: 1.65;
	overflow-x: hidden;
}

img, video, iframe, svg { max-width: 100%; }
img, video { height: auto; display: block; }

h1, h2, h3, h4 {
	font-family: var(--hncc-font-head);
	line-height: 1.12;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	color: var(--hncc-worship-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

p { margin: 0 0 1.1em; }

a { color: var(--hncc-link); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover, a:focus { color: var(--hncc-primary); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--hncc-accent);
	outline-offset: 2px;
	border-radius: 6px;
}

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	white-space: nowrap;
}

.skip-link:focus {
	clip-path: none;
	height: auto;
	width: auto;
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: .75rem 1.25rem;
	background: var(--hncc-worship-deep);
	color: #fff;
	border-radius: 999px;
}

/* -------------------------------------------------------------- Layout */
.hncc-container {
	width: min(100% - 2.5rem, var(--hncc-container));
	margin-inline: auto;
}

.hncc-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.hncc-section__head {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}
.hncc-section__title { margin: 0; }
.hncc-section__title--light { color: var(--hncc-cream-light); }
.hncc-section__lead { color: rgba(235, 217, 200, .75); margin-top: .5rem; }

.hncc-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; padding: 3rem 0; align-items: start; }
.hncc-no-sidebar .hncc-layout,
.hncc-layout--narrow { grid-template-columns: minmax(0, 1fr); max-width: 820px; }

.hncc-grid { display: grid; gap: 1.75rem; }
.hncc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hncc-post-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hncc-eyebrow {
	text-transform: uppercase;
	letter-spacing: .3em;
	font-size: .72rem;
	font-weight: 600;
	color: var(--hncc-primary);
	margin: 0 0 .75rem;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.hncc-eyebrow--light { color: var(--hncc-accent); }
.hncc-muted { color: rgba(0, 38, 55, .6); }
.hncc-lead { font-size: 1.2rem; color: rgba(0, 38, 55, .78); }

.hncc-prose { max-width: 72ch; }
.hncc-prose img { border-radius: var(--hncc-radius); }
.hncc-prose blockquote,
.hncc-scripture {
	border-left: 4px solid var(--hncc-accent);
	padding: .35rem 0 .35rem 1.25rem;
	font-family: var(--hncc-font-head);
	font-size: 1.35rem;
	font-style: italic;
	color: var(--hncc-worship);
	margin: 1.75rem 0;
}

/* ------------------------------------------------------------- Buttons */
.hncc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .85rem 1.6rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: .95rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .3s var(--hncc-ease), background-color .3s var(--hncc-ease), color .3s var(--hncc-ease);
}
.hncc-btn:hover { transform: translateY(-2px); }
.hncc-btn--primary { background: var(--hncc-button); color: #fff; }
.hncc-btn--primary:hover { background: var(--hncc-primary-glow); color: #fff; }
.hncc-btn--outline { border-color: currentColor; color: var(--hncc-cream-light); background: transparent; }
.hncc-btn--outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.hncc-btn--ghost { background: rgba(0, 122, 122, .1); color: var(--hncc-secondary); border-color: rgba(0, 122, 122, .35); }
.hncc-btn--ghost:hover { background: var(--hncc-secondary); color: #fff; }
.hncc-btn--live { background: rgba(222, 102, 0, .12); color: var(--hncc-primary); border-color: rgba(222, 102, 0, .4); }
.hncc-btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.hncc-btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.hncc-btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.hncc-btn-row--center { justify-content: center; }

.hncc-link-arrow { font-weight: 600; text-decoration: none; display: inline-flex; gap: .4rem; }
.hncc-link-arrow::after { content: "→"; transition: transform .3s var(--hncc-ease); }
.hncc-link-arrow:hover::after { transform: translateX(4px); }

.hncc-live-dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--hncc-primary);
	box-shadow: 0 0 0 0 rgba(222, 102, 0, .6);
	animation: hncc-pulse 2s infinite;
	display: inline-block;
}
@keyframes hncc-pulse {
	70% { box-shadow: 0 0 0 12px rgba(222, 102, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(222, 102, 0, 0); }
}

.hncc-badge {
	background: var(--hncc-primary);
	color: #fff;
	border-radius: 999px;
	padding: .25rem .75rem;
	font-size: .7rem;
	letter-spacing: .12em;
	font-weight: 700;
}

/* -------------------------------------------------------------- Header */
.hncc-topbar {
	background: var(--hncc-worship-deep);
	color: var(--hncc-cream);
	font-size: .82rem;
}
.hncc-topbar__inner { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.hncc-topbar a { color: var(--hncc-accent); text-decoration: none; }

.hncc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 246, 241, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--hncc-border);
}
.hncc-header[data-sticky="false"] { position: relative; }
.hncc-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: space-between;
	padding: .9rem 0;
}
.hncc-branding img, .custom-logo { max-height: 64px; width: auto; }
.hncc-branding__text { text-decoration: none; display: grid; }
.hncc-branding__name { font-family: var(--hncc-font-head); font-size: 1.5rem; color: var(--hncc-worship-deep); }
.hncc-branding__tagline { font-size: .78rem; color: rgba(0, 38, 55, .6); }

.hncc-nav__menu,
.hncc-nav__submenu,
.hncc-mobile-menu__list,
.hncc-footer__list,
.hncc-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hncc-nav__menu { display: flex; gap: 1.5rem; align-items: center; }
.hncc-nav__menu > li { position: relative; }
.hncc-nav__menu a {
	text-decoration: none;
	color: var(--hncc-worship-deep);
	font-weight: 500;
	font-size: .95rem;
	padding: .5rem 0;
	display: inline-block;
}
.hncc-nav__menu a:hover,
.hncc-nav__menu .current-menu-item > a { color: var(--hncc-primary); }
.hncc-nav__notice { font-size: .75rem; color: rgba(0, 38, 55, .5); }

.hncc-nav__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: #fff;
	border: 1px solid var(--hncc-border);
	border-radius: var(--hncc-radius);
	box-shadow: var(--hncc-shadow);
	padding: .75rem;
	display: grid;
	gap: .1rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .25s var(--hncc-ease), transform .25s var(--hncc-ease);
	z-index: 20;
}
.hncc-nav__menu li:hover > .hncc-nav__submenu,
.hncc-nav__menu li:focus-within > .hncc-nav__submenu,
.hncc-nav__menu li.is-open > .hncc-nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.hncc-nav__submenu a { display: block; padding: .55rem .75rem; border-radius: 10px; }
.hncc-nav__submenu a:hover { background: rgba(0, 122, 122, .08); }
.hncc-nav__submenu .hncc-nav__submenu { top: 0; left: 100%; }

.hncc-header__actions { display: flex; align-items: center; gap: .65rem; }
.hncc-icon-btn {
	background: transparent;
	border: 1px solid var(--hncc-border);
	border-radius: 999px;
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--hncc-worship-deep);
	cursor: pointer;
}
.hncc-header-search { border-top: 1px solid var(--hncc-border); padding: 1rem 0; background: #fff; }

.hncc-menu-toggle {
	display: none;
	background: var(--hncc-worship-deep);
	border: 0;
	border-radius: 12px;
	width: 46px; height: 46px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.hncc-menu-toggle__bars { display: grid; gap: 5px; }
.hncc-menu-toggle__bars span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

.hncc-mobile-menu { display: none; border-top: 1px solid var(--hncc-border); background: #fff; padding: 1.25rem; }
.hncc-mobile-menu__list a { display: block; padding: .7rem 0; text-decoration: none; color: var(--hncc-worship-deep); font-weight: 500; border-bottom: 1px solid var(--hncc-border); }
.hncc-mobile-menu__list .sub-menu { padding-left: 1rem; }
.hncc-mobile-menu__foot { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------- Hero */
.hncc-hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: center; overflow: hidden; }
.hncc-hero__bg { position: absolute; inset: 0; }
.hncc-hero__media { width: 100%; height: 100%; object-fit: cover; }
.hncc-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(0, 38, 55, .82) 0%, rgba(0, 63, 90, .72) 55%, rgba(0, 122, 122, .55) 100%);
}
.hncc-hero__inner { position: relative; z-index: 2; padding: 6rem 0; max-width: 60ch; }
.hncc-hero__eyebrow { color: var(--hncc-cream); }
.hncc-hero__title { color: var(--hncc-cream-light); font-size: clamp(2.6rem, 6.5vw, 5rem); }
.hncc-hero__text { color: rgba(235, 217, 200, .88); font-size: 1.15rem; }
.hncc-hero__placeholder { height: 100%; }

/* --------------------------------------------------------------- Cards */
.hncc-card {
	background: #fff;
	border: 1px solid var(--hncc-border);
	border-radius: var(--hncc-radius-lg);
	overflow: hidden;
	box-shadow: var(--hncc-shadow-soft);
	display: flex;
	flex-direction: column;
	transition: transform .4s var(--hncc-ease), box-shadow .4s var(--hncc-ease);
}
.hncc-card:hover { transform: translateY(-6px); box-shadow: var(--hncc-shadow); }
.hncc-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--hncc-cream); }
.hncc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hncc-card__body { padding: 1.4rem 1.5rem 1.7rem; display: grid; gap: .6rem; }
.hncc-card__title { margin: 0; font-size: 1.4rem; }
.hncc-card__title a { text-decoration: none; color: inherit; }
.hncc-card__title a:hover { color: var(--hncc-primary); }
.hncc-card__excerpt { margin: 0; color: rgba(0, 38, 55, .72); font-size: .95rem; }
.hncc-entry-meta { font-size: .82rem; color: rgba(0, 38, 55, .6); margin: 0; }

.hncc-meta-list { margin: 0; display: grid; gap: .3rem; font-size: .88rem; }
.hncc-meta-list__row { display: flex; gap: .5rem; }
.hncc-meta-list dt { font-weight: 600; color: var(--hncc-secondary); margin: 0; }
.hncc-meta-list dd { margin: 0; color: rgba(0, 38, 55, .78); }

/* -------------------------------------------------- Image placeholders */
.hncc-placeholder {
	display: grid;
	place-content: center;
	gap: .35rem;
	text-align: center;
	min-height: 220px;
	height: 100%;
	padding: 1.5rem;
	background: repeating-linear-gradient(45deg, rgba(0, 63, 90, .05) 0 12px, rgba(0, 63, 90, .09) 12px 24px);
	border: 2px dashed rgba(0, 63, 90, .25);
	border-radius: var(--hncc-radius);
	color: rgba(0, 38, 55, .72);
}
.hncc-placeholder__label { font-weight: 600; }
.hncc-placeholder__meta { font-size: .8rem; opacity: .8; }
.hncc-placeholder__action { font-size: .82rem; font-weight: 600; }

/* ------------------------------------------------------------ Sections */
.hncc-welcome__grid { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 3rem; align-items: center; }
.hncc-welcome__media img,
.hncc-welcome__media .hncc-placeholder { border-radius: var(--hncc-radius-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.hncc-welcome__signature { font-family: var(--hncc-font-head); font-size: 1.4rem; font-style: italic; }

.hncc-mission {
	background: linear-gradient(135deg, var(--hncc-worship-deep) 0%, var(--hncc-worship) 60%, var(--hncc-secondary) 100%);
	color: var(--hncc-cream-light);
	text-align: center;
}
.hncc-mission__quote {
	font-family: var(--hncc-font-head);
	font-size: clamp(1.7rem, 3.6vw, 2.9rem);
	font-style: italic;
	margin: 0 auto;
	max-width: 28ch;
	border: 0;
	color: var(--hncc-cream-light);
}

.hncc-ministries { background: var(--hncc-cream-light); }

.hncc-livestream { background: var(--hncc-worship-deep); color: var(--hncc-cream); }
.hncc-livestream__grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 1.5rem; }
.hncc-livestream[data-live="false"] .hncc-livestream__grid { grid-template-columns: minmax(0, 1fr); }
.hncc-livestream__player {
	border-radius: var(--hncc-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	background: #000;
}
.hncc-livestream__prelive,
.hncc-livestream__live { position: relative; aspect-ratio: 16 / 9; }
.hncc-livestream__video,
.hncc-livestream__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.hncc-livestream__bar { display: flex; align-items: center; gap: .75rem; padding: .9rem 1.2rem; background: rgba(0, 38, 55, .85); font-size: .9rem; }
.hncc-livestream__chat { border-radius: var(--hncc-radius-lg); border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05); padding: 1.1rem; display: flex; flex-direction: column; min-height: 420px; }
.hncc-livestream__chat-title { color: var(--hncc-accent); font-size: 1.1rem; }
.hncc-livestream__chat iframe { flex: 1; width: 100%; border: 0; border-radius: 14px; background: rgba(0, 0, 0, .3); min-height: 340px; }

.hncc-give {
	background: linear-gradient(135deg, var(--hncc-worship) 0%, var(--hncc-secondary) 100%);
	color: var(--hncc-cream-light);
	text-align: center;
}
.hncc-give__inner { max-width: 720px; margin-inline: auto; }
.hncc-give__note, .hncc-give__tax, .hncc-give__mail { font-size: .92rem; color: rgba(235, 217, 200, .82); }

.hncc-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
.hncc-contact__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1rem; }
.hncc-contact__list strong { display: block; color: var(--hncc-secondary); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.hncc-contact__list address { font-style: normal; }

/* --------------------------------------------------------------- Forms */
.hncc-form { display: grid; gap: 1.1rem; background: #fff; padding: 1.75rem; border-radius: var(--hncc-radius-lg); border: 1px solid var(--hncc-border); box-shadow: var(--hncc-shadow-soft); }
.hncc-form__row { display: grid; gap: .4rem; }
.hncc-form__row--check { grid-auto-flow: column; justify-content: start; align-items: center; gap: .6rem; }
.hncc-form__label { font-weight: 600; font-size: .9rem; }
.hncc-form__input,
.hncc-search-form__input,
input[type="text"], input[type="email"], input[type="search"], input[type="url"], input[type="tel"], textarea, select {
	width: 100%;
	padding: .8rem 1rem;
	border: 1px solid var(--hncc-border);
	border-radius: 12px;
	font: inherit;
	background: #fff;
	color: inherit;
}
.hncc-form__hp { position: absolute; left: -9999px; }
.hncc-form__notice { padding: .9rem 1.1rem; border-radius: 12px; font-size: .92rem; }
.hncc-form__notice--success { background: rgba(0, 122, 122, .12); color: #045; }
.hncc-form__notice--error { background: rgba(222, 102, 0, .12); color: #7a3600; }
.hncc-search-form { display: flex; gap: .6rem; }
.hncc-panel { background: #fff; border: 1px solid var(--hncc-border); border-radius: var(--hncc-radius-lg); padding: 1.5rem; }

/* ------------------------------------------------------------- Various */
.hncc-page-hero {
	position: relative;
	padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(135deg, var(--hncc-worship-deep) 0%, var(--hncc-worship) 60%, var(--hncc-secondary) 100%);
	color: var(--hncc-cream-light);
	overflow: hidden;
}
.hncc-page-hero__media { position: absolute; inset: 0; opacity: .35; }
.hncc-page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hncc-page-hero .hncc-container { position: relative; }
.hncc-page-hero__title { color: var(--hncc-cream-light); margin: 0; }
.hncc-page-hero__subtitle, .hncc-page-hero .hncc-entry-meta { color: rgba(235, 217, 200, .8); }
.hncc-page-hero .hncc-eyebrow { color: var(--hncc-accent); }

.hncc-breadcrumbs { font-size: .82rem; padding: .9rem 0; border-bottom: 1px solid var(--hncc-border); }
.hncc-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.hncc-breadcrumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }

.hncc-single__body { padding: 3rem 0; }
.hncc-video { position: relative; aspect-ratio: 16 / 9; border-radius: var(--hncc-radius-lg); overflow: hidden; margin-bottom: 1.5rem; background: #000; }
.hncc-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hncc-audio { width: 100%; margin: 1rem 0; }

.hncc-sidebar { display: grid; gap: 1.75rem; }
.hncc-widget { background: #fff; border: 1px solid var(--hncc-border); border-radius: var(--hncc-radius); padding: 1.35rem; }
.hncc-widget__title { font-size: 1.15rem; margin-top: 0; }
.hncc-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }

.hncc-pagination { padding: 2rem 0; }
.hncc-pagination .page-numbers { padding: .5rem .9rem; border-radius: 999px; text-decoration: none; }
.hncc-pagination .current { background: var(--hncc-primary); color: #fff; }

.hncc-404 { padding: clamp(4rem, 10vw, 7rem) 0; text-align: center; }
.hncc-404__inner { max-width: 640px; margin-inline: auto; }
.hncc-404__search, .hncc-none { margin-top: 1.5rem; }

.hncc-comments { padding: 2.5rem 0; }
.hncc-comments__list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }

/* -------------------------------------------------------------- Footer */
.hncc-footer { background: var(--hncc-worship-deep); color: var(--hncc-cream); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.hncc-footer h2, .hncc-footer h3 { color: var(--hncc-accent); }
.hncc-footer a { color: rgba(235, 217, 200, .8); text-decoration: none; }
.hncc-footer a:hover { color: var(--hncc-accent); }
.hncc-footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.hncc-footer__heading { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--hncc-font-body); }
.hncc-footer__list { display: grid; gap: .6rem; font-size: .93rem; }
.hncc-footer__mission { font-family: var(--hncc-font-head); font-size: 1.3rem; font-style: italic; color: var(--hncc-cream-light); }
.hncc-footer__logo, .hncc-footer .custom-logo { max-height: 68px; width: auto; }
.hncc-footer__name { font-family: var(--hncc-font-head); font-size: 1.5rem; color: var(--hncc-cream-light); }
.hncc-social { list-style: none; display: flex; gap: .6rem; padding: 0; margin: 1.1rem 0; }
.hncc-social__link { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); color: var(--hncc-cream-light); }
.hncc-social__link:hover { background: var(--hncc-primary); color: #fff; }
.hncc-footer__addresses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; padding-top: 2rem; margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, .1); }
.hncc-footer__label { color: var(--hncc-accent); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.hncc-footer address { font-style: normal; color: var(--hncc-cream-light); }
.hncc-footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .8rem; }
.hncc-footer__legal { display: flex; gap: 1.5rem; }

/* ----------------------------------------------------------- Assistant */
.hncc-assistant { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200; }
.hncc-assistant__launcher {
	width: 58px; height: 58px; border-radius: 50%;
	border: 0; cursor: pointer;
	background: linear-gradient(135deg, var(--hncc-primary), var(--hncc-accent));
	color: #fff;
	box-shadow: var(--hncc-shadow);
	display: grid; place-items: center;
}
.hncc-assistant__panel {
	position: absolute;
	right: 0; bottom: 72px;
	width: min(380px, calc(100vw - 2.5rem));
	height: min(560px, 75vh);
	background: #fff;
	border: 1px solid var(--hncc-border);
	border-radius: 20px;
	box-shadow: var(--hncc-shadow);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.hncc-assistant__head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .85rem 1rem; background: linear-gradient(135deg, var(--hncc-secondary), var(--hncc-worship)); color: #fff; }
.hncc-assistant__title { margin: 0; font-size: 1.05rem; color: #fff; font-family: var(--hncc-font-body); }
.hncc-assistant__close { background: transparent; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.hncc-assistant__log { flex: 1; overflow-y: auto; padding: 1rem; display: grid; gap: .65rem; align-content: start; }
.hncc-assistant__msg { padding: .65rem .9rem; border-radius: 16px; font-size: .92rem; max-width: 88%; }
.hncc-assistant__msg--bot { background: rgba(0, 122, 122, .1); justify-self: start; }
.hncc-assistant__msg--user { background: var(--hncc-primary); color: #fff; justify-self: end; }
.hncc-assistant__suggestions { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1rem .6rem; }
.hncc-assistant__chip { border: 1px solid var(--hncc-border); background: #fff; border-radius: 999px; padding: .35rem .75rem; font-size: .78rem; cursor: pointer; }
.hncc-assistant__chip:hover { background: rgba(0, 122, 122, .1); }
.hncc-assistant__form { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--hncc-border); }

/* -------------------------------------------------- Motion preferences */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
