@font-face {
	font-family: 'akira';
	src: url('https://www.fearlessbrothers.com/_next/static/media/akira_expanded-s.p.0ik3fdjzcxq93.otf?dpl=dpl_ARyLmGsJp8VFRRVLSGgoAY7RhG4Y') format('opentype');
	font-display: swap;
	font-weight: 800;
}

:root {
	--brand-black: #0a0a0a;
	--panel-black: #111111;
	--panel-black-2: #171717;
	--gold: #fcebc9;
	--cream: #f4efe5;
	--muted: rgba(255, 255, 255, 0.72);
	--soft-muted: rgba(255, 255, 255, 0.58);
	--line: rgba(255, 255, 255, 0.16);
	--accent: #cebc9f;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--cream);
	font-family: 'Montserrat', Arial, sans-serif;
	background:
		radial-gradient(circle at 20% 16%, rgba(252, 235, 201, 0.18) 0%, transparent 34rem),
		linear-gradient(145deg, #050505 0%, var(--brand-black) 48%, #171717 100%);
}

main {
	width: min(100%, 540px);
	margin: 0 auto;
	padding: 44px 18px 48px;
}

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}


.hero {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 550px;
	padding: 48px 24px 34px;
	overflow: hidden;
	border: 1px solid rgba(252, 235, 201, 0.25);
	border-radius: 8px;
	background: #252525 url('images/fearlessMain-1080.jpg') 58% center / cover no-repeat;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: '';
	background: rgba(36, 36, 36, 0.68);
}

.hero > * {
	position: relative;
	z-index: 1;
}

.home-link {
	position: absolute;
	top: 21px;
	left: 20px;
	color: var(--gold);
	font-family: 'Barlow Condensed', 'DIN Condensed', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.home-link:hover,
.home-link:focus-visible {
	color: var(--cream);
}

.hero .hero-logo {
	position: absolute;
	top: 2px;
	right: 18px;
	width: 64px;
	height: auto;
}

.hero .subtitle {
	margin-top: 12px;
}

.hero .socials {
	margin: 30px 0 0;
}

.hero .socials a {
	background: rgba(17, 17, 17, 0.78);
}

.hero .mission-heading,
.hero .subtitle,
.hero .socials {
	transform: translateY(40px);
}

.hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1 {
	margin: 0;
	font-size: clamp(1.45rem, 10vw, 3.8rem);
	line-height: 0.92;
	font-weight: 800;
	font-family: 'akira', Impact, Haettenschweiler, 'Arial Black', sans-serif;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--cream);
}

h1 span {
	display: block;
}

.hero-highlight {
	color: var(--accent);
}

.mission-heading {
	margin: 20px 0 0;
	font-size: clamp(0.9rem, 2.7vw, 1rem);
	line-height: 1.1;
	font-weight: 700;
	font-family: 'Montserrat', Arial, sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--gold);
}

.subtitle {
	max-width: 36rem;
	margin: 0;
	color: var(--muted);
	font-size: clamp(0.95rem, 2.8vw, 1.15rem);
	font-weight: 400;
	line-height: 1.5;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 18px 0;
}

.socials a,
.links a {
	text-decoration: none;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(206, 188, 159, 0.36);
	border-radius: 999px;
	color: var(--accent);
	background: rgba(24, 24, 24, 0.92);
	font-family: 'Barlow Condensed', 'DIN Condensed', sans-serif;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.socials a img,
.socials a svg {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
	fill: currentColor;
}

.mail-link {
	color: var(--accent);
}

.socials a:hover,
.socials a:focus-visible {
	transform: translateY(-2px);
}

.links {
	width: 100%;
	display: grid;
	gap: 12px;
	margin-top: 0;
}

.links a,
.links details {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 20px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	color: var(--gold);
	background: transparent;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 0.96rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.register-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: var(--gold) !important;
	color: var(--brand-black) !important;
}

.register-btn .info-top,
.register-btn .info-bottom {
	color: var(--brand-black);
}

.register-btn:hover,
.register-btn:focus-visible {
	background: var(--cream) !important;
}

.floating-register {
	display: none;
}

@media (min-width: 900px) {
	.floating-register {
		position: fixed;
		top: 20px;
		right: 24px;
		z-index: 20;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 12px 22px;
		border: 2px solid var(--gold);
		border-radius: 999px;
		background: var(--gold);
		color: var(--brand-black);
		font-family: 'Montserrat', Arial, sans-serif;
		font-size: 0.85rem;
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
		transition: transform 180ms ease, background 180ms ease;
	}

	.floating-register:hover,
	.floating-register:focus-visible {
		background: var(--cream);
		transform: translateY(-2px);
	}
}

.info-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 58px;
	padding: 0 !important;
	border: 2px solid var(--gold) !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	line-height: 1.2;
	width: 100%;
}

