:root {
	--bg: #f6f4ed;
	--surface: rgba(255, 255, 255, 0.92);
	--surface-strong: #fffdf8;
	--text: #19261f;
	--muted: #5a695f;
	--line: rgba(25, 38, 31, 0.12);
	--forest: #1f5b43;
	--forest-deep: #123827;
	--forest-dark: #0f2d18;
	--gold: #ffcc1b;
	--gold-soft: rgba(255, 204, 27, 0.16);
	--shadow: 0 20px 50px rgba(16, 32, 25, 0.14);
	--radius-lg: 28px;
	--radius-md: 20px;
	--header-height: 84px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(255, 204, 27, 0.08), transparent 28%),
		linear-gradient(180deg, #f7f5ee 0%, #f1eee6 50%, #f8f4ec 100%);
	font-family: 'Noto Sans KR', sans-serif;
	line-height: 1.7;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: -4rem;
	z-index: 200;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: var(--surface-strong);
	box-shadow: var(--shadow);
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 1rem;
}

.section-shell {
	width: min(1160px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		backdrop-filter 0.25s ease;
}

.site-header--solid {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 24px rgba(10, 26, 18, 0.12);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1160px, calc(100% - 2rem));
	min-height: var(--header-height);
	margin: 0 auto;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.brand__logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.brand__text {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	line-height: 1;
	font-size: 1.08rem;
	color: white;
	font-weight: 700;
	white-space: nowrap;
}

.brand__text strong {
	color: var(--gold);
	font-size: inherit;
}

.site-header--solid .brand__text {
	color: var(--forest-deep);
}

.site-header--solid .brand__text strong {
	color: #dba900;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.98rem;
	font-weight: 500;
	color: white;
}

.site-nav a {
	position: relative;
	padding: 0.35rem 0;
}

.site-nav__ghost {
	padding: 0.35rem 0;
	opacity: 0.72;
	white-space: nowrap;
	user-select: none;
}

.site-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.site-header--solid .site-nav {
	color: var(--forest-deep);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.35rem;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.sr-only) {
	width: 18px;
	height: 2px;
	background: white;
}

.site-header--solid .menu-toggle {
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.9);
}

.site-header--solid .menu-toggle span:not(.sr-only) {
	background: var(--forest-deep);
}

.hero {
	position: relative;
	min-height: 100vh;
	padding: 0;
	background: linear-gradient(180deg, #132c19 0%, #132b19 100%);
	color: white;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	left: -10%;
	bottom: -2%;
	width: 54%;
	height: 26%;
	background: rgba(7, 35, 16, 0.38);
	clip-path: polygon(0 18%, 10% 8%, 20% 14%, 30% 10%, 43% 24%, 58% 18%, 70% 34%, 82% 28%, 100% 50%, 100% 100%, 0 100%);
	opacity: 0.95;
}

.hero::after {
	content: '';
	position: absolute;
	right: -14%;
	bottom: -18%;
	width: 52%;
	height: 34%;
	background: radial-gradient(circle at center, rgba(8, 30, 16, 0.2) 0, rgba(8, 30, 16, 0.2) 53%, transparent 54%);
	opacity: 0.6;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 12, 7, 0.04), rgba(4, 12, 7, 0.12));
}

.hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.6rem;
	align-content: center;
	min-height: 100vh;
	padding-top: calc(var(--header-height) + 4.5rem);
	padding-bottom: 8.5rem;
	justify-items: center;
	text-align: center;
}

.hero__eyebrow,
.section-heading__eyebrow {
	margin: 0;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 227, 168, 0.92);
}

.hero__title,
.section-heading h2 {
	margin: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	word-break: keep-all;
	text-wrap: balance;
}

.hero__title {
	max-width: min(100%, 900px);
	font-size: clamp(2.8rem, 5.15vw, 4.65rem);
	line-height: 1.03;
}

.hero__title span {
	display: block;
}

.hero__title-accent {
	color: var(--gold);
}

.hero__subtitle {
	max-width: 720px;
	margin: 0;
	font-size: clamp(1.08rem, 1.55vw, 1.24rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.86);
	text-wrap: balance;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	justify-content: center;
}

