:root {
	--red: #C8232A;
	--red-dk: #9E1B21;
	--red-lt: #FDECEA;
	--yellow: #F5C200;
	--yel-lt: #FFFBEA;
	--white: #FFFFFF;
	--gray-1: #F7F7F7;
	--gray-2: #EEEEEE;
	--gray-3: #AAAAAA;
	--ink: #1C1C1C;
	--ink-2: #444444;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background: var(--white);
	color: var(--ink);
	overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--gray-2);
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.nav-badge {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-badge img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.nav-text strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.1;
}

.nav-text small {
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-3);
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.nav-links a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--ink-2);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 8px;
	transition: all .18s;
}

.nav-links a:hover {
	color: var(--red);
	background: var(--red-lt);
}

.nav-cta {
	background: var(--red) !important;
	color: var(--white) !important;
	padding: 9px 20px !important;
	border-radius: 8px;
}

.nav-cta:hover {
	background: var(--red-dk) !important;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-direction: column;
	gap: 5px;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: .3s;
}

.mob-menu {
	display: none;
	background: var(--white);
	border-top: 1px solid var(--gray-2);
	padding: 8px 24px 16px;
}

.mob-menu.open {
	display: block;
}

.mob-menu a {
	display: block;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-2);
	text-decoration: none;
	border-bottom: 1px solid var(--gray-2);
}

.mob-menu a:hover {
	color: var(--red);
}

/* ─── TICKER ─── */
.ticker {
	background: var(--red);
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 36px;
}

.ticker-lbl {
	background: var(--yellow);
	color: var(--red-dk);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 0 16px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.ticker-scroll {
	overflow: hidden;
	flex: 1;
}

.ticker-track {
	display: flex;
	gap: 64px;
	padding-left: 40px;
	animation: scroll 30s linear infinite;
	width: max-content;
}

@keyframes scroll {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

.ticker-item {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, .9);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 12px;
}

.ticker-item::after {
	content: '·';
	color: var(--yellow);
	font-size: 16px;
}

/* ─── HERO ─── */
.hero {
	background: var(--white);
	padding: 72px 24px 60px;
	position: relative;
	overflow: hidden;
}

/* Subtle red top-left geometric block */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--red);
}

.hero-wrap {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 60px;
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 20px;
}

.hero-eyebrow::before {
	content: '';
	width: 28px;
	height: 2px;
	background: var(--red);
	border-radius: 2px;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 900;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 20px;
}

.hero h1 em {
	color: var(--red);
	font-style: normal;
}

.hero-desc {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ink-2);
	margin-bottom: 36px;
	max-width: 480px;
}

.hero-motto {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	font-style: italic;
	color: var(--ink-2);
	background: var(--yel-lt);
	border-left: 3px solid var(--yellow);
	padding: 10px 18px;
	border-radius: 0 8px 8px 0;
	margin-bottom: 36px;
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-red {
	background: var(--red);
	color: var(--white);
	padding: 13px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
	border: 2px solid var(--red);
	transition: all .2s;
	cursor: pointer;
}

.btn-red:hover {
	background: var(--red-dk);
	border-color: var(--red-dk);
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	padding: 13px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
	border: 2px solid var(--gray-2);
	transition: all .2s;
}

.btn-outline:hover {
	border-color: var(--red);
	color: var(--red);
}

/* Hero stats card */
.hero-stats {
	background: var(--gray-1);
	border-radius: 20px;
	padding: 36px 32px;
	border: 1px solid var(--gray-2);
	position: relative;
	overflow: hidden;
}

.hero-stats::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 100%);
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.stat-item {
	text-align: center;
}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
}

.stat-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gray-3);
	margin-top: 6px;
}

.stat-divider {
	border: none;
	border-top: 1px solid var(--gray-2);
	margin: 24px 0;
}

.stat-note {
	font-size: 11px;
	color: var(--ink-2);
	text-align: center;
	line-height: 1.6;
}

.stat-note strong {
	color: var(--red);
}

