:root {
	--ink: #1f2925;
	--forest: #17382f;
	--forest-light: #285649;
	--paper: #f6f3eb;
	--white: #fffef9;
	--accent: #ef6a4c;
	--gold: #d7a943;
	--line: #d8d7ce;
	--muted: #68736e;
	--sans: "DM Sans", sans-serif;
	--serif: "Newsreader", serif;
	--content: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	color: var(--ink);
	background-color: var(--paper);
	background-image: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(31, 41, 37, 0.025) 80px);
	font-family: var(--sans);
	line-height: 1.6;
}

body.menu-open {
	overflow: hidden;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	font: inherit;
}

.skip-link {
	position: fixed;
	z-index: 100;
	top: 10px;
	left: 10px;
	padding: 10px 14px;
	color: var(--white);
	background: var(--forest);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	padding: 0 max(24px, calc((100vw - var(--content)) / 2));
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
	background: var(--forest);
}

.brand,
.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid currentColor;
	color: var(--gold);
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 600;
}

.brand strong,
.brand small {
	display: block;
	line-height: 1.2;
	letter-spacing: 0;
}

.brand strong {
	font-size: 14px;
}

.brand small {
	margin-top: 2px;
	color: #b9c8c2;
	font-size: 11px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 13px;
	font-weight: 600;
}

.main-nav a:not(.nav-action) {
	color: #d9e1dd;
}

.main-nav a:hover,
.main-nav a:focus-visible {
	color: var(--gold);
}

.nav-action {
	padding: 10px 16px;
	border: 1px solid #789087;
}

.menu-button {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid #789087;
	color: var(--white);
	background: transparent;
	cursor: pointer;
}

.menu-button svg {
	width: 20px;
}

.hero {
	position: relative;
	min-height: min(780px, calc(100vh - 76px));
	color: var(--white);
	overflow: hidden;
}

.hero-media,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-media {
	background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=2000&q=88");
	background-position: center 44%;
	background-size: cover;
	transform: scale(1.01);
	animation: settle 1.4s ease-out both;
}

.hero-overlay {
	background: rgba(10, 35, 28, 0.74);
}

.hero::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((100vw - min(var(--content), calc(100vw - 48px))) / 2 + 55%);
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.hero-content {
	position: relative;
	z-index: 2;
	width: min(var(--content), calc(100% - 48px));
	margin: 0 auto;
	padding-top: clamp(110px, 17vh, 170px);
	animation: rise 0.8s 0.15s ease-out both;
}

.eyebrow,
.section-label {
	margin: 0 0 18px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
	display: inline-block;
	width: 28px;
	height: 2px;
	margin: 0 10px 3px 0;
	background: currentColor;
	content: "";
}

.hero h1 {
	max-width: 780px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(64px, 8vw, 112px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.86;
}

.hero h1 em {
	color: #f2c15c;
	font-weight: 500;
}

.hero-description {
	max-width: 560px;
	margin: 32px 0 0;
	color: #dfe8e3;
	font-size: clamp(17px, 2vw, 21px);
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border: 1px solid transparent;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg,
.text-link svg {
	width: 17px;
	height: 17px;
}

.button-primary {
	color: var(--forest);
	background: var(--gold);
}

.button-primary:hover {
	background: #e6bb59;
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--white);
}

.button-ghost:hover {
	color: var(--forest);
	background: var(--white);
}

.next-meeting {
	position: absolute;
	z-index: 3;
	right: max(24px, calc((100vw - var(--content)) / 2));
	bottom: 0;
	width: 245px;
	padding: 26px 28px;
	color: var(--forest);
	background: var(--accent);
	animation: rise 0.8s 0.35s ease-out both;
}

.next-meeting span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.next-meeting strong {
	display: block;
	margin: 6px 0 0;
	font-family: var(--serif);
	font-size: 45px;
	font-weight: 600;
	line-height: 1;
}

.next-meeting p {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 600;
}

.section-shell {
	width: min(var(--content), calc(100% - 48px));
	margin: 0 auto;
}

.intro {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px 80px;
	padding-top: 100px;
	padding-bottom: 105px;
}

.intro h2,
.section-heading h2,
.agenda h2,
.attendance h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.03;
}