.hero__meta-item {
	position: relative;
	padding-left: 1.25rem;
	font-size: 1rem;
	font-weight: 700;
}

.hero__meta-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.82rem;
	width: 0.65rem;
	height: 0.65rem;
	border: 2px solid var(--gold);
	border-radius: 0.22rem;
	transform: translateY(-50%);
}

.hero__meta-item--icon {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding-left: 0;
}

.hero__meta-item--icon::before {
	display: none;
}

.hero__meta-item--icon svg {
	width: 1.5rem;
	height: 1.5rem;
	flex: none;
	stroke: var(--gold);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	justify-content: center;
	margin-top: 0.25rem;
}

.hero__countdown {
	width: min(100%, 820px);
	margin-top: 0.45rem;
}

.hero__countdown--summary {
	margin-top: 0.9rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

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

.button--primary {
	min-width: 158px;
	padding-inline: 1.8rem;
	background: #2f6f4b;
	color: white;
}

.button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
	color: white;
}

.button--line {
	border: 1px solid rgba(25, 38, 31, 0.14);
	background: white;
	color: var(--forest-deep);
}

.button--light {
	background: white;
	color: var(--forest-deep);
}

.countdown {
	display: grid;
	grid-template-columns: minmax(0, 260px) 1fr;
	gap: 1rem;
	padding: 1.3rem;
	border-radius: var(--radius-lg);
	background: rgba(15, 35, 25, 0.48);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow);
}

.countdown--summary {
	grid-template-columns: minmax(0, 260px) minmax(0, 220px);
}

.countdown__head h2 {
	margin: 0 0 0.45rem;
	font-size: 1.2rem;
}

.countdown__head p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.countdown__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.countdown__grid--summary {
	grid-template-columns: minmax(0, 220px);
	justify-content: end;
}

.countdown__card {
	display: grid;
	place-items: center;
	padding: 1rem 0.6rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown__card span {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: clamp(2.1rem, 5vw, 3.7rem);
	font-weight: 700;
	line-height: 1;
}

.countdown__card--summary span {
	letter-spacing: 0.08em;
}

.countdown__card small {
	margin-top: 0.35rem;
	font-size: 0.84rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.milestones {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.milestone-card {
	padding: 1.3rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow);
}

.milestone-card__year {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.milestone-card h3 {
	margin: 0.95rem 0 0.55rem;
	font-size: 1.2rem;
}

.milestone-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
}

.section-menu-wrap {
	position: sticky;
	top: var(--header-height);
	z-index: 60;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 24px rgba(10, 26, 18, 0.08);
}

.section-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 1rem 0;
}

.section-menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.68rem 1rem;
	border-radius: 999px;
	background: rgba(31, 91, 67, 0.08);
	color: var(--forest-deep);
	font-size: 0.96rem;
	font-weight: 700;
}

.section {
	padding: 6rem 0;
	scroll-margin-top: calc(var(--header-height) + 80px);
}

.section--soft {
	background:
		linear-gradient(180deg, rgba(31, 91, 67, 0.06), rgba(31, 91, 67, 0));
}

.section--schedule {
	background:
		linear-gradient(180deg, rgba(17, 55, 38, 0.92), rgba(17, 55, 38, 0.92)),
		url('./assets/course-fairway.jpg') center / cover fixed;
	color: white;
}

.section--archive {
	background:
		linear-gradient(180deg, rgba(18, 56, 39, 0.04), rgba(18, 56, 39, 0.09)),
		url('./assets/course-fairway.jpg') center / cover fixed;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 2rem;
}

.section-heading h2 {
	font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.section-heading p {
	margin: 1rem 0 0;
	color: var(--muted);
	font-size: 1.04rem;
}

.section--schedule .section-heading h2,
.section--schedule .section-heading p,
.section--schedule .section-heading__eyebrow {
	color: white;
}

.fact-grid,
.leadership-grid,
.archive-grid,
.overview-grid {
	display: grid;
	gap: 1rem;
}

.fact-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 1.2rem;
}