/* ─── SECTION COMMON ─── */
.sec-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sec-eyebrow::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--red);
	border-radius: 2px;
}

.sec-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 900;
	line-height: 1.15;
	color: var(--ink);
}

.sec-title em {
	color: var(--red);
	font-style: normal;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ─── PROGRAMS ─── */
.programs {
	padding: 80px 24px;
	background: var(--white);
}

.prog-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 20px;
}

.prog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.prog-card {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	height: 270px;
	cursor: pointer;
	border: 1px solid var(--gray-2);
	transition: transform .3s, box-shadow .3s;
}

.prog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.prog-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}

.prog-card:hover img {
	transform: scale(1.06);
}

.prog-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(30, 5, 5, .88) 0%, rgba(30, 5, 5, .1) 55%, transparent 100%);
}

.prog-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
}

.prog-tag {
	display: inline-block;
	background: var(--yellow);
	color: var(--red-dk);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
	margin-bottom: 8px;
}

.prog-title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 3px;
}

.prog-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, .65);
}

.prog-cta {
	background: var(--red-lt);
	border: 2px dashed rgba(200, 35, 42, .3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	cursor: pointer;
	transition: all .25s;
}

.prog-cta:hover {
	background: var(--red);
	border-color: var(--red);
}

.prog-cta i {
	font-size: 28px;
	color: var(--red);
	transition: color .25s;
}

.prog-cta:hover i {
	color: var(--yellow);
}

.prog-cta-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--red);
	transition: color .25s;
}

.prog-cta:hover .prog-cta-title {
	color: var(--white);
}

.prog-cta-sub {
	font-size: 11px;
	color: var(--gray-3);
	transition: color .25s;
}

.prog-cta:hover .prog-cta-sub {
	color: rgba(255, 255, 255, .7);
}

/* ─── NEWS + DOCS ─── */
.news-sec {
	padding: 80px 24px;
	background: var(--gray-1);
}

.news-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}

.news-card {
	display: flex;
	gap: 14px;
	background: var(--white);
	border-radius: 12px;
	padding: 18px;
	border: 1px solid var(--gray-2);
	border-left: 3px solid var(--red);
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
	color: inherit;
}

.news-card:hover {
	border-left-color: var(--yellow);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
	transform: translateX(3px);
}

.news-date-box {
	min-width: 52px;
	height: 52px;
	background: var(--red);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.news-date-box strong {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: var(--white);
	line-height: 1;
}

.news-date-box span {
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
}

.news-cat {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 3px;
}

.news-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.45;
	margin-bottom: 4px;
}

.news-blurb {
	font-size: 12px;
	color: var(--ink-2);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Docs panel */
.docs-panel {
	background: var(--white);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--gray-2);
	align-self: start;
	position: sticky;
	top: 84px;
}

.docs-panel-title {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}

.docs-panel-sub {
	font-size: 11px;
	color: var(--gray-3);
	margin-bottom: 20px;
}

.doc-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--gray-2);
}

.doc-row:last-of-type {
	border-bottom: none;
}

.doc-ico {
	width: 36px;
	height: 36px;
	background: var(--red-lt);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 13px;
	flex-shrink: 0;
}

.doc-name {
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
	flex: 1;
	line-height: 1.3;
}

.doc-meta {
	font-size: 9px;
	color: var(--gray-3);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.doc-dl {
	color: var(--red);
	font-size: 13px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	transition: .2s;
	flex-shrink: 0;
}

.doc-dl:hover {
	background: var(--red-lt);
}

.sub-box {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--gray-2);
}

.sub-box label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-3);
	display: block;
	margin-bottom: 10px;
}

.sub-row-inp {
	display: flex;
	gap: 8px;
}

.sub-row-inp input {
	flex: 1;
	padding: 10px 12px;
	border: 1.5px solid var(--gray-2);
	border-radius: 8px;
	font-size: 12px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--ink);
	outline: none;
	transition: .2s;
}

.sub-row-inp input:focus {
	border-color: var(--red);
}

