:root {
	--navy: #0b2341;
	--navy-deep: #07182d;
	--navy-mid: #12305a;
	--gold: #c9a24d;
	--gold-soft: #e0c37a;
	--red: #9c1c2d;
	--red-deep: #7d1523;
	--white: #ffffff;
	--cream: #f6f3ee;
	--gray: #ece8e1;
	--ink: #1c2430;
	--muted: #5c6570;
	--line: rgba(11, 35, 65, 0.12);
	--shadow: 0 16px 40px rgba(7, 24, 45, 0.12);
	--serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
	--sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
	--container: 1180px;
	--header-h: 84px;
	--radius: 4px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
}

button,
input,
select,
textarea,
label,
.btn,
.site-nav,
.utility-bar,
.text-link,
.stat span,
.section-kicker,
.page-hero__kicker,
.join__kicker,
.site-footer h2 {
	font-family: var(--sans);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0 0 1rem;
}

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.6em;
	color: var(--navy);
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: -40px;
	z-index: 100;
	background: var(--gold);
	color: var(--navy);
	padding: 8px 12px;
	font-weight: 600;
}

.skip-link:focus {
	top: 12px;
}

.icon {
	display: inline-flex;
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.icon--sm {
	width: 14px;
	height: 14px;
}

.icon--lg {
	width: 42px;
	height: 42px;
	color: var(--gold);
}

.icon--stat {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 auto;
	font-size: 2.5rem;
	line-height: 1;
	color: var(--gold);
}

.icon--gold {
	color: var(--gold);
}

.icon--btn {
	width: 18px;
	height: 18px;
}

.icon--chevron {
	width: 14px;
	height: 14px;
	margin-left: 2px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 22px;
	border-radius: var(--radius);
	border: 2px solid transparent;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--red {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}

.btn--red:hover {
	background: var(--red-deep);
	border-color: var(--red-deep);
	color: var(--white);
}

.btn--gold {
	background: var(--gold);
	color: var(--navy-deep);
	border-color: var(--gold);
}

.btn--gold:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
	color: var(--navy-deep);
}

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: var(--gold);
}

.btn--ghost:hover {
	background: var(--gold);
	color: var(--navy-deep);
}

.btn--outline {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}

.btn--outline:hover {
	background: var(--navy);
	color: var(--white);
}

.btn--navy {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.btn--navy:hover {
	background: var(--navy-mid);
	border-color: var(--navy-mid);
	color: var(--white);
}

.btn--lg {
	min-height: 56px;
	padding: 0 28px;
	font-size: 14px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.text-link:hover {
	color: var(--red-deep);
}

.text-link--light {
	color: var(--gold);
}

.text-link--light:hover {
	color: var(--gold-soft);
}

/* Utility bar */
.utility-bar {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.utility-bar__inner {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding: 6px 0;
}

.utility-bar p {
	margin: 0;
}

.utility-bar a,
.utility-bar__place {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.utility-bar a:hover {
	color: var(--gold);
}

.utility-bar__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.brand img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand__kicker {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 600;
}

.brand__name {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--navy);
}

.brand--footer .brand__kicker,
.brand--footer .brand__name {
	color: var(--white);
}

.brand--footer .brand__kicker {
	color: var(--gold-soft);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--navy);
	padding: 8px;
	cursor: pointer;
}

.icon--nav-close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .icon--nav-open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .icon--nav-close {
	display: inline-flex;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 22px;
}

.site-nav__list > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--navy);
	padding: 8px 0;
}

.site-nav__list > li > a:hover,
.site-nav__list > li > a.is-active {
	color: var(--red);
}

.site-nav__list > li > a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--red);
}

.has-sub {
	position: relative;
}

.subnav {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 230px;
	padding: 10px 0;
	background: var(--white);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.subnav a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--navy);
}

.subnav a:hover {
	background: var(--cream);
	color: var(--red);
}

.btn--nav {
	min-height: 42px;
	padding: 0 16px;
	white-space: nowrap;
}

/* Hero */
.hero {
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: clamp(440px, 30.8vw, 600px);
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--white);
	background: var(--navy-deep);
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: 70% 45%;
	z-index: 0;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgb(7, 24, 45) 0%,
		rgba(7, 24, 45, 0.94) 18%,
		rgba(7, 24, 45, 0.55) 42%,
		rgba(7, 24, 45, 0.18) 62%,
		rgba(7, 24, 45, 0) 78%
	);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 36px 0 72px;
}

