*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	color: #2a2a2a;
	background: #f5f0eb;
	line-height: 1.8;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
}

a {
	color: #2a2a2a;
}

a:visited,
a:active,
a:hover {
	color: #2a2a2a;
}

img {
	height: auto;
	display: block;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}

.container--wide {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── SITE NAV ── */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 28px;
	pointer-events: none;
}

.site-nav__link {
	pointer-events: auto;
	transition: transform 0.5s;
}

.site-nav__link:hover {
	transform: scale(0.95);
}

.site-nav__btn {
	width: 13rem;
	display: block;
}

/* ── SITE FOOTER ── */
.site-footer {
	background: #333;
	text-align: center;
	padding: 20px 0;
}

.site-footer p {
	line-height: 34px;
	color: #fff;
	font-size: 13px;
	margin-bottom: 0;
}

.site-footer a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer a:hover {
	color: #4676fa;
}
/* 
.logo-menu {
	background: #f5f0eb;
} */
/* ── HERO ── */
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 24px 40px;
	background: #f5f0eb;
}

.hero__logo {
	max-width: 480px;
	width: 80%;
	margin-bottom: 48px;
}

.hero__photo-wrapper {
	width: 100%;
	max-width: 440px;
	border-radius: 28px;
	overflow: hidden;
}

.hero__photo-wrapper img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

.hero__badge {
	width: 80px;
	margin-top: -40px;
	position: relative;
	z-index: 2;
}

/* ── SECTIONS ── */
.section {
	padding: 40px 0 0;
}

.section--cream {
	background: #f5f0eb;
}

.section--white {
	background: #fff;
}

.section--dark {
	background: #1a1a1a;
	color: #e8e0d8;
}

.section--dark .section__number {
	color: #7a7168;
}

.section--dark .section__title {
	color: #f5f0eb;
}

/* ── TYPOGRAPHY ── */
.section__number {
	font-family: "Montserrat", sans-serif;
	font-weight: 200;
	font-size: 48px;
	color: #b8aea4;
	text-align: center;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.section__title {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: clamp(28px, 6vw, 52px);
	letter-spacing: 6px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 48px;
	line-height: 1.2;
	color: #2a2a2a;
}

.section__subtitle {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-size: 32px;
	text-align: center;
	margin-bottom: 12px;
	color: #555;
}

h3 {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

p {
	margin-bottom: 20px;
	line-height: 1.85;
	font-size: 16px;
}

strong {
	font-weight: 400;
}

/* ── ABOUT SECTION ── */
.about__greeting {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-size: clamp(36px, 6vw, 56px);
	text-align: center;
	margin-bottom: 8px;
	color: #555;
}

.about__heading {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: clamp(28px, 6vw, 52px);
	letter-spacing: 4px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.about__text {
	max-width: 640px;
	margin: 0 auto 60px;
	text-align: justify;
}

.about__photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.about__photos img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

/* ── PROGRAM TABLE ── */
.program-table {
	list-style: none;
	max-width: 700px;
	margin: 0 auto 60px;
}

.program-table li {
	padding: 20px 0;
	border-bottom: 1px solid #d8d0c8;
	font-size: 15px;
}

.program-table li:first-child {
	border-top: 1px solid #d8d0c8;
}

.program-table__num {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-size: 20px;
	color: #999;
	min-width: 40px;
}

.program-table__label {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-align: right;
}

.program-table__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.program-table__link:hover {
	opacity: 0.6;
}

.program__image {
	margin: 0 -24px;
	overflow: hidden;
}

.program__image img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	filter: sepia(15%);
}

/* ── FULL-WIDTH IMAGE ── */
.full-image {
	width: 100%;
	overflow: hidden;
}

.full-image img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

.full-image--landscape img {
	aspect-ratio: 16/9;
}

/* ── CONTENT WITH SIDE IMAGE ── */
.content-with-image {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: start;
}

.content-with-image__img {
	overflow: hidden;
}

.content-with-image__img img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

/* ── AUDIENCE CARDS ── */
.audience-intro {
	max-width: 780px;
	margin: 0 auto 56px;
	text-align: justify;
}

.audience-card {
	border-top: 1px solid #d8d0c8;
	padding: 36px 0;
	max-width: 780px;
	margin: 0 auto;
}

.audience-card__header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 16px;
}

.audience-card__num {
	font-family: "Montserrat", sans-serif;
	font-weight: 200;
	font-size: 28px;
	color: #aaa;
}

.audience-card__title {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 1px;
}

.audience-card p {
	text-align: justify;
}

/* ── DATE/PLACE ── */
.date-highlight {
	font-weight: 400;
}

.date-text {
	max-width: 640px;
	margin: 0 auto 60px;
	text-align: justify;
}

/* ── REGISTRATION ── */
.reg-list {
	max-width: 720px;
	margin: 0 auto 48px;
	list-style: none;
}

.reg-list li {
	padding: 16px 0;
	padding-left: 20px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section--dark .reg-list li {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section--cream .reg-list li {
	border-bottom-color: #d8d0c8;
}

.reg-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b8aea4;
}

.price-highlight {
	display: inline-block;
	margin-top: 16px;
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 1px;
}

.reg-intro {
	max-width: 720px;
	margin: 0 auto 32px;
	text-align: justify;
}

.reg-subsection {
	max-width: 720px;
	margin: 0 auto;
}

.price-highlight-block {
	max-width: 720px;
	margin: 48px auto 0;
	text-align: center;
	font-size: 16px;
}

.price-highlight--old {
	text-decoration: line-through;
	color: #999;
	margin-right: 8px;
}

.collab-cta {
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-style: italic;
	font-size: 24px;
	text-align: center;
	color: #888;
	margin-top: 48px;
}

.reg-subsection h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-align: center;
	margin-top: 48px;
	margin-bottom: 24px;
	color: #aaa;
}

.section--cream .reg-subsection h3 {
	color: #888;
}

.reg-subsection p {
	text-align: justify;
}

/* ── EQUIPMENT ── */
.equipment-intro {
	max-width: 700px;
	margin: 0 auto 32px;
	text-align: justify;
}

.equipment-list {
	max-width: 700px;
	margin: 0 auto 56px;
	list-style: none;
}

.equipment-list li {
	padding: 12px 0 12px 20px;
	position: relative;
}

.equipment-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b8aea4;
}