.sub-row-inp button {
	background: var(--red);
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Plus Jakarta Sans', sans-serif;
	transition: .2s;
}

.sub-row-inp button:hover {
	background: var(--red-dk);
}

#subMsg {
	display: none;
	font-size: 11px;
	margin-top: 8px;
	color: var(--red);
}

/* ─── DIOCESES ─── */
.dio-sec {
	padding: 80px 24px;
	background: var(--white);
}

.dio-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 20px;
}

.dio-desc {
	font-size: 14px;
	color: var(--ink-2);
	max-width: 360px;
	line-height: 1.65;
}

.dio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.dio-card {
	background: var(--gray-1);
	border: 1px solid var(--gray-2);
	border-radius: 12px;
	padding: 18px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.dio-card:hover {
	background: var(--red);
	border-color: var(--red);
}

.dio-num {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--gray-2);
	line-height: 1;
	transition: color .2s;
	flex-shrink: 0;
}

.dio-card:hover .dio-num {
	color: rgba(255, 255, 255, .3);
}

.dio-name {
	font-size: 12px;
	font-weight: 700;
	color: var(--ink-2);
	line-height: 1.3;
	transition: color .2s;
}

.dio-card:hover .dio-name {
	color: var(--white);
}

/* ─── LEADERSHIP ─── */
.lead-sec {
	padding: 80px 24px;
	background: var(--gray-1);
}

.lead-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.lead-card {
	text-align: center;
}

.lead-avatar {
	width: 125px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 10px;
	background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: rgba(255, 255, 255, .35);
	outline: 3px solid var(--white);
	outline-offset: 3px;
	box-shadow: 0 0 0 4px var(--gray-2);
}

.lead-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.lead-role {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 4px;
}

.lead-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
}

/* ─── AFFILIATIONS ─── */
.aff-bar {
	background: var(--ink);
	padding: 20px 24px;
}

.aff-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.aff-lbl {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gray-3);
}

.aff-list {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: center;
}

.aff-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .75);
}

.aff-dot {
	width: 6px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-sec {
	padding: 80px 24px;
	background: var(--white);
}

.contact-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.contact-left h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	color: var(--ink);
	line-height: 1.15;
	margin-bottom: 16px;
}

.contact-left h2 em {
	color: var(--red);
	font-style: normal;
}

.contact-left p {
	font-size: 15px;
	color: var(--ink-2);
	line-height: 1.75;
	margin-bottom: 32px;
}

.c-rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.c-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.c-ico {
	width: 40px;
	height: 40px;
	background: var(--red-lt);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 1px;
}

.c-text strong {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink);
}

.c-text span {
	display: block;
	font-size: 13px;
	color: var(--ink-2);
	margin-top: 2px;
}

.socials {
	display: flex;
	gap: 10px;
}

.social-a {
	width: 40px;
	height: 40px;
	border: 1.5px solid var(--gray-2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-3);
	font-size: 15px;
	text-decoration: none;
	transition: all .2s;
}

.social-a:hover {
	border-color: var(--red);
	color: var(--red);
	background: var(--red-lt);
}

/* Form */
.c-form {
	background: var(--gray-1);
	border-radius: 20px;
	padding: 36px;
	border: 1px solid var(--gray-2);
}

.c-form h3 {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 24px;
}

.f-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.f-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}

.f-group label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-3);
}

.f-group input,
.f-group select,
.f-group textarea {
	padding: 11px 14px;
	border: 1.5px solid var(--gray-2);
	border-radius: 9px;
	font-size: 13px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--ink);
	background: var(--white);
	outline: none;
	transition: all .2s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(200, 35, 42, .07);
}

.f-group textarea {
	resize: vertical;
	min-height: 96px;
}

.f-submit {
	width: 100%;
	background: var(--red);
	color: var(--white);
	border: none;
	padding: 13px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
	cursor: pointer;
	font-family: 'Plus Jakarta Sans', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: .2s;
}