.intro > p {
	align-self: end;
	max-width: 540px;
	margin: 0 0 7px;
	color: var(--muted);
	font-size: 17px;
}

.quick-links {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 34px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.quick-links a {
	display: grid;
	min-height: 112px;
	grid-template-columns: 38px 1fr 20px;
	align-items: center;
	gap: 14px;
	padding: 22px 26px;
	border-right: 1px solid var(--line);
	transition: background-color 180ms ease;
}

.quick-links a:last-child {
	border-right: 0;
}

.quick-links a:hover {
	background: var(--white);
}

.quick-links svg {
	color: var(--forest-light);
}

.quick-links a > svg:last-child {
	width: 17px;
	color: var(--muted);
}

.quick-links strong,
.quick-links small {
	display: block;
}

.quick-links strong {
	font-size: 15px;
}

.quick-links small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 12px;
}

.plan {
	padding-bottom: 115px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 45px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--ink);
	font-size: 13px;
	font-weight: 700;
}

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

.module {
	display: grid;
	grid-template-columns: 78px 1fr 110px;
	align-items: center;
	gap: 25px;
	min-height: 138px;
	padding: 25px 20px 25px 0;
	border-bottom: 1px solid var(--line);
}

.module.active {
	position: relative;
	background: var(--white);
}

.module.active::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: var(--accent);
	content: "";
}

.module-number {
	color: #a3aaa6;
	font-family: var(--serif);
	font-size: 34px;
	text-align: center;
}

.module div p,
.module div h3,
.module div span {
	margin: 0;
}

.module div p {
	color: var(--accent);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.module div h3 {
	margin-top: 2px;
	font-family: var(--serif);
	font-size: 25px;
	font-weight: 600;
}

.module div span {
	color: var(--muted);
	font-size: 13px;
}

.status,
.availability {
	justify-self: end;
	padding: 5px 10px;
	border: 1px solid var(--line);
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.active .status {
	border-color: #9eb8ae;
	color: var(--forest-light);
	background: #e6eee9;
}

.agenda {
	padding: 95px 0;
	color: var(--white);
	background-color: var(--forest);
	background-image: repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(255, 255, 255, 0.035) 80px);
}

.agenda-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	align-items: center;
	gap: 90px;
}

.section-label.light {
	color: #efb85b;
}

.agenda-copy > p:not(.section-label) {
	max-width: 430px;
	margin: 24px 0 30px;
	color: #bdcbc5;
}

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

.button-light:hover {
	background: var(--gold);
}

.calendar-card {
	padding: 35px 40px 28px;
	color: var(--ink);
	background: var(--white);
}

.calendar-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.calendar-top span {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 600;
}

.calendar-top strong {
	color: var(--muted);
	font-size: 13px;
}

.weekdays,
.days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
}

.weekdays {
	padding: 17px 0 9px;
	color: #929a96;
	font-size: 10px;
	font-weight: 700;
}

.days span {
	display: grid;
	aspect-ratio: 1.4;
	place-items: center;
	font-size: 13px;
}

.days .muted {
	color: #c8ccc9;
}

.days .meeting-day {
	width: 36px;
	aspect-ratio: 1;
	justify-self: center;
	color: var(--white);
	background: var(--accent);
	border-radius: 50%;
	font-weight: 700;
}

.calendar-legend {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 11px;
}

.calendar-legend span {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
}

.resources {
	padding-top: 105px;
	padding-bottom: 105px;
}

.resource-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--line);
	background: var(--white);
}