/* ── PARTNER LOGOS ── */
.partner-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	max-width: 700px;
	margin: 0 auto;
	padding: 0 0 48px;
}

.partner-logos img {
	height: 48px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.partner-logos img:hover {
	opacity: 1;
}

.partner-logos--large img {
	height: 60px;
}

.partner-logos--small {
	gap: 32px;
}

.partner-logos--small img {
	height: 40px;
}

.partner-logos--mb-lg {
	margin-bottom: 56px;
}

.partner-logos__square {
	height: 72px !important;
}

.partner-logos--large .partner-logos__square {
	height: 88px !important;
}

.partner-logos--small .partner-logos__square {
	height: 56px !important;
}

/* ── SCHEDULE ── */
.schedule-day {
	margin-bottom: 72px;
}

.schedule-day__title {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 16px;
	border-bottom: 2px solid #d8d0c8;
	margin-bottom: 40px;
	color: #555;
}

.session-card {
	background: #fff;
	border: 1px solid #e8e0d8;
	padding: 40px 36px;
	margin-bottom: 28px;
}

.session-card__header {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 20px;
	letter-spacing: 4px;
	text-align: center;
	margin-bottom: 4px;
	color: #888;
}

.session-card__topic {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 20px;
	text-align: center;
	margin-bottom: 28px;
	color: #444;
}

.session-card ul {
	list-style: none;
	margin-bottom: 24px;
}

.session-card ul li {
	padding: 6px 0 6px 18px;
	position: relative;
	font-size: 16px;
	line-height: 1.7;
}

.session-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #c8bfb5;
}

.session-card__takeaway {
	font-family: "Josefin Sans", sans-serif;
	font-size: 18px;
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

/* ── SOCIAL / CONTACT ── */
.social-text {
	max-width: 640px;
	margin: 0 auto;
}

.social-text h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 12px;
	margin-top: 40px;
}

.social-text h3:first-child {
	margin-top: 0;
}

.social-divider {
	width: 60px;
	height: 2px;
	background: #c8564c;
	margin-bottom: 20px;
}

.social-text a {
	color: inherit;
	font-weight: 400;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── DIVIDER IMAGE ── */
.divider-image {
	width: 100%;
	overflow: hidden;
}

.divider-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	filter: sepia(10%);
}

.divider-image--mb {
	margin-bottom: 80px;
}

img.divider-image--social {
	object-position: center top;
}

.divider-image:has(.divider-image--social) {
	background: #000;
}

/* ── MW BADGE (floating logo) ── */
.mw-badge {
	display: flex;
	justify-content: center;
	padding: 12px 0;
}

.mw-badge--mt-lg {
	margin-top: 64px;
}