.f-submit:hover {
	background: var(--red-dk);
}

.f-success {
	display: none;
	text-align: center;
	padding: 32px 16px;
}

.f-success-icon {
	width: 60px;
	height: 60px;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
	color: var(--red-dk);
}

.f-success p {
	font-weight: 700;
	color: var(--ink);
	font-size: 15px;
	line-height: 1.5;
}

.f-success small {
	color: var(--gray-3);
	font-weight: 400;
	font-size: 13px;
}

/* ─── FOOTER ─── */
footer {
	background: var(--ink);
	padding: 48px 24px 24px;
}

.foot-inner {
	max-width: 1160px;
	margin: 0 auto;
}

.foot-top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.foot-brand strong {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	display: block;
	margin-bottom: 4px;
}

.foot-brand span {
	font-size: 10px;
	color: var(--gray-3);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.foot-brand p {
	font-size: 13px;
	color: rgba(255, 255, 255, .45);
	margin-top: 14px;
	line-height: 1.7;
	font-style: italic;
}

.foot-col h4 {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-3);
	margin-bottom: 16px;
}

.foot-col a {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	margin-bottom: 10px;
	transition: .2s;
}

.foot-col a:hover {
	color: var(--yellow);
}

.foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.foot-bottom p {
	font-size: 11px;
	color: rgba(255, 255, 255, .25);
}

.foot-socials {
	display: flex;
	gap: 10px;
}

.foot-socials a {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .35);
	font-size: 13px;
	text-decoration: none;
	transition: .2s;
}

.foot-socials a:hover {
	border-color: var(--yellow);
	color: var(--yellow);
}

/* Yellow flag accent on footer top */
.foot-accent {
	height: 4px;
	background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--yellow) 66% 100%);
}

/* ─── MODAL ─── */
.modal-bg {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.modal-bg.open {
	display: flex;
}

.modal-box {
	background: var(--white);
	border-radius: 18px;
	max-width: 520px;
	width: 100%;
	overflow: hidden;
	animation: pop .25s ease;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

@keyframes pop {
	from {
		opacity: 0;
		transform: scale(.96)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.modal-head {
	padding: 28px;
	border-bottom: 1px solid var(--gray-2);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.modal-tag {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 6px;
}

.modal-head h3 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
}

.modal-close {
	background: var(--gray-1);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	color: var(--ink-2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: .2s;
}

.modal-close:hover {
	background: var(--gray-2);
}

.modal-body {
	padding: 28px;
}

.modal-body p {
	font-size: 15px;
	color: var(--ink-2);
	line-height: 1.8;
}

/* ─── BACK TO TOP ─── */
#btt {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 42px;
	height: 42px;
	background: var(--red);
	color: var(--white);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	box-shadow: 0 4px 16px rgba(200, 35, 42, .35);
	z-index: 99;
	transition: all .2s;
}

#btt:hover {
	background: var(--red-dk);
	transform: translateY(-2px);
}

#btt.show {
	display: flex;
}

/* ─── RESPONSIVE ─── */
@media(max-width:960px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero-wrap {
		grid-template-columns: 1fr;
	}

	.hero-stats {
		display: none;
	}

	.prog-grid {
		grid-template-columns: 1fr 1fr;
	}

	.news-inner {
		grid-template-columns: 1fr;
	}

	.docs-panel {
		position: static;
	}

	.dio-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.lead-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-inner {
		grid-template-columns: 1fr;
	}

	.f-row {
		grid-template-columns: 1fr;
	}

	.foot-top {
		grid-template-columns: 1fr 1fr;
	}

	.prog-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.dio-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media(max-width:600px) {
	.prog-grid {
		grid-template-columns: 1fr;
	}

	.dio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lead-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.foot-top {
		grid-template-columns: 1fr;
	}

	.aff-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
/* ─── GALLERY ─── */
.gallery-sec {
	padding: 80px 24px;
	background: var(--white);
}
.gallery-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	gap: 20px;
	flex-wrap: wrap;
}

/* Tab bar */
.album-tabs {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	border-bottom: 2px solid var(--gray-2);
	margin-bottom: 28px;
}
.album-tab {
	padding: 10px 18px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .4px;
	color: var(--ink-2);
	cursor: pointer;
	border: none;
	background: none;
	font-family: 'Plus Jakarta Sans', sans-serif;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all .18s;
	display: flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}
.album-tab:hover { color: var(--red); }
.album-tab.active {
	color: var(--red);
	border-bottom-color: var(--red);
}
.tab-count {
	background: var(--gray-2);
	color: var(--gray-3);
	font-size: 9px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 100px;
	transition: all .18s;
}
.album-tab.active .tab-count {
	background: var(--red-lt);
	color: var(--red);
}

/* Album info bar */
.album-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: var(--gray-1);
	border-radius: 12px;
	margin-bottom: 18px;
	gap: 16px;
	flex-wrap: wrap;
	border: 1px solid var(--gray-2);
}
.album-info-left {
	display: flex;
	align-items: center;
	gap: 14px;
}
.album-icon {
	width: 42px;
	height: 42px;
	background: var(--red);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 15px;
	flex-shrink: 0;
}
.album-title-block strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 2px;
}
.album-title-block span {
	font-size: 11px;
	color: var(--ink-2);
	line-height: 1.5;
}
.album-meta-tags {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}
.album-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 100px;
	background: var(--white);
	border: 1px solid var(--gray-2);
	color: var(--ink-2);
}
.album-tag i { color: var(--red); font-size: 8px; }