.resource-tabs button {
	padding: 7px 13px;
	border: 0;
	color: var(--muted);
	background: transparent;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.resource-tabs button.active {
	color: var(--white);
	background: var(--forest);
}

.resource-list {
	border-top: 1px solid var(--line);
}

.resource-item {
	display: grid;
	min-height: 112px;
	grid-template-columns: 58px 1fr auto;
	align-items: center;
	gap: 22px;
	padding: 20px 18px 20px 0;
	border-bottom: 1px solid var(--line);
}

.resource-item[hidden] {
	display: none;
}

.file-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	color: var(--white);
}

.file-icon.slides {
	background: var(--forest-light);
}

.file-icon.exercise {
	background: var(--accent);
}

.file-icon.summary {
	color: var(--ink);
	background: var(--gold);
}

.file-icon svg {
	width: 24px;
}

.resource-item span,
.resource-item h3,
.resource-item p {
	margin: 0;
}

.resource-item div > span {
	color: var(--accent);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.resource-item h3 {
	margin-top: 1px;
	font-family: var(--serif);
	font-size: 22px;
}

.resource-item p {
	color: var(--muted);
	font-size: 12px;
}

.sharepoint-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-top: 32px;
	padding: 22px 26px;
	border: 1px solid #c8d6d0;
	background: #e7eee9;
}

.sharepoint-callout > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sharepoint-callout > div > svg {
	width: 28px;
	color: var(--forest-light);
}

.sharepoint-callout strong,
.sharepoint-callout small {
	display: block;
}

.sharepoint-callout small {
	color: var(--muted);
	font-size: 12px;
}

.button-outline {
	border-color: var(--forest);
	color: var(--forest);
}

.button-outline:hover {
	color: var(--white);
	background: var(--forest);
}

.attendance {
	padding-bottom: 105px;
}

.attendance-panel {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 60px;
	padding: 58px 62px;
	color: var(--white);
	background: var(--forest-light);
}

.attendance-panel > div:first-child {
	max-width: 690px;
}

.attendance-panel h2 {
	font-size: clamp(38px, 4.5vw, 56px);
}

.attendance-panel p:not(.section-label) {
	max-width: 610px;
	margin: 18px 0 0;
	color: #d0ddd7;
}

.attendance-action {
	display: flex;
	min-width: 260px;
	flex-direction: column;
	align-items: stretch;
	gap: 13px;
}

.attendance-action > span {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #d0ddd7;
	font-size: 10px;
}

.attendance-action > span svg {
	width: 14px;
}

.button-accent {
	color: var(--forest);
	background: var(--accent);
}

.button-accent:hover {
	background: #fa7d60;
}

.notices {
	padding-bottom: 115px;
}

.notice-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

.featured-notice,
.notice {
	background: var(--white);
}

.featured-notice {
	grid-row: span 2;
	padding: 40px;
}

.featured-notice p:first-child {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
}

.featured-notice p:first-child span {
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
}

.featured-notice h3 {
	max-width: 550px;
	margin: 22px 0 14px;
	font-family: var(--serif);
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 600;
	line-height: 1.05;
}

