:root {
	--bg: #fafafa;
	--surface: #ffffff;
	--text: #202124;
	--muted: #666;
	--accent: #ff5a1f;
	--accent-dark: #d9440d;
	--border: #e8e8e8;
	--radius: 18px;
}

main {
	max-width: min(100%, 840px)
}
.about-page,
.faq-page {
	max-width: min(100%, 840px);
	margin: 2rem auto;
}

.about-hero-card {
	padding: 2rem;
}

.about-profile-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2rem;
	align-items: start;
}

.about-headshot-stack {
  position: relative;
  width: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.08);
  border: 10px solid #00000014;
  aspect-ratio: 1;
}

.about-headshot-bg, .about-headshot {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-headshot-bg {
	filter: blur(0px) saturate(0.9);
	opacity: 0.9;
}

.about-headshot {
  position: relative;
  z-index: 1;
  object-position: center;
  filter: drop-shadow(0 0 20px #6da073);
  border-radius: 50%;
}

.about-profile-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.about-role {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2563eb;
}

.about-name {
  font-size: 1.5em;
  line-height: 1.1;
  margin: 0 !important;
  text-align: left !important;
  padding: 0 !important;
}

.about-bio p,
.about-person-bio p,
.faq-answer p {
	margin: 0 0 0.75rem;
	line-height: 1.6;
	color: #334155;
}

.about-bio p:last-child,
.about-person-bio p:last-child,
.faq-answer p:last-child {
	margin-bottom: 0;
}

.about-section {
	padding: 2rem;
	margin-top: 2rem;
}

.about-heading {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 2vw, 2rem);
}

.about-council-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.about-person-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.about-person-copy {
	padding: 1rem 1.1rem 1.2rem;
}

.about-person-copy h3 {
	margin: 0 0 0.75rem;
	font-size: 1.3rem;
}

.empty-panel {
	min-height: 120px;
	border: 1px dashed rgba(15, 23, 42, 0.2);
	border-radius: 12px;
	background: rgba(148, 163, 184, 0.04);
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	padding: 0.25rem 1rem;
}

.faq-item > summary {
	cursor: pointer;
	font-weight: 700;
	padding: 1rem 0;
	list-style: none;
}

.faq-item > summary::-webkit-details-marker {
	display: none;
}

.faq-answer {
	padding: 0 0 1rem;
	color: #334155;
}

@media (max-width: 700px) {
	.about-profile-row {
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

* {
	box-sizing: border-box;
}
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 400;
	src: url(/fonts/MaterialSymbolsOutlined.ttf) format('truetype');
}
@font-face {
	font-family: 'Molle';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url(/fonts/Molle400.ttf) format('truetype');
}
body {
	margin: 0 auto;
	padding: 24px 20px 48px;
	background: #fff;
	color: var(--text);
	font-family: 'Space Grotesk', system-ui, sans-serif;
	line-height: 1.65;
	font-size: 17px;
}
header {
	position: sticky;
	top: 10px;
	z-index: 20;
	padding: 0 20px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: min(100%, 840px);
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 10px 16px;
}
.nav-links {
	display: flex;
	gap: 16px;
	align-items: center;
}
.desktop-nav,
.desktop-login {
	display: inline-flex;
}
a {
	color: var(--accent-dark);
	font-weight: 600;
	text-decoration-thickness: 2px;
}
.login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 700;
}
animated-homepage-logo {
  position: relative;
  max-width: min(100%, 840px);
  container-type: inline-size;
  display: block;
  z-index: 9;
  height: fit-content;
}
.intro {
  text-align: center;
  margin: 0 0 20px;
  font-size: 1.5em;
}
h2 {
	font-family: 'Bangers', 'Impact', sans-serif;
	font-weight: 400;
	font-size: 2.2rem;
	letter-spacing: 1px;
	margin-top: 46px;
	margin-bottom: 14px;
	color: #111;
}
tt {
	font-family: 'Space Grotesk', monospace;
	font-weight: 700;
	color: var(--accent-dark);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 24px 0;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  gap: 0.3em;
  font-size: 1em !important;
  justify-content: left;
  align-items: start;
}
.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: start;
}
.feature-item p {
	margin: 0;
}
.feature-item.full-width {
	grid-column: 1 / -1;
}
#pricing-options-table,
#feature-comparison-table {
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
}