/* Album panels */
.gallery-album { display: none; }
.gallery-album.active { display: block; }

/* Photo grid */
.photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.photo-item {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	aspect-ratio: 1;
	background: var(--gray-2);
}
.photo-item.hero-photo {
	grid-column: span 2;
	grid-row: span 2;
}
.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
	display: block;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20,5,5,.72) 0%, transparent 55%);
	opacity: 0;
	transition: opacity .3s;
	display: flex;
	align-items: flex-end;
	padding: 14px;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.4;
}
.photo-overlay-label small {
	font-weight: 400;
	font-size: 10px;
	color: rgba(255,255,255,.65);
	display: block;
	margin-top: 2px;
}
.photo-more-pill {
	position: absolute;
	inset: 0;
	background: rgba(20,5,5,.75);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
	gap: 5px;
}
.photo-more-pill strong {
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}
.photo-more-pill span {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,.6);
}

/* Lightbox */
.lb-bg {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(8,4,4,.93);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.lb-bg.open { display: flex; }
.lb-inner {
	position: relative;
	max-width: 860px;
	width: 100%;
	animation: lbPop .22s ease;
}
@keyframes lbPop {
	from { opacity: 0; transform: scale(.95); }
	to   { opacity: 1; transform: scale(1); }
}
.lb-img {
	width: 100%;
	max-height: 72vh;
	object-fit: contain;
	border-radius: 12px;
	display: block;
}
.lb-caption {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.lb-caption strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 3px;
}
.lb-caption span {
	font-size: 12px;
	color: rgba(255,255,255,.55);
}
.lb-counter {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	white-space: nowrap;
	flex-shrink: 0;
}
.lb-close {
	position: absolute;
	top: -46px;
	right: 0;
	background: rgba(255,255,255,.1);
	border: none;
	color: var(--white);
	width: 36px;
	height: 36px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}
.lb-close:hover { background: var(--red); }
.lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	background: rgba(255,255,255,.1);
	border: none;
	color: var(--white);
	width: 44px;
	height: 44px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}
.lb-nav:hover { background: var(--red); }
.lb-prev { left: -58px; }
.lb-next { right: -58px; }

/* ─── SERVICES ─── */
.services-sec {
	padding: 80px 24px;
	background: var(--gray-1);
	position: relative;
	overflow: hidden;
}
.services-sec::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background: var(--red);
}
.services-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	gap: 20px;
	flex-wrap: wrap;
}
.services-desc {
	font-size: 14px;
	color: var(--ink-2);
	max-width: 400px;
	line-height: 1.65;
	margin-top: 10px;
}

