@font-face {
	font-family: "Mona Sans";
	src: url("assets/fonts/MonaSans-Variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 900;
	font-display: swap;
}

:root {
	--ink: #070913;
	--cream: #ffebdb;
	--cream-deep: #f5d9c6;
	--white: #fff;
	--ember: #e96e1c;
	--ember-dark: #9f3d08;
	--lime: #f3ffdb;
	--lime-line: #bfd88e;
	--lime-text: #384326;
	--status-green: #7b9b32;
	--muted: #55535a;
	--muted-dark: #d3c7be;
	--line: rgba(7, 9, 19, 0.14);
	--focus: #1558e8;
	--shadow: 0 28px 65px -25px rgba(7, 9, 19, 0.42);
	--shadow-overlay: 0 16px 36px -16px rgba(7, 9, 19, 0.45);
	--shadow-on-dark: 0 25px 70px -22px rgba(0, 0, 0, 0.7);
	--shell: 1180px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	background: var(--ink);
	overflow-x: clip;
}

body {
	margin: 0;
	min-width: 320px;
	overflow-x: clip;
	background: var(--cream);
	color: var(--ink);
	font-family: "Mona Sans", ui-sans-serif, system-ui, sans-serif;
	font-optical-sizing: auto;
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body::selection,
body *::selection { background: var(--ember); color: var(--ink); }

a { color: inherit; text-underline-offset: 0.22em; }
img, svg { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
#main, main [id] { scroll-margin-top: 96px; }

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	transform: translateY(-150%);
	border-radius: 10px;
	background: var(--white);
	padding: 10px 15px;
	font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 235, 219, 0.94);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	font-size: 1.17rem;
	font-weight: 850;
	letter-spacing: -0.02em;
	text-decoration: none;
}
.brand-mark { width: 31px; height: 31px; flex: none; }
.primary-nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 38px); }
.primary-nav a, .language-nav a { font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.primary-nav a { color: var(--muted); }
.primary-nav a:hover { color: var(--ink); text-decoration: underline; }
.header-actions, .language-nav { display: flex; align-items: center; }
.header-actions { gap: 13px; }
.language-nav { gap: 3px; }
.language-nav a {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
}
.language-nav a[aria-current="page"] { border-color: var(--ink); }

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 12px;
	background: var(--ember);
	color: var(--ink);
	padding: 0.86rem 1.4rem;
	box-shadow: 0 12px 28px -12px rgba(159, 61, 8, 0.72);
	font-size: 0.93rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px -13px rgba(159, 61, 8, 0.8); }
.button:active { transform: translateY(0); }
.button--dark { background: var(--ink); color: var(--cream); box-shadow: none; }
.button--small { min-height: 44px; padding: 0.68rem 1.15rem; }
.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	border-bottom: 2px solid var(--line);
	font-weight: 800;
	text-decoration: none;
}
.text-link:hover { border-color: var(--ink); }

.hero { position: relative; overflow: hidden; padding-block: clamp(58px, 7vw, 92px) clamp(58px, 6vw, 78px); }
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
	align-items: center;
	gap: clamp(44px, 7vw, 86px);
}
.hero h1, .section-heading h2, .philosophy-quote, .final-cta h2 { text-wrap: balance; }
.hero h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(3.8rem, 6vw, 5.55rem);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 0.98;
}
.hero-summary {
	max-width: 54ch;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.hero-note { max-width: 56ch; margin: 16px 0 0; color: var(--muted); font-size: 0.83rem; font-weight: 650; }
.hero-visual { position: relative; min-height: min(69svh, 680px); }
.hero-photo {
	position: absolute;
	inset: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 26px;
	background: var(--cream-deep);
	box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.status-chip, .rating-badge {
	position: absolute;
	z-index: 2;
	background: var(--white);
	box-shadow: var(--shadow-overlay);
}
.status-chip {
	top: 28px;
	right: -18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--lime-line);
	border-radius: 999px;
	background: var(--lime);
	padding: 9px 14px;
	font-size: 0.82rem;
	font-weight: 800;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--status-green); }