.info-button summary {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 58px;
	padding: 12px 20px;
	cursor: pointer;
	list-style: none;
}

.info-button > summary.info-top {
	font-size: 0.96rem;
}

.info-button[open] {
	padding: 12px 20px !important;
}

.info-button summary::-webkit-details-marker {
	display: none;
}

.info-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: none;
}

.retreat-date {
	color: var(--gold);
	font-size: 0.95rem;
	font-weight: 700;
}

.retreat-description {
	max-width: 28rem;
	margin: 4px 0 8px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.retreat-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	gap: 8px;
	padding: 10px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	color: var(--gold);
	font-size: 0.68rem;
	line-height: 1.35;
	text-align: center;
}

.info-detail a {
	padding: 0;
	border: 0;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
}

.faq-section {
	width: 100%;
	margin-top: 0;
	border: 2px solid var(--gold);
	border-radius: 8px;
	background: var(--panel-black-2);
	text-align: left;
}

.faq-heading,
.faq-item summary {
	cursor: pointer;
	list-style: none;
}

.faq-heading {
	display: block;
	padding: 16px 20px;
	color: var(--gold);
	font-size: 0.96rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

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

.faq-list {
	padding: 0 20px 12px;
}

.faq-item {
	border-top: 1px solid var(--line);
}

.faq-item summary {
	padding: 13px 0;
	color: var(--cream);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.faq-item p {
	margin: -2px 0 13px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.info-top {
	display: block;
	font-size: clamp(0.96rem, 2vw, 1.1rem);
	font-weight: 600;
	letter-spacing: 0;
}

.info-bottom {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
}

.youtube-link {
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	overflow: hidden;
	background: transparent;
	margin-top: 0;
}

.youtube-link iframe {
	display: block;
	width: 100%;
	height: clamp(220px, 52vw, 300px);
	border: 0;
	background: #000;
}

.video-placeholder {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(220px, 52vw, 300px);
	padding: 0;
	border: 0;
	color: var(--cream);
	cursor: pointer;
	background: #000;
}

.video-placeholder img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.82;
}

.video-placeholder span {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 12px 18px;
	border: 1px solid var(--gold);
	border-radius: 4px;
	color: var(--gold);
	font-family: 'Barlow Condensed', 'DIN Condensed', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(10, 10, 10, 0.78);
	transform: translate(-50%, -50%);
}

.video-placeholder:hover img,
.video-placeholder:focus-visible img {
	opacity: 1;
}

.video-noscript {
	display: block;
	padding: 12px;
	color: var(--gold);
	font-weight: 600;
	text-align: center;
}

.youtube-link-secondary {
	margin-top: 0;
}

.links a:hover,
.links a:focus-visible,
.info-button summary:focus-visible {
	transform: translateY(-2px);
}

.quote {
	width: 100%;
	margin: 0;
	padding: 32px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	background: var(--panel-black-2);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

blockquote {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
}

.more-testimonials {
	width: 100%;
	margin-top: 0;
	border: 2px solid var(--gold);
	border-radius: 8px;
	background: var(--panel-black-2);
	text-align: left;
}

.more-testimonials > summary,
.testimonial-item summary {
	cursor: pointer;
	list-style: none;
}

.more-testimonials > summary {
	padding: 14px 20px;
	color: var(--gold);
	font-size: 0.96rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

.more-testimonials > summary::-webkit-details-marker,
.testimonial-item summary::-webkit-details-marker {
	display: none;
}

.testimonial-list {
	padding: 0 20px 10px;
}

.testimonial-item {
	border-top: 1px solid var(--line);
}

.testimonial-item summary {
	padding: 12px 0;
	color: var(--cream);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}

.testimonial-item p {
	margin: -2px 0 13px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

.footer-links {
	width: 100%;
	display: grid;
	gap: 12px;
	margin-top: 0;
}

.footer-links a {
	display: block;
	width: 100%;
	padding: 17px 18px;
	border: 2px solid var(--gold);
	border-radius: 8px;
	color: var(--gold);
	text-align: center;
	text-decoration: none;
	background: transparent;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 0.96rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	transform: translateY(-2px);
}

@media (max-width: 380px) {
	.retreat-meta {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

.footer-links .site-credit {
	width: 100%;
	padding: 0 12px;
	border: 0;
	color: var(--soft-muted);
	font-size: 0.52rem;
	font-weight: 500;
	text-transform: none;
}

.legal-links {
	display: grid;
	gap: 4px;
	width: 100%;
}

.footer-links .copyright {
	margin: 0;
	color: var(--soft-muted);
	font-size: 0.68rem;
	font-weight: 500;
	text-align: center;
}