.featured-notice p:last-child {
	max-width: 590px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.notice {
	display: grid;
	min-height: 145px;
	grid-template-columns: 62px 1fr;
	align-items: center;
	gap: 20px;
	padding: 25px 30px;
}

.notice time {
	color: var(--accent);
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

.notice h3,
.notice p {
	margin: 0;
}

.notice h3 {
	font-family: var(--serif);
	font-size: 20px;
}

.notice p {
	color: var(--muted);
	font-size: 12px;
}

.empty-notice > svg {
	justify-self: center;
	color: var(--gold);
}

.site-footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 42px;
	padding: 58px max(24px, calc((100vw - var(--content)) / 2)) 24px;
	color: var(--white);
	background: #102a23;
}

.footer-brand strong,
.footer-brand p {
	margin: 0;
}

.footer-brand p {
	color: #9badA6;
	font-size: 11px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	color: #c3d0cb;
	font-size: 12px;
}

.footer-links a:hover {
	color: var(--gold);
}

.copyright {
	grid-column: 1 / -1;
	margin: 18px 0 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #80958c;
	font-size: 10px;
}

.toast {
	position: fixed;
	z-index: 80;
	right: 22px;
	bottom: 22px;
	max-width: min(360px, calc(100vw - 44px));
	padding: 14px 18px;
	color: var(--white);
	background: var(--ink);
	font-size: 12px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes rise {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes settle {
	from { opacity: 0; transform: scale(1.06); }
	to { opacity: 1; transform: scale(1.01); }
}

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

	.main-nav {
		position: fixed;
		inset: 76px 0 auto;
		display: none;
		align-items: stretch;
		padding: 20px 24px 28px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		background: var(--forest);
		flex-direction: column;
		gap: 0;
	}

	.main-nav.open {
		display: flex;
	}

	.main-nav a {
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.main-nav .nav-action {
		margin-top: 15px;
		border: 1px solid #789087;
		text-align: center;
	}

	.hero::after {
		display: none;
	}

	.intro,
	.agenda-grid {
		grid-template-columns: 1fr;
	}

	.intro {
		gap: 20px;
	}

	.quick-links {
		grid-template-columns: 1fr;
	}

	.quick-links a,
	.quick-links a:last-child {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.quick-links a:last-child {
		border-bottom: 0;
	}

	.agenda-grid {
		gap: 55px;
	}

	.attendance-panel {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.attendance-action {
		min-width: 0;
		align-items: flex-start;
	}

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

	.featured-notice {
		grid-row: auto;
	}
}

@media (max-width: 620px) {
	.section-shell {
		width: min(100% - 32px, var(--content));
	}

	.site-header {
		min-height: 68px;
		padding: 0 16px;
	}

	.main-nav {
		inset-block-start: 68px;
	}

	.brand-mark {
		width: 40px;
		height: 40px;
	}

	.brand strong {
		font-size: 12px;
	}

	.hero {
		min-height: 720px;
	}

	.hero-media {
		background-position: 60% center;
	}

	.hero-content {
		width: calc(100% - 32px);
		padding-top: 95px;
	}

	.hero h1 {
		font-size: clamp(53px, 17vw, 72px);
	}

	.hero-description {
		max-width: 90%;
		font-size: 16px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.next-meeting {
		right: 16px;
		width: 205px;
		padding: 20px 22px;
	}

	.next-meeting strong {
		font-size: 36px;
	}

	.intro,
	.resources {
		padding-top: 75px;
		padding-bottom: 78px;
	}

	.plan,
	.attendance,
	.notices {
		padding-bottom: 78px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 32px;
	}

	.module {
		grid-template-columns: 48px 1fr;
		gap: 12px;
		padding-right: 0;
	}

	.module-number {
		font-size: 28px;
	}

	.module div h3 {
		font-size: 21px;
	}

	.module .status {
		display: none;
	}

	.agenda {
		padding: 72px 0;
	}

	.calendar-card {
		padding: 26px 17px 22px;
	}

	.days span {
		aspect-ratio: 1.1;
		font-size: 12px;
	}

	.days .meeting-day {
		width: 31px;
	}

	.resource-tabs {
		width: 100%;
	}

	.resource-tabs button {
		flex: 1;
		padding-inline: 5px;
	}

	.resource-item {
		grid-template-columns: 48px 1fr;
		gap: 15px;
		padding-right: 0;
	}

	.file-icon {
		width: 48px;
		height: 48px;
	}

	.resource-item .availability {
		display: none;
	}

	.resource-item h3 {
		font-size: 19px;
	}

	.sharepoint-callout {
		align-items: stretch;
		flex-direction: column;
	}

	.attendance-panel {
		gap: 35px;
		padding: 42px 26px;
	}

	.attendance-action,
	.attendance-action .button {
		width: 100%;
	}

	.featured-notice {
		padding: 30px 25px;
	}

	.notice {
		grid-template-columns: 52px 1fr;
		padding: 22px 20px;
	}

	.site-footer {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 48px 24px 24px;
	}

	.footer-links {
		gap: 15px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