/* Filter pills */
.svc-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.svc-filter-btn {
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	border: 1.5px solid var(--gray-2);
	background: var(--white);
	color: var(--ink-2);
	cursor: pointer;
	font-family: 'Plus Jakarta Sans', sans-serif;
	transition: all .18s;
}
.svc-filter-btn:hover { border-color: var(--red); color: var(--red); }
.svc-filter-btn.active {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}

/* Grid */
.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.svc-card {
	background: var(--white);
	border-radius: 16px;
	padding: 26px;
	border: 1px solid var(--gray-2);
	transition: transform .25s, box-shadow .25s, border-color .25s;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.svc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gray-2);
	transition: background .25s;
}
.svc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(0,0,0,.09);
	border-color: transparent;
}
.svc-card:hover::before { background: var(--red); }

/* Wide featured card */
.svc-wide {
	grid-column: span 2;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
	flex-direction: unset;
}
.svc-left { display: flex; flex-direction: column; }
.svc-right {
	padding-left: 28px;
	border-left: 1px solid var(--gray-2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.svc-stats-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}
.svc-stat {
	text-align: center;
	background: var(--gray-1);
	border-radius: 10px;
	padding: 12px 6px;
}
.svc-stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
}
.svc-stat-lbl {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gray-3);
	margin-top: 5px;
}

/* Card internals */
.svc-icon {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	background: var(--red-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 19px;
	margin-bottom: 16px;
	transition: background .25s, color .25s;
	flex-shrink: 0;
}
.svc-card:hover .svc-icon {
	background: var(--red);
	color: var(--white);
}
.svc-cat-tag {
	display: inline-block;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	background: var(--red-lt);
	padding: 3px 10px;
	border-radius: 100px;
	margin-bottom: 10px;
}
.svc-name {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 10px;
	line-height: 1.25;
}
.svc-desc {
	font-size: 13px;
	color: var(--ink-2);
	line-height: 1.7;
	margin-bottom: 16px;
	flex: 1;
}
.svc-bullet-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 18px;
}
.svc-bullet-list li {
	font-size: 12px;
	color: var(--ink-2);
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}
.svc-bullet-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
}
.svc-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--gray-2);
	margin-top: auto;
}
.svc-status {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 700;
	color: var(--ink-2);
}
.svc-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gray-3);
	flex-shrink: 0;
}
.svc-dot-on  { background: #22C55E; }
.svc-dot-up  { background: var(--yellow); }
.svc-link {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .4px;
	color: var(--red);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: gap .2s;
}
.svc-link:hover { gap: 10px; }
.svc-hidden { display: none !important; }

/* ─── RESPONSIVE: gallery + services ─── */
@media(max-width:960px) {
	.photo-grid { grid-template-columns: repeat(3, 1fr); }
	.photo-item.hero-photo { grid-column: span 2; }
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.svc-wide { grid-column: span 2; }
	.lb-prev { left: -10px; }
	.lb-next { right: -10px; }
	.gallery-header { flex-direction: column; align-items: flex-start; }
	.services-header { flex-direction: column; align-items: flex-start; }
	.album-tabs { overflow-x: auto; flex-wrap: nowrap; }
	.album-tab { flex-shrink: 0; }
}
@media(max-width:600px) {
	.photo-grid { grid-template-columns: repeat(2, 1fr); }
	.photo-item.hero-photo { grid-column: span 2; }
	.svc-grid { grid-template-columns: 1fr; }
	.svc-wide {
		grid-column: span 1;
		display: flex !important;
		flex-direction: column;
		gap: 0;
	}
	.svc-right {
		border-left: none;
		border-top: 1px solid var(--gray-2);
		padding-left: 0;
		padding-top: 20px;
		margin-top: 20px;
	}
	.lb-prev { left: 4px; }
	.lb-next { right: 4px; }
}