.fact-card {
	padding: 1.35rem;
	border-radius: var(--radius-md);
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.fact-card__label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.fact-card strong {
	display: block;
	margin-top: 0.45rem;
	font-size: 1.15rem;
}

.overview-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 1rem;
}

.overview-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: rgba(249, 250, 251, 0.94);
	border: 1px solid rgba(25, 38, 31, 0.08);
	box-shadow: var(--shadow);
	text-align: center;
}

.overview-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: 999px;
	background: rgba(31, 91, 67, 0.12);
}

.overview-card__icon svg {
	width: 1.75rem;
	height: 1.75rem;
	stroke: var(--forest);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.overview-card h3 {
	margin: 0 0 0.75rem;
	font-size: 1.28rem;
}

.overview-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.75;
}

.split-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.panel,
.archive-card,
.message-card {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.panel--accent {
	background:
		linear-gradient(160deg, rgba(31, 91, 67, 0.93), rgba(18, 56, 39, 0.96));
	color: white;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.showcase-card {
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	background: white;
	border: 1px solid rgba(25, 38, 31, 0.08);
	box-shadow: var(--shadow);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.showcase-card:hover,
.showcase-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(15, 35, 25, 0.12);
}

.showcase-card--featured {
	grid-column: 1 / -1;
	background: #fff7da;
	border-color: #f0d98b;
}

.showcase-card__icon,
.showcase-callout__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: 999px;
	background: #fff1b4;
	color: #b7791f;
}

.showcase-card__icon svg,
.showcase-callout__icon svg {
	width: 1.7rem;
	height: 1.7rem;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.showcase-card h3,
.showcase-callout h3 {
	margin: 0 0 0.75rem;
	text-align: center;
	font-size: 1.28rem;
}

.showcase-card p,
.showcase-callout p {
	margin: 0;
	text-align: center;
	line-height: 1.75;
}

.showcase-card p {
	color: var(--muted);
}

.showcase-callout {
	margin-top: 1.25rem;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, #2f6f4b, #1e4d35);
	color: white;
	box-shadow: var(--shadow);
}

.showcase-callout__name {
	font-size: 1.08rem;
	font-weight: 700;
}

.showcase-callout__phone {
	margin-top: 0.35rem;
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.86);
}

.showcase-callout__copy {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.showcase-callout__actions {
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
}

.award-grid .showcase-card--featured .showcase-card__icon {
	background: #fde68a;
	color: #a16207;
}

.sponsor-callout {
	background: #eef9f1;
	border: 1px solid #cfe9d5;
	color: var(--text);
}

.sponsor-callout .showcase-callout__icon {
	background: #dff3e5;
	color: #2f6f4b;
}

.sponsor-callout .showcase-callout__name {
	color: var(--text);
}

.sponsor-callout .showcase-callout__phone,
.sponsor-callout .showcase-callout__copy {
	color: var(--muted);
}

.section--schedule .panel {
	background: rgba(255, 255, 255, 0.94);
	color: var(--text);
}

.schedule-card {
	border-radius: calc(var(--radius-lg) + 2px);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.schedule-card__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 2rem;
	padding: 2rem;
}

.schedule-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.schedule-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(31, 91, 67, 0.12);
	flex: none;
}

.schedule-item__icon svg,
.schedule-card__afterparty svg {
	width: 1.4rem;
	height: 1.4rem;
	stroke: var(--forest);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.schedule-item h3 {
	margin: 0 0 0.18rem;
	font-size: 0.92rem;
	color: rgba(25, 38, 31, 0.55);
	font-weight: 700;
}

.schedule-item p {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--text);
}

.schedule-card__footer {
	padding: 1.8rem 2rem 2rem;
	border-top: 1px solid rgba(25, 38, 31, 0.09);
}

.schedule-card__footer h3 {
	margin: 0 0 1rem;
	font-size: 1.22rem;
	color: var(--text);
}

.schedule-card__afterparty {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}

.schedule-card__afterparty p {
	margin: 0;
	color: var(--muted);
}

.schedule-note-copy {
	color: rgba(255, 255, 255, 0.94);
	line-height: 1.85;
}

.panel h3,
.archive-card h3,
.message-card h3 {
	margin: 0 0 1rem;
	font-size: 1.28rem;
}

.panel p,
.archive-card p,
.message-card p {
	margin: 0;
	color: inherit;
}

.metric-list,
.plain-list,
.timeline,
.award-list,
.contact-list {
	display: grid;
	gap: 0.8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.metric-list li,
.plain-list li,
.timeline li,
.award-list li,
.contact-list li {
	padding: 0.9rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.66);
	border: 1px solid rgba(25, 38, 31, 0.08);
}

.panel--accent .plain-list li {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.14);
}