.rating-badge {
	bottom: 32px;
	left: -24px;
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	gap: 12px;
	min-width: 205px;
	border-radius: 16px;
	padding: 14px 18px;
}
.rating-avatar {
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--ember);
	color: var(--ink);
	font-weight: 850;
}
.rating-avatar { width: 42px; height: 42px; }
.rating-badge small, .rating-badge strong { display: block; }
.rating-badge small { color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.rating-badge strong { font-size: 1.22rem; font-variant-numeric: tabular-nums; }
.rating-badge em { margin-left: 4px; color: var(--ember-dark); font-size: 0.72rem; font-style: normal; }

.pillars { border-block: 1px solid var(--line); background: var(--white); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { display: flex; align-items: center; gap: 13px; min-height: 88px; padding-inline: 28px; font-weight: 800; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar svg { width: 24px; height: 24px; flex: none; color: var(--ember-dark); }

.upcoming { background: var(--white); }
.upcoming .section-heading { max-width: 770px; }
.event-empty {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 28px;
	border-block: 1px solid var(--line);
	padding-block: 28px;
}
.event-empty strong { font-size: 1.38rem; line-height: 1.2; }
.event-empty span { color: var(--ember-dark); font-size: 0.86rem; font-weight: 800; }

.product-proof, .philosophy { background: var(--ink); color: var(--cream); }
.product-proof { overflow: hidden; padding-top: clamp(82px, 10vw, 126px); }
.product-proof .section-heading { margin-inline: auto; text-align: center; }
.product-shot {
	width: min(calc(100% - 64px), 1040px);
	margin: 52px auto 0;
	overflow: hidden;
	border-radius: 22px 22px 0 0;
	box-shadow: var(--shadow-on-dark);
}
.product-shot img { width: 100%; height: auto; }
.section { padding-block: clamp(86px, 10vw, 132px); }
.section-heading { max-width: 710px; margin-bottom: 58px; }
.section-heading h2 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 4.7rem);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1;
}
.section-heading p { max-width: 62ch; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; }
.product-proof .section-heading p { margin-inline: auto; color: var(--muted-dark); }
.how-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	align-items: start;
	gap: clamp(42px, 7vw, 82px);
}
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-block: 24px; border-bottom: 1px solid var(--line); }
.step-number {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1.5px solid var(--ember-dark);
	border-radius: 50%;
	color: var(--ember-dark);
	font-size: 0.82rem;
	font-weight: 850;
	font-variant-numeric: tabular-nums;
}
.step h3 { margin: 2px 0 6px; font-size: 1.08rem; line-height: 1.25; }
.step p { max-width: 64ch; margin: 0; color: var(--muted); font-size: 0.93rem; }
.rating-card { border: 1px solid var(--lime-line); border-radius: 20px; background: var(--lime); padding: 28px 30px; }
.rating-card h3 { margin: 0; font-size: 1.38rem; letter-spacing: -0.02em; }
.rating-card p { margin: 12px 0 0; color: var(--lime-text); font-size: 0.93rem; }
.faq { margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.faq details + details { border-top: 1px solid var(--line); }
.faq summary {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	min-height: 60px;
	cursor: pointer;
	padding: 16px 22px;
	font-size: 0.95rem;
	font-weight: 800;
	list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline-offset: -4px; }
.faq summary::after {
	content: "+";
	display: grid;
	width: 27px;
	height: 27px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ember-dark);
	font-size: 1.1rem;
	transition: transform 180ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: var(--muted); font-size: 0.91rem; }
.community-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.community-photos figure { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 16px; }
.community-photos img { width: 100%; height: 100%; object-fit: cover; }