#pricing-options-table tr,
#feature-comparison-table tr {
	background: transparent;
	box-shadow: none;
}

#pricing-options-table td,
#feature-comparison-table td,
#pricing-options-table th,
#feature-comparison-table th {
	padding: 0.85rem 0.9rem;
}
ul {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 22px 30px;
}
li {
	margin: 7px 0;
}
dl {
	display: grid;
	gap: 16px;
}
dt {
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--accent-dark);
}
dd {
	background: var(--surface);
	padding: 16px 20px;
	margin: 0;
	border-radius: var(--radius);
}
footer {
	margin-top: 46px;
	padding: 18px;
	border-radius: var(--radius);
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--muted);
}
footer p {
	margin: 8px 0;
}
@media (max-width: 680px) {
	header {
		padding: 0;
	}
	.header-inner {
		display: flex;
		justify-content: flex-end;
		background: transparent;
		border: none;
		padding: 0;
		border-radius: 0;
		max-width: none;
		margin: 0;
	}
	.desktop-nav,
	.desktop-login {
		display: none;
	}
	.menu-toggle {
		display: inline-flex !important;
	}
	.nav-links {
		width: 100%;
		justify-content: space-between;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	main animated-homepage-logo {
	  margin-top: 80px;
	}
}

.menu-toggle {
	display: none;
	position: fixed;
	top: 18px;
	right: 18px;
	width: 52px;
	height: 52px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--surface);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	cursor: pointer;
	z-index: 40;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 99px;
}

.mobile-menu-modal {
	position: fixed;
	inset: 0;
	background: rgba(16, 18, 24, 0.72);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 35;
}

.mobile-menu-modal.is-open {
	display: flex;
}

.mobile-menu-panel {
	width: min(100%, 420px);
	background: var(--surface);
	border-radius: 28px;
	padding: 1.1rem 1.1rem 1.3rem;
	border: 1px solid var(--border);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.mobile-menu-header h2 {
	margin: 0;
	font-size: 1.8rem;
}

.menu-close {
	appearance: none;
	border: 1px solid var(--border);
	background: #fff;
	border-radius: 999px;
	padding: 0.55rem 0.8rem;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.mobile-menu-links a {
	display: block;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: rgba(255, 90, 31, 0.05);
	text-decoration: none;
	font-size: 1.05rem;
}

body.menu-open {
	overflow: hidden;
}

.directory-page {
	max-width: 1280px;
	margin: 0 auto;
}

.directory-shell {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
}

.directory-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
}

.directory-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-weight: 700;
	color: var(--text);
}

.directory-field input,
.directory-field select {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--border);
	border-radius: 12px;
	font: inherit;
	background: #fff;
	color: var(--text);
}

.directory-range {
	justify-content: flex-end;
}

.directory-range input[type='range'] {
	padding: 0;
	accent-color: var(--accent);
}

.directory-range strong {
	font-size: 0.95rem;
	color: var(--accent-dark);
}

.directory-content {
	display: flex;
	min-height: 720px;
	gap: 1rem;
}

.club-list-panel {
	flex: 0 0 360px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.75rem;
	overflow: hidden;
}

.club-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
	overflow-y: auto;
}

.club-item {
	width: 100%;
	text-align: left;
	background: rgba(255, 90, 31, 0.04);
	border: 1px solid rgba(255, 90, 31, 0.18);
	border-radius: 16px;
	padding: 0.9rem 1rem;
	cursor: pointer;
	font: inherit;
	color: var(--text);
}

.club-item.selected {
	background: rgba(255, 90, 31, 0.12);
	border-color: var(--accent);
}

.club-item-topline {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.35rem;
}

.club-item-meta {
	color: var(--muted);
	font-size: 0.88rem;
}