.mw-badge img {
	width: 72px;
	height: 72px;
}

/* ── CTA BUTTON ── */
.cta-wrapper {
	text-align: center;
	padding: 0 0 32px;
}

.cta-btn {
	display: inline-block;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	color: #f5f0eb;
	background: #2a2a2a;
	padding: 16px 40px 12px;
	line-height: 1;
	transition:
		background 0.2s,
		transform 0.2s;
}

.cta-btn:visited {
	color: #f5f0eb;
}

.cta-btn:hover {
	background: #444;
	color: #f5f0eb;
	transform: scale(0.95);
}

.section--cream .cta-btn {
	background: #2a2a2a;
}

.section--dark .cta-btn {
	background: #f5f0eb;
	color: #1a1a1a;
}

.section--dark .cta-btn:visited {
	color: #1a1a1a;
}

.section--dark .cta-btn:hover {
	background: #d8d0c8;
	color: #1a1a1a;
}

/* ── COUNTDOWN ── */
.countdown {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 32px;
	padding-bottom: 12px;
}

.countdown__title {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #8a8278;
	margin-bottom: 14px;
}

.countdown__row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 62px;
	padding: 14px 10px 10px;
	background: #2a2a2a;
	border-radius: 14px;
}

.countdown__number {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #f5f0eb;
}

.countdown__label {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(245, 240, 235, 0.55);
	margin-top: 6px;
}

.countdown__sep {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 26px;
	color: #c8bfb5;
	margin-top: -10px;
}

.countdown__done {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #2a2a2a;
}

@media (min-width: 600px) {
	.countdown__row {
		gap: 14px;
	}

	.countdown__unit {
		min-width: 80px;
		padding: 18px 14px 14px;
	}

	.countdown__number {
		font-size: 40px;
	}

	.countdown__label {
		font-size: 11px;
	}

	.countdown__title {
		font-size: 14px;
		margin-bottom: 18px;
	}
}

/* ── SEPARATOR ── */
.separator {
	width: 60px;
	height: 1px;
	background: #c8bfb5;
	margin: 0 auto 48px;
}

/* ── INSTAGRAM TAB ── */
.ig-tab {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(42, 42, 42, 0.35);
	border-radius: 8px 0 0 8px;
	color: #fff;
	text-decoration: none;
	transition:
		background 0.2s,
		width 0.2s;
}

.ig-tab svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.ig-tab:hover {
	background: rgba(42, 42, 42, 0.6);
	color: #fff;
}

@media (max-width: 550px) {
	.ig-tab {
		width: 38px;
		height: 38px;
	}

	.ig-tab svg {
		width: 19px;
		height: 19px;
	}
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
	body {
		font-size: 16px;
	}

	.hero__logo {
		max-width: 540px;
	}

	.content-with-image {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}

	.program__image {
		margin: 0;
	}

	.session-card {
		padding: 48px 52px;
	}

	.divider-image img {
		height: 500px;
	}

	.divider-image:has(.divider-image--social) {
		display: flex;
		justify-content: center;
	}

	img.divider-image--social {
		width: auto;
		max-width: 100%;
		-webkit-mask-image: linear-gradient(
			to right,
			transparent,
			black 15%,
			black 85%,
			transparent
		);
		mask-image: linear-gradient(
			to right,
			transparent,
			black 15%,
			black 85%,
			transparent
		);
	}

	.partner-logos img {
		height: 56px;
	}

	.partner-logos--large img {
		height: 72px;
	}

	.partner-logos__square {
		height: 84px !important;
	}

	.partner-logos--large .partner-logos__square {
		height: 104px !important;
	}
}

@media (min-width: 1024px) {
	.hero__logo {
		max-width: 580px;
	}

	.divider-image img {
		height: 560px;
	}
}

@media (max-width: 550px) {
	.site-nav__btn {
		width: 8rem;
	}

	.site-nav {
		padding: 16px 16px;
	}
}

@media (max-width: 480px) {
	.partner-logos {
		gap: 24px;
	}

	.partner-logos img {
		height: 36px;
	}

	.partner-logos--large img {
		height: 44px;
	}

	.partner-logos--small img {
		height: 32px;
	}

	.partner-logos__square {
		height: 52px !important;
	}

	.partner-logos--large .partner-logos__square {
		height: 64px !important;
	}

	.partner-logos--small .partner-logos__square {
		height: 44px !important;
	}

	.session-card {
		padding: 28px 20px;
	}

	.program-table__label {
		font-size: 16px;
	}

	.audience-card__title {
		font-size: 17px;
	}
}