.philosophy-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(42px, 7vw, 86px);
}
.philosophy-photo { align-self: stretch; min-height: 610px; margin: 0; overflow: hidden; border-radius: 22px; background: #201e25; }
.philosophy-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.philosophy-quote {
	margin: 0;
	color: var(--white);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.3;
}
.philosophy-body { max-width: 66ch; margin-top: 28px; color: var(--muted-dark); }
.philosophy-body p { margin: 0 0 17px; }
.founder-signature { margin: 28px 0 0; color: var(--muted-dark); font-size: 0.91rem; }
.founder-signature strong { color: var(--white); }

.final-cta { position: relative; overflow: hidden; padding-block: clamp(88px, 11vw, 142px); text-align: center; }
.court-mark { width: 220px; margin: 0 auto 34px; color: var(--ember); }
.final-cta h2 {
	max-width: 760px;
	margin: 0 auto;
	font-size: clamp(3rem, 6vw, 5.4rem);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 0.98;
}
.final-cta p { max-width: 56ch; margin: 24px auto 34px; color: var(--muted); font-size: 1.05rem; }
.site-footer { border-top: 1px solid var(--line); background: var(--white); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; min-height: 112px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; }
.footer-nav a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; font-weight: 700; text-decoration: none; }
.footer-nav a:hover { color: var(--ink); text-decoration: underline; }
.copyright { color: var(--muted); font-size: 0.78rem; }

.concept-note { margin: 16px auto 0; color: var(--muted-dark); font-size: 0.82rem; text-align: center; }

@media (max-width: 980px) {
	.primary-nav { display: none; }
	.header-inner { grid-template-columns: auto 1fr; }
	.header-actions { justify-self: end; }
	.hero-grid, .how-grid, .philosophy-grid { grid-template-columns: 1fr; }
	.hero-copy { max-width: 780px; }
	.hero-visual { width: min(100%, 620px); min-height: 600px; margin-inline: auto; }
	.how-grid { gap: 46px; }
	.footer-inner { grid-template-columns: 1fr; align-items: start; padding-block: 34px; }
	.footer-nav { justify-content: flex-start; }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.shell { width: min(calc(100% - 36px), var(--shell)); }
	.header-inner { gap: 10px; min-height: 68px; }
	.brand { font-size: 1rem; }
	.brand-mark { width: 29px; height: 29px; }
	.header-actions { gap: 5px; }
	.language-nav a { font-size: 0.72rem; }
	.header-actions .button { min-height: 44px; padding-inline: 0.78rem; font-size: 0.76rem; }
	.hero { padding-block: 48px 54px; }
	.hero-grid { gap: 46px; }
	.hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); line-height: 0.98; }
	.hero-summary { font-size: 1.05rem; }
	.hero-actions { align-items: flex-start; gap: 13px 18px; }
	.hero-visual { min-height: 470px; }
	.status-chip { top: 18px; right: -8px; font-size: 0.76rem; }
	.rating-badge { bottom: 22px; left: -8px; }
	.pillar-grid { grid-template-columns: 1fr; padding-block: 5px; }
	.pillar { min-height: 64px; padding-inline: 0; }
	.pillar + .pillar { border-top: 1px solid var(--line); border-left: 0; }
	.product-shot { width: calc(100% - 20px); margin-top: 38px; }
	.product-shot img { width: 170%; max-width: none; transform: translateX(-20.5%); }
	.section-heading { margin-bottom: 42px; }
	.section-heading h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
	.step { grid-template-columns: 38px 1fr; gap: 14px; }
	.rating-card { padding: 24px 22px; }
	.faq summary, .faq-answer { padding-inline: 19px; }
	.community-photos { grid-template-columns: 1fr; }
	.event-empty { grid-template-columns: 1fr; align-items: start; gap: 10px; }
	.philosophy-grid { gap: 38px; }
	.philosophy-photo { min-height: 430px; }
	.philosophy-quote { font-size: 1.55rem; }
	.court-mark { width: 170px; }
	.final-cta h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
}

@media (max-width: 440px) { .brand span { display: none; } }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.button { transition-property: box-shadow; }
	.button:hover, .button:active { transform: none; }
}