.empty-clubs {
	margin: 0;
	padding: 1rem;
	color: var(--muted);
}

.club-map-panel {
	flex: 1 1 auto;
	min-height: 720px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

#club-map {
	width: 100%;
	height: 100%;
	min-height: 720px;
	background: #eaf3ff;
}

@media (max-width: 680px) {
	.directory-controls {
		grid-template-columns: 1fr;
	}
	.directory-content {
		flex-direction: column;
	}
	.club-list-panel {
		flex-basis: auto;
	}
	.club-map-panel,
	#club-map {
		min-height: 420px;
	}
}

@media (min-width: 681px) {
	.menu-toggle,
	.mobile-menu-modal {
		display: none !important;
	}
}

@media (max-width: 859px) {
	.desktop-sections {
		display: none !important;
	}
	.mobile-tabs {
		display: block;
	}
}

@media (min-width: 860px) {
	.mobile-tabs {
		display: none;
	}
	.desktop-sections {
		display: flex;
	}
}
@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(/fonts/MaterialSymbolsOutlined.ttf) format('truetype');
}
@font-face {
	font-family: 'Idiqlat';
	font-style: normal;
	font-weight: 200;
	font-display: swap;
	src: url(/fonts/Idiqlat200.ttf) format('truetype');
}
@font-face {
	font-family: 'Idiqlat';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(/fonts/Idiqlat300.ttf) format('truetype');
}
@font-face {
	font-family: 'Idiqlat';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(/fonts/Idiqlat400.ttf) format('truetype');
}
h1,
h2,
h3 {
	font-family: 'Idiqlat', serif;
	font-weight: 300;
	letter-spacing: 0.02em;
	color: #111;
}
h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  margin: 0 0 8px;
  text-align: center;
  line-height: 1em;
  padding-top: 80px;
  padding-bottom: 20px;
}
h2 {
	font-size: 2rem;
	margin: 22px 0 12px;
}
footer {
	margin-top: 3rem;
	padding: 3.25rem 0 1.5rem;
	background: #f7f4f1;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	color: #1f1f1f;
}
footer .container {
	width: min(1160px, calc(100% - 2rem));
	margin: 0 auto;
}
footer .footer-cols {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1.65rem 1.8rem;
	align-items: start;
}
footer .footer-col {
	display: flex;
	flex-direction: column;
}
footer .footer-col-heading {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
	margin: 0 0 0.85rem;
}
footer .footer-page-list,
footer .footer-social-list {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
footer .footer-page-list > a,
footer .footer-page-list > span > a,
footer .footer-social-list > a,
footer .footer-social-link {
	color: #1f1f1f;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	line-height: 1.4;
}
footer .footer-page-list > a:hover,
footer .footer-page-list > span > a:hover,
footer .footer-social-list > a:hover,
footer .footer-social-link:hover {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}
footer .footer-page-list > span {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}
footer .footer-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	flex-shrink: 0;
}
footer .footer-icon {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	object-fit: contain;
}
footer .footer-copy {
	margin: 2rem 0 0;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	font-size: 0.78rem;
	color: var(--text-muted);
	letter-spacing: 0.01em;
}
@media (max-width: 980px) {
	footer .footer-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {
	footer .footer-cols {
		grid-template-columns: 1fr;
	}
	footer .container {
		width: min(100% - 1.25rem, 1180px);
	}
}
main {
	max-width: min(100%, 840px);
	margin: auto;
}

.hero {
	text-align: center;
	margin: 0 0 20px;
}

.hero p {
	margin: 0.75rem 0 0;
	color: var(--muted);
}

.section-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.2rem 1.2rem 1rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	margin: 1.25rem 0;
}

.tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tab-btn {
	appearance: none;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text);
	border-radius: 999px;
	padding: 0.7rem 1rem;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.15s ease;
}

.tab-btn[aria-selected='true'] {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.tab-panel {
	display: block;
}

.tab-panel[hidden] {
	display: none;
}

.mobile-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	margin-top: 0.9rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.mobile-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}