.hero h1 {
	color: var(--white);
	font-size: clamp(36px, 4.6vw, 56px);
	font-weight: 600;
	margin-bottom: 0.2em;
}

.hero h1 span {
	display: block;
	font-style: normal;
	font-weight: 600;
	color: var(--gold);
}

.hero p {
	max-width: 22em;
	font-size: clamp(20px, 2.2vw, 24px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

/* Stats */
.stats {
	position: relative;
	z-index: 3;
	background: var(--cream);
	padding: 0 0 20px;
	margin-top: -56px;
}

.stats__card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(7, 24, 45, 0.14);
	padding: 26px 8px;
}

.stat {
	display: flex;
	align-items: center;
	gap: 18px;
	text-align: left;
	padding: 8px 28px;
}

.stat + .stat {
	border-left: 1px solid #d8d4cc;
}

.stat__copy {
	min-width: 0;
}

.stat strong {
	display: block;
	font-family: var(--serif);
	font-size: 34px;
	line-height: 1;
	color: var(--navy);
}

.stat span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--navy);
}

.stat p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
}

/* Sections */
.section {
	padding: 48px 0;
}

.section--cream {
	background: var(--cream);
}

.section--gray {
	background: var(--gray);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
}

.section-head h2 {
	font-size: clamp(32px, 4vw, 44px);
	margin: 0;
}

.section-head h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 14px;
	background: var(--red);
}

/* Event cards */
.event-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.events-empty {
	margin: 0;
	padding: 28px 0 8px;
	color: var(--muted);
	max-width: 40em;
}

.event-card {
	background: var(--white);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.event-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.event-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.event-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.event-card:hover .event-card__media img {
	transform: scale(1.04);
}

.event-card__date {
	position: absolute;
	left: 16px;
	top: 16px;
	min-width: 70px;
	padding: 10px 12px 8px;
	background: var(--navy);
	color: var(--white);
	text-align: center;
	line-height: 1.1;
}

.event-card__date b {
	display: block;
	font-family: var(--serif);
	font-size: 22px;
}

.event-card__date span {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.event-card__body {
	padding: 22px 22px 24px;
}

.event-card h3 {
	font-size: 26px;
	margin-bottom: 8px;
}

.event-card__meta {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--muted);
	font-size: 15px;
	margin-bottom: 16px;
}

.event-card__meta .icon {
	color: var(--gold);
	margin-top: 3px;
}

/* Meeting + scholarships split */
.home-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 56px;
	align-items: start;
}

.home-split__panel + .home-split__panel {
	padding-left: 56px;
	border-left: 1px solid var(--line);
}

.home-split__panel h2 {
	font-size: clamp(30px, 3.2vw, 40px);
	margin-bottom: 12px;
}

.home-split__panel > p {
	color: var(--muted);
	max-width: 34em;
}

.home-split__facts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0 24px;
}

.home-split__facts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
}

.home-split__facts .icon {
	color: var(--gold);
	flex-shrink: 0;
	margin-top: 2px;
}

/* Fish fry */
.fish-fry {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.fish-fry__visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.fish-fry__photo {
	width: min(100%, 430px);
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 18px 50px rgba(7, 24, 45, 0.18);
	border: 10px solid var(--white);
	outline: 2px solid var(--gold);
}

.fish-fry__badge {
	position: absolute;
	left: 6%;
	bottom: 8%;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
	box-shadow: 0 10px 24px rgba(7, 24, 45, 0.25);
}

.fish-fry__badge span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.35;
}

.fish-fry__content h2 {
	font-size: clamp(36px, 4vw, 48px);
}

.fish-fry__content p {
	color: var(--muted);
	max-width: 36em;
}

.fish-fry__facts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 22px 0 28px;
}

.fish-fry__facts li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: var(--navy);
}

.fish-fry__facts .icon {
	color: var(--gold);
}

.fish-fry__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
}