.metric-list strong,
.timeline strong,
.contact-list strong,
.award-list strong {
	display: block;
	margin-bottom: 0.2rem;
}

.registration-contact-list {
	margin-bottom: 1rem;
}

.registration-contact-list li span {
	display: block;
	color: var(--muted);
}

.registration-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1rem;
}

.registration-stats__card {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(31, 91, 67, 0.08);
	border: 1px solid rgba(25, 38, 31, 0.08);
}

.registration-stats__card span {
	display: block;
	font-size: 0.84rem;
	color: var(--muted);
}

.registration-stats__card strong {
	display: block;
	margin-top: 0.4rem;
	font-size: 1.24rem;
}

.registration-note {
	margin-top: 1rem;
	color: var(--muted);
	line-height: 1.75;
}

.split-panels--registration-tools {
	margin-top: 1rem;
}

.panel--wide {
	grid-column: 1 / -1;
}

.registration-form__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.registration-form {
	display: grid;
	gap: 1rem;
}

.form-field {
	display: grid;
	gap: 0.45rem;
}

.form-field span {
	font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(25, 38, 31, 0.12);
	border-radius: 18px;
	background: white;
	color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 2px solid rgba(31, 91, 67, 0.16);
	border-color: var(--forest);
}

.form-field textarea {
	resize: vertical;
	min-height: 8rem;
}

.registration-form__hint {
	color: var(--muted);
	font-size: 0.95rem;
}

.registration-form__mode {
	margin: -0.1rem 0 0;
	color: var(--forest-deep);
	font-weight: 600;
}

.registration-form__actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.8rem;
}

.registration-form__submit {
	width: 100%;
}

.registration-form__submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.registration-form__status {
	min-height: 1.5rem;
	font-weight: 500;
}

.registration-form__status[data-state='success'] {
	color: #10613d;
}

.registration-form__status[data-state='error'] {
	color: #b42318;
}

.registration-form__status[data-state='pending'] {
	color: var(--muted);
}

.registration-board__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.registration-board__head h3 {
	margin: 0 0 0.3rem;
}

.registration-board__head p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.registration-board__count {
	flex: none;
	padding: 0.65rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 204, 27, 0.2);
	color: #6b4d00;
	font-size: 0.95rem;
	font-weight: 800;
}

.registration-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(25, 38, 31, 0.1);
	border-radius: 22px;
	background: white;
}

.registration-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 1320px;
}

.registration-table th,
.registration-table td {
	padding: 1rem 1.1rem;
	border-bottom: 1px solid rgba(25, 38, 31, 0.08);
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.registration-table thead th {
	background: rgba(31, 91, 67, 0.08);
	color: var(--forest-deep);
	font-size: 0.92rem;
	font-weight: 800;
}

.registration-table tbody tr:last-child td {
	border-bottom: 0;
}

.registration-table td {
	color: var(--text);
}

.registration-table__memo {
	min-width: 17rem;
	white-space: normal !important;
	line-height: 1.55;
	word-break: keep-all;
}

.registration-table__empty td {
	color: var(--muted);
	text-align: center;
}

.registration-table__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.registration-table__button {
	min-width: 84px;
	padding: 0.7rem 1rem;
	font-size: 0.92rem;
}

.registration-board__status {
	margin-top: 0.9rem;
}

.archive-overview {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.archive-summary {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, rgba(18, 56, 39, 0.95), rgba(31, 91, 67, 0.9));
	color: white;
	box-shadow: var(--shadow);
}

.archive-summary h3 {
	margin: 0 0 0.4rem;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.18;
	word-break: keep-all;
}

.archive-summary p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
}