.mobile-meta {
	margin: 0 0 0.55rem;
	color: var(--accent-dark);
	font-weight: 700;
}

.feature-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.55rem 0;
	border-top: 1px solid var(--border);
	gap: 0.75rem;
}

.feature-label {
	flex: 1;
	color: var(--text);
}

.feature-score {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}

.legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.8rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	line-height: 1.2;
}

.legend-item.status-yes {
	background: rgba(47, 174, 88, 0.12);
	color: #1f7f45;
	border-color: rgba(47, 174, 88, 0.18);
}

.legend-item.status-partial {
	background: rgba(242, 169, 46, 0.14);
	color: #9d6200;
	border-color: rgba(242, 169, 46, 0.2);
}

.legend-item.status-no {
	background: rgba(213, 69, 69, 0.11);
	color: #af2f2f;
	border-color: rgba(213, 69, 69, 0.18);
}

.legend-item .status-icon {
	font-size: 1.1rem;
}

.plan-bullets {
	margin: 0;
	padding-left: 1.2rem;
	list-style: disc;
}

.plan-bullets li + li {
	margin-top: 0.5rem;
}

#pricing-options-table,
#feature-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

#pricing-options-table th,
#pricing-options-table td,
#feature-comparison-table th,
#feature-comparison-table td {
	padding: 0.85rem 0.9rem;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

#pricing-options-table th,
#feature-comparison-table th {
	background: rgba(255, 90, 31, 0.08);
	font-weight: 700;
	color: var(--text);
}

#pricing-options-table td strong,
#pricing-options-table td > strong {
	white-space: nowrap;
}

#feature-comparison-table td.status-cell {
	width: 4.25rem;
	text-align: center;
	vertical-align: middle;
	padding: 0.7rem 0.4rem;
}

#feature-comparison-table td.status-yes,
.mobile-card .feature-score.status-yes {
	background: rgba(47, 174, 88, 0.12);
	color: #1f7f45;
}

#feature-comparison-table td.status-partial,
.mobile-card .feature-score.status-partial {
	background: rgba(242, 169, 46, 0.14);
	color: #9d6200;
}

#feature-comparison-table td.status-no,
.mobile-card .feature-score.status-no {
	background: rgba(213, 69, 69, 0.11);
	color: #af2f2f;
}

#pricing-options-table tbody tr:last-child td,
#feature-comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.material-symbols,
.status-icon,
.feature-score .material-symbols {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-variation-settings: 'FILL' 1;
}

.desktop-sections {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 860px) {
	.desktop-sections {
		display: flex;
		grid-template-columns: none;
		flex-direction: column;
	}

	.mobile-tabs {
		display: none;
	}
}

.viewport .bg {
	z-index: -1;
	height: 100%;
}
.viewport .logo {
	width: 100%;
	transform: scale(1.05);
}
.viewport {
	width: min(1000px, 100%);
	height: fit-content;
	position: relative;
	overflow: hidden;
	display: flex;
	box-shadow: 0px 0px 20px #fff;
}
animated-homepage-logo span {
  font-family: 'Molle', cursive;
  font-style: italic;
  position: absolute;
  bottom: -0.3em;
  right: 0;
  font-size: 8cqw;
  display: block;
}
.viewport .track {
	display: flex;
	animation: scroll 22s linear infinite;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	filter: brightness(0.95);
}
.viewport .track img {
	display: block;
	flex-shrink: 0;
}
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.club-item-banner {
  max-width: 100%;
}
.profile-meta h1 {
  text-align: left;
  font-size: 2em;
  padding: 0;

}
.intro-stub {
  margin-top: 1rem;
  color: #475569;
}
.headshot-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
}
.headshot-bg-container {
  position: relative;
  border: 10px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  overflow: hidden;
  width: 220px;
  aspect-ratio: 1;
}
.headshot {
  display: block;
  object-fit: cover;
  border-radius: 50%;
  object-position: top left;
  z-index: 1;
  position: relative;
  width: 89%;
  filter: drop-shadow(0 0 20px #a1c495c7);
}