/* Mission */
.section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.section-kicker {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.section-head--center h2::after {
	display: none;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.mission-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	text-align: left;
	padding: 8px 28px;
}

.mission-card + .mission-card {
	border-left: 1px solid #d8d4cc;
}

.icon--mission {
	flex: 0 0 auto;
	font-size: 34px;
	line-height: 1.2;
	color: var(--gold);
}

.mission-card h3 {
	font-size: 20px;
	margin: 0 0 8px;
}

.mission-card p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
}

/* Gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.gallery figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery figure:hover img {
	transform: scale(1.05);
}

.gallery-wrap {
	position: relative;
}

.gallery-wrap .btn {
	position: absolute;
	left: 50%;
	bottom: -22px;
	transform: translateX(-50%);
}

.gallery-wrap .btn:hover {
	transform: translateX(-50%) translateY(-1px);
}

/* Testimonial */
.testimonial {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 40px;
}

.quote-mark {
	display: block;
	align-self: flex-start;
	font-family: var(--serif);
	font-weight: 700;
	font-size: 110px;
	line-height: 0.55;
	color: var(--gold);
}

.testimonial blockquote {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(19px, 2.2vw, 25px);
	font-weight: 600;
	line-height: 1.5;
	color: var(--navy);
	max-width: 30em;
}

.testimonial__person {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-left: 40px;
	border-left: 1px solid #d5d0c7;
}

.testimonial__photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--white);
	box-shadow: var(--shadow);
}

.testimonial__who {
	line-height: 1.35;
	white-space: nowrap;
}

.testimonial__who strong {
	display: block;
	font-size: 16px;
	color: var(--navy);
}

.testimonial__who span {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	color: var(--muted);
}

/* Join CTA */
.join {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: var(--white);
	padding: 52px 0;
}

.join::before {
	content: "";
	position: absolute;
	right: 8%;
	top: 50%;
	width: 340px;
	height: 340px;
	transform: translateY(-50%);
	background: url("/images/3rddegree-64.png") center / contain no-repeat;
	opacity: 0.08;
	pointer-events: none;
}

.join__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.join h2 {
	color: var(--white);
	font-size: clamp(32px, 4vw, 44px);
	margin: 0;
}

.join__kicker {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.join__text {
	margin: 12px 0 0;
	max-width: 34em;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
}

/* Interior pages */
.page-hero {
	background: var(--navy-deep);
	color: var(--white);
	padding: 48px 0 44px;
}

.page-hero h1 {
	color: var(--white);
	font-size: clamp(34px, 4vw, 48px);
	margin: 0 0 10px;
}

.page-hero p {
	margin: 0;
	max-width: 38em;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.86);
}

.page-hero__kicker {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.page-content {
	padding: 48px 0;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
	gap: 40px;
	align-items: start;
}

.page-copy h2 {
	font-size: clamp(26px, 3vw, 32px);
	margin-top: 0;
}

.page-copy h2:not(:first-of-type) {
	margin-top: 1.75rem;
}

.page-copy h2 + p,
.page-copy p {
	color: var(--muted);
}

.page-copy ul {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.page-copy li {
	position: relative;
	padding-left: 1.15em;
	margin-bottom: 0.55em;
	color: var(--ink);
}

.page-copy ul > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.page-aside {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 24px;
}

.page-aside h2 {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 16px;
}

.page-aside__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.page-aside__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--navy);
	font-weight: 600;
	line-height: 1.4;
}

.page-aside__list .icon,
.page-aside__list i {
	color: var(--gold);
	margin-top: 2px;
	flex: 0 0 auto;
}

.page-aside__list i {
	width: 1.15em;
	text-align: center;
}

.page-aside__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.page-aside__actions .btn {
	width: 100%;
}

.bingo-prices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 1.25rem;
}

.bingo-price {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 16px 12px;
	text-align: center;
}

.bingo-price strong {
	display: block;
	font-family: var(--serif);
	font-size: clamp(22px, 3vw, 28px);
	color: var(--navy);
	line-height: 1.2;
}

.bingo-price span {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.35;
}

.bingo-faq {
	margin: 0 0 0.5rem;
}

.bingo-faq dt {
	font-weight: 700;
	color: var(--navy);
	margin: 1.15rem 0 0.35rem;
}

.bingo-faq dt:first-child {
	margin-top: 0;
}

.bingo-faq dd {
	margin: 0;
	color: var(--muted);
}