.archive-summary__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.archive-summary__stats div {
	padding: 0.95rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
}

.archive-summary__stats span {
	display: block;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.72);
}

.archive-summary__stats strong {
	display: block;
	margin-top: 0.35rem;
	font-size: 1.06rem;
}

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

.archive-card--wide {
	grid-column: 1 / -1;
}

.archive-card__subtext,
.message-card__meta {
	color: var(--muted);
}

.status-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 204, 27, 0.18);
	color: #6b4d00;
	font-size: 0.78rem;
	font-weight: 700;
}

.message-stack {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.message-card__head {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.message-card__photo {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	object-fit: cover;
	background: rgba(255, 204, 27, 0.18);
	flex: none;
}

.message-card__body {
	display: grid;
	gap: 0.85rem;
	color: var(--muted);
}

.message-card__body p {
	margin: 0;
}

.site-footer {
	margin-top: 0;
	padding: 3rem 0 0;
	background: #131c2d;
	color: white;
}

.site-footer__top {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	padding-bottom: 2.75rem;
}

.site-footer__brand {
	max-width: 31rem;
}

.site-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.15rem;
}

.site-footer__brand-icon {
	width: 2.2rem;
	height: 2.2rem;
	flex: none;
	stroke: #2da043;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__brand-title {
	font-size: 1.85rem;
	font-weight: 800;
	line-height: 1.15;
}

.site-footer__description {
	margin: 0;
	color: rgba(214, 223, 236, 0.82);
	font-size: 1.14rem;
	line-height: 1.75;
}

.site-footer__contacts {
	min-width: min(100%, 21rem);
}

.site-footer__contacts h3 {
	margin: 0 0 1.15rem;
	font-size: 1.45rem;
	font-weight: 800;
}

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

.site-footer__contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	color: rgba(245, 248, 255, 0.98);
	font-size: 1.08rem;
	font-weight: 500;
}

.site-footer__contact-list svg {
	width: 1.3rem;
	height: 1.3rem;
	flex: none;
	margin-top: 0.18rem;
	stroke: #2da043;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.7rem 0 2.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(167, 178, 198, 0.86);
	font-size: 0.96rem;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
}

.site-footer__links a {
	color: rgba(214, 223, 236, 0.82);
	font-size: 1rem;
	transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
	color: white;
}

.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 980px) {
	.fact-grid,
	.split-panels,
	.leadership-grid,
	.archive-overview,
	.archive-grid,
	.overview-grid,
	.showcase-grid {
		grid-template-columns: 1fr;
	}

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

	.schedule-card__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: var(--header-height) 1rem auto;
		display: grid;
		gap: 0.35rem;
		padding: 1rem;
		border-radius: 24px;
		background: rgba(255, 253, 248, 0.97);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		transform: translateY(-16px);
		opacity: 0;
		pointer-events: none;
		transition:
			opacity 0.2s ease,
			transform 0.2s ease;
	}

	body.menu-open .site-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	body.menu-open .site-nav a {
		color: var(--forest-deep);
	}

	body.menu-open .site-nav__ghost {
		color: rgba(18, 56, 39, 0.58);
	}

	.section-menu-wrap {
		position: static;
	}
}

@media (max-width: 720px) {
	:root {
		--header-height: 74px;
	}

	.hero {
		padding-top: 5rem;
	}

	.hero__content {
		gap: 1.5rem;
	}

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

	.countdown__grid,
	.milestones,
	.archive-summary__stats,
	.section-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section-menu {
		display: grid;
	}

	.site-footer__top,
	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__brand-title {
		font-size: 1.55rem;
	}

	.site-footer__description {
		font-size: 1.02rem;
	}

	.registration-form__top,
	.registration-board__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.section {
		padding: 4.5rem 0;
	}

	.countdown__grid,
	.milestones,
	.archive-summary__stats,
	.section-menu,
	.registration-stats {
		grid-template-columns: 1fr;
	}

	.button {
		width: 100%;
	}

	.hero__actions {
		flex-direction: column;
	}

	.message-card__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.brand__text {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.15rem;
		line-height: 1.08;
	}
}