.bingo-rules {
	counter-reset: bingo-rule;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bingo-rules > li {
	counter-increment: bingo-rule;
	position: relative;
	padding: 0.15rem 0 0.85rem 2.6em;
	margin: 0;
	color: var(--ink);
}

.bingo-rules > li::before {
	content: counter(bingo-rule);
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 1.7em;
	height: 1.7em;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.7em;
	text-align: center;
}

.bingo-rules > li.is-alert {
	background: #f8efd0;
	border-radius: 6px;
	padding: 12px 14px 12px 2.8em;
	margin: 4px 0 12px;
	font-weight: 700;
}

.bingo-rules > li.is-alert::before {
	top: 12px;
	left: 10px;
	background: var(--gold);
	color: var(--navy);
}

@media (max-width: 900px) {
	.page-layout {
		grid-template-columns: 1fr;
	}

	.bingo-prices {
		grid-template-columns: 1fr;
	}
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.8);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 32px;
	padding: 44px 0 36px;
}

.site-footer h2 {
	color: var(--gold);
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer a:hover {
	color: var(--gold-soft);
}

.footer-contact li + li,
.footer-links li + li {
	margin-top: 10px;
}

.footer-contact a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 13px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	color: var(--gold);
}

/* Responsive */
@media (max-width: 980px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--white);
		border-bottom: 1px solid var(--line);
		padding: 16px 20px 24px;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list > li > a {
		padding: 12px 0;
	}

	.subnav {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding: 0 0 8px 12px;
	}

	.stats__card {
		grid-template-columns: 1fr;
	}

	.stat + .stat {
		border-left: 0;
		border-top: 1px solid #d8d4cc;
		padding-top: 24px;
		margin-top: 8px;
	}

	.event-grid,
	.fish-fry,
	.home-split,
	.mission-grid,
	.gallery {
		grid-template-columns: 1fr 1fr;
	}

	.home-split {
		gap: 0 36px;
	}

	.home-split__panel + .home-split__panel {
		padding-left: 36px;
	}

	.mission-grid {
		gap: 24px 0;
	}

	.mission-card:nth-child(3) {
		border-left: 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.join__inner,
	.testimonial,
	.section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-head--center {
		align-items: center;
	}

	.testimonial {
		grid-template-columns: auto 1fr;
	}

	.testimonial__person {
		grid-column: 2;
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 720px) {
	.utility-bar__links span {
		display: none;
	}

	.hero {
		min-height: 500px;
	}

	.hero__bg {
		object-position: 80% 30%;
	}

	.hero::before {
		background: linear-gradient(
			to right,
			rgb(7, 24, 45) 0%,
			rgba(7, 24, 45, 0.9) 36%,
			rgba(7, 24, 45, 0.35) 68%,
			rgba(7, 24, 45, 0) 100%
		);
	}

	.event-grid,
	.fish-fry,
	.home-split,
	.mission-grid,
	.gallery,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.home-split__panel + .home-split__panel {
		padding-left: 0;
		border-left: 0;
		margin-top: 36px;
		padding-top: 36px;
		border-top: 1px solid var(--line);
	}

	.mission-card + .mission-card {
		border-left: 0;
		border-top: 1px solid #d8d4cc;
		padding-top: 24px;
	}

	.gallery {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
		padding: 16px 0;
	}

	.fish-fry__badge {
		width: 110px;
		height: 110px;
	}

	.officer-grid,
	.album-grid {
		grid-template-columns: 1fr 1fr;
	}

	.past-gk {
		columns: 2;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

.page-copy h3 {
	font-size: 22px;
	margin: 1.6rem 0 0.6rem;
}

.page-copy h3:first-child {
	margin-top: 0;
}

.page-figure {
	margin: 0 0 1.5rem;
	border-radius: 8px;
	overflow: hidden;
}

.page-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.page-copy--prose p {
	margin-bottom: 1.1rem;
	color: var(--ink);
	line-height: 1.7;
}

.page-copy--prose p.byline {
	color: var(--muted);
	font-style: italic;
	margin-top: -0.4rem;
}

.calendar-frame {
	width: 100%;
	min-height: 640px;
	border: 0;
	border-radius: 8px;
	background: var(--white);
}

.officer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.officer-card {
	text-align: center;
}

.officer-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
	background: var(--cream);
}

.officer-card strong {
	display: block;
	color: var(--navy);
	font-size: 16px;
}

.officer-card span {
	display: block;
	color: var(--muted);
	font-size: 14px;
	margin-top: 2px;
}

.officer-card__contact {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.officer-card__contact a {
	color: var(--navy);
	font-size: 13px;
	font-weight: 600;
}

.officer-card__contact a:hover {
	color: var(--red);
}

.past-gk {
	columns: 3;
	column-gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.past-gk li {
	break-inside: avoid;
	padding: 4px 0;
	color: var(--ink);
	font-size: 15px;
}

.past-gk li::before {
	content: none;
}

.site-form {
	display: grid;
	gap: 16px;
	max-width: 720px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-row--3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.site-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}

.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="tel"],
.site-form input[type="number"],
.site-form input[type="date"],
.site-form textarea,
.site-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font: inherit;
	color: var(--ink);
	background: var(--white);
}

.site-form textarea {
	min-height: 140px;
	resize: vertical;
}

.site-form .hint {
	display: block;
	font-size: 13px;
	color: var(--muted);
	font-weight: 400;
	margin-top: 4px;
}

.choice-row {
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
}

.choice-row label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-weight: 500;
}

.album-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.album-card {
	display: block;
	color: inherit;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.album-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: var(--cream);
}

.album-card__body {
	padding: 14px 16px 16px;
}

.album-card strong {
	display: block;
	color: var(--navy);
}

.album-card span {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 14px;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.photo-grid figure {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: var(--cream);
}

.photo-grid img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.menu-photo {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 8px 0 20px;
}

.cc-badges {
	max-width: 360px;
	height: auto;
	margin: 8px 0 20px;
}

.ticket-form {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 24px;
	margin: 1.5rem 0;
}

.ticket-counter {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ticket-counter button {
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--navy);
	font-size: 1.3em;
	border-radius: 4px;
	cursor: pointer;
}

.ticket-counter input {
	width: 72px;
	text-align: center;
}

.donation-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.price-summary {
	background: var(--white);
	padding: 16px;
	border-radius: 4px;
	margin: 16px 0;
}

.price-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
}

.total-row {
	border-top: 2px solid var(--navy);
	padding-top: 8px;
	margin-top: 8px;
	font-weight: 700;
}

#card-container {
	margin: 1em 0;
	min-height: 90px;
}

#payment-status {
	margin-top: 1em;
	padding: 1em;
	border-radius: 4px;
	display: none;
}

#payment-status.success {
	display: block;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

#payment-status.error {
	display: block;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.page-hero p.page-hero__when {
	margin: 0 0 14px;
	max-width: none;
	font-family: var(--serif);
	font-size: clamp(22px, 3.2vw, 34px);
	font-weight: 600;
	line-height: 1.25;
	color: var(--gold);
}

.join--urgent {
	background: var(--red);
	overflow: visible;
}

.join--urgent::before {
	display: none;
}

.join--urgent .join__kicker {
	color: var(--gold-soft);
}

.join--urgent .join__inner {
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.join--urgent .join__copy {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 46em;
}

.join--urgent .join__inner > .btn {
	flex: 0 0 auto;
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 1.5rem;
}

.highlight-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 18px 16px 16px;
}

.highlight-card h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.highlight-card p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
}

.highlight-card--urgent {
	background: #f8e8ea;
	border-color: rgba(156, 28, 45, 0.28);
}

.highlight-card--urgent h3 {
	color: var(--red);
}

.date-spotlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 88px;
	margin: 0 0 18px;
	padding: 10px 8px 12px;
	background: var(--navy);
	color: var(--white);
	border-radius: 8px;
	line-height: 1;
}

.date-spotlight b {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.date-spotlight span {
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 700;
	margin-top: 4px;
}

.form-banner {
	padding: 12px 14px;
	border-radius: 6px;
	margin: 0 0 16px;
	font-weight: 600;
}

.form-banner--success {
	background: #e8f5ec;
	color: #1e5a32;
	border: 1px solid #b7dfc4;
}

.form-banner--error {
	background: #fdecee;
	color: var(--red-deep);
	border: 1px solid #f3c4cb;
}

.hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 900px) {
	.highlight-grid {
		grid-template-columns: 1fr;
	}
}
