:root {
	--mf-bg: #ffffff;
	--mf-soft: #f6f3ec;
	--mf-ink: #111111;
	--mf-muted: #6b6560;
	--mf-accent: #f0c01a;
	--mf-accent-dark: #e0ad00;
	--mf-card: #ffffff;
	--mf-line: rgba(17, 17, 17, 0.1);
	--mf-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
	--mf-radius: 18px;
	--mf-font: "Plus Jakarta Sans", system-ui, sans-serif;
	--mf-display: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
	--mf-pad: clamp(1rem, 4vw, 1.75rem);
	--mf-max: 1080px;
	--mf-sticky-h: 4.5rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--mf-font);
	color: var(--mf-ink);
	background: var(--mf-bg);
	line-height: 1.5;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
}

/* Space for sticky CTA on mobile */
body.home {
	padding-bottom: calc(var(--mf-sticky-h) + env(safe-area-inset-bottom, 0px));
}

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

a {
	color: inherit;
}

.morda-skip {
	position: absolute;
	left: -999px;
	top: 0;
	background: #fff;
	padding: 0.75rem 1rem;
	z-index: 100;
}

.morda-skip:focus {
	left: 1rem;
	top: 1rem;
}

.mf-shell {
	width: min(100% - (var(--mf-pad) * 2), var(--mf-max));
	margin-inline: auto;
}

/* Header */
.mf-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--mf-line);
}

.mf-header__inner {
	min-height: 84px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.mf-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.mf-logo__img {
	height: 72px;
	width: auto;
	max-width: min(260px, 62vw);
	object-fit: contain;
}

.mf-logo--footer .mf-logo__img {
	height: 84px;
	max-width: 280px;
}

.mf-nav {
	display: flex;
	align-items: center;
	gap: 0.75rem 1rem;
	font-size: 0.92rem;
	font-weight: 600;
}

.mf-nav a {
	text-decoration: none;
	color: var(--mf-ink);
	opacity: 0.7;
}

.mf-nav a:hover {
	opacity: 1;
}

.mf-nav__cta {
	opacity: 1 !important;
	background: var(--mf-accent);
	padding: 0.6rem 1rem;
	border-radius: 999px;
	font-weight: 700;
}

/* Buttons */
.mf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	text-decoration: none;
	font-family: var(--mf-font);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
	border: 0;
	cursor: pointer;
}

.mf-btn--block {
	width: 100%;
}

.mf-btn--primary {
	background: var(--mf-accent);
	color: var(--mf-ink);
}

.mf-btn--primary:hover {
	background: var(--mf-accent-dark);
}

.mf-btn--ghost {
	background: transparent;
	border: 1.5px solid rgba(17, 17, 17, 0.16);
	color: var(--mf-ink);
}

.mf-btn--dark {
	background: var(--mf-ink);
	color: #fff;
}

.mf-link {
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	font-size: 0.95rem;
}

/* Hero — photo first on mobile */
.mf-hero {
	padding: 1.5rem 0 0;
}

.mf-hero__grid {
	display: grid;
	gap: 1.25rem;
	align-items: center;
	padding-bottom: 1.75rem;
}

.mf-hero__visual {
	order: -1;
}

.mf-eyebrow {
	margin: 0 0 0.55rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--mf-muted);
}

.mf-hero__title {
	margin: 0 0 0.75rem;
	font-family: var(--mf-display);
	font-size: clamp(2rem, 8.5vw, 3.4rem);
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.04em;
	max-width: 12ch;
}

.mf-hero__lead {
	margin: 0 0 1.15rem;
	max-width: 36ch;
	color: var(--mf-muted);
	font-size: 1.02rem;
	font-weight: 500;
}

.mf-hero__actions {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0.65rem;
}

.mf-blob {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	max-height: none;
	min-height: min(78vw, 520px);
	margin: 0 auto;
	border-radius: 48% 52% 44% 56% / 42% 58% 42% 58%;
	background: var(--mf-accent);
	overflow: hidden;
}

.mf-blob__slides {
	position: absolute;
	inset: 0;
}

.mf-blob__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.7s ease;
}

.mf-blob__slide.is-active {
	opacity: 1;
}

.mf-blob.has-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mf-blob__dots {
	position: absolute;
	left: 50%;
	bottom: 3.4rem;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 0.4rem;
}

.mf-blob__dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
}

.mf-blob__dot.is-active {
	background: #fff;
	width: 1.15rem;
}

.mf-blob__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	font-family: var(--mf-display);
	font-weight: 700;
	font-size: clamp(2rem, 8vw, 3rem);
	letter-spacing: -0.04em;
	color: rgba(17, 17, 17, 0.28);
}

.mf-badge {
	position: absolute;
	left: 0.85rem;
	bottom: 0.85rem;
	background: #fff;
	color: var(--mf-ink);
	border-radius: 999px;
	padding: 0.55rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	box-shadow: var(--mf-shadow);
}

/* Perks — compact strip on mobile */
.mf-perks {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 1.25rem 0 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	border-top: 1px solid var(--mf-line);
	border-bottom: 1px solid var(--mf-line);
}

.mf-perk {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.mf-perk strong {
	font-family: var(--mf-display);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mf-perk span {
	color: var(--mf-muted);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.3;
}

/* Sections */
.mf-section {
	padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.mf-section--soft {
	background: var(--mf-soft);
}

.mf-section__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.mf-section__lead {
	margin: -0.65rem 0 1.35rem;
	max-width: 40rem;
	color: var(--mf-muted);
	font-weight: 500;
	line-height: 1.55;
}

.mf-h2 {
	margin: 0;
	font-family: var(--mf-display);
	font-size: clamp(1.7rem, 5.5vw, 2.5rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.035em;
}

/* Instagram */
.mf-ig {
	padding: 1.25rem 0 1.5rem;
}

.mf-ig__card {
	display: grid;
	gap: 0.55rem;
	justify-items: start;
	text-decoration: none;
	background: var(--mf-accent);
	border-radius: 28px;
	padding: clamp(1.75rem, 6vw, 3rem) clamp(1.35rem, 4vw, 2.5rem);
	color: var(--mf-ink);
	box-shadow: 0 12px 28px rgba(240, 192, 26, 0.28);
	transition: transform 0.2s ease;
}

.mf-ig__card:hover {
	transform: translateY(-2px);
}

.mf-ig__eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	color: #5c4300;
}

.mf-ig__title {
	margin: 0;
	font-family: var(--mf-display);
	font-size: clamp(1.85rem, 7vw, 3rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.04em;
	max-width: 14ch;
}

.mf-ig__handle {
	margin: 0.15rem 0 0;
	font-family: var(--mf-display);
	font-size: clamp(1.25rem, 4vw, 1.7rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mf-ig__lead {
	margin: 0 0 0.65rem;
	max-width: 34ch;
	font-weight: 500;
	color: rgba(17, 17, 17, 0.72);
	font-size: 1.02rem;
}

.mf-ig__card .mf-btn {
	margin-top: 0.35rem;
}

/* Banner (legacy) */
.mf-banner {
	padding: 1.25rem 0 1.5rem;
}

.mf-banner__inner {
	background: var(--mf-accent);
	border-radius: var(--mf-radius);
	padding: 1.25rem 1.2rem;
	display: grid;
	gap: 1rem;
}

.mf-banner__text {
	margin: 0;
	font-family: var(--mf-display);
	font-weight: 700;
	font-size: clamp(1.15rem, 4vw, 1.45rem);
	line-height: 1.25;
	letter-spacing: -0.025em;
}

/* Offer cards */
.mf-offer {
	display: grid;
	gap: 0.85rem;
}

.mf-offer__card {
	background: var(--mf-card);
	border: 1px solid var(--mf-line);
	border-radius: var(--mf-radius);
	padding: 1.2rem;
	display: grid;
	gap: 0.45rem;
}

.mf-offer__card.is-featured {
	border-color: transparent;
	background: #fff;
	box-shadow: var(--mf-shadow);
	outline: 2px solid var(--mf-accent);
	outline-offset: -2px;
}

.mf-section--soft .mf-offer__card {
	background: #fff;
}

.mf-offer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.mf-offer__kicker {
	margin: 0 0 0.2rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #8a6200;
}

.mf-offer__card h3 {
	margin: 0;
	font-family: var(--mf-display);
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.mf-offer__time,
.mf-offer__desc,
.mf-offer__deposit {
	margin: 0;
	color: var(--mf-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.mf-offer__price {
	margin: 0;
	font-family: var(--mf-display);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.mf-offer__card .mf-btn {
	margin-top: 0.45rem;
}

/* Steps — vertical list on mobile, clearer than 4 tiles */
.mf-steps {
	list-style: none;
	margin: 1.15rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.mf-step {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding: 0.95rem 1rem;
	border: 1px solid var(--mf-line);
	border-radius: 16px;
	background: #fff;
}

.mf-step span {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--mf-accent);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 0.85rem;
}

.mf-step h3 {
	margin: 0 0 0.2rem;
	font-family: var(--mf-display);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mf-step p {
	margin: 0;
	color: var(--mf-muted);
	font-size: 0.92rem;
	font-weight: 500;
}

/* Portfolio */
.mf-portfolio {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}

.mf-portfolio__item {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #efe7da;
	aspect-ratio: 4 / 5;
}

.mf-portfolio__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mf-portfolio__item--empty span {
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		-45deg,
		#efe7da,
		#efe7da 12px,
		#f7f3ec 12px,
		#f7f3ec 24px
	);
}

.mf-hint {
	grid-column: 1 / -1;
	color: var(--mf-muted);
	margin: 0.25rem 0 0;
	font-weight: 500;
	font-size: 0.92rem;
}

/* About + FAQ — stacked on mobile */
.mf-about {
	display: grid;
	gap: 1.5rem;
}

.mf-about__copy p {
	color: var(--mf-muted);
	font-size: 1.02rem;
	font-weight: 500;
}

.mf-faq {
	background: var(--mf-soft);
	border-radius: var(--mf-radius);
	padding: 1.1rem 1.15rem;
}

.mf-faq__title {
	margin: 0 0 0.55rem;
	font-family: var(--mf-display);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.mf-faq details {
	border-top: 1px solid var(--mf-line);
	padding: 0.8rem 0;
}

.mf-faq details:first-of-type {
	border-top: 0;
}

.mf-faq summary {
	cursor: pointer;
	font-weight: 700;
	letter-spacing: -0.015em;
	list-style: none;
	font-size: 0.98rem;
}

.mf-faq summary::-webkit-details-marker {
	display: none;
}

.mf-faq p {
	margin: 0.5rem 0 0;
	color: var(--mf-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

/* Sticky CTA — mobile only */
.mf-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 0.65rem var(--mf-pad) calc(0.65rem + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--mf-line);
}

/* Footer */
.mf-footer {
	background: var(--mf-soft);
	padding: 3.5rem 0 3rem;
	margin-top: 1.5rem;
}

.mf-footer__grid {
	display: grid;
	gap: 1.35rem;
}

.mf-footer__tag,
.mf-footer__links {
	color: var(--mf-muted);
	font-weight: 500;
}

.mf-footer__label {
	margin: 0 0 0.45rem;
	font-family: var(--mf-display);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mf-footer__links {
	display: grid;
	gap: 0.35rem;
	margin: 0;
}

.mf-footer__links a {
	text-decoration: none;
}

.mf-footer__links a:hover {
	text-decoration: underline;
}

/* Page */
.mf-page {
	padding: 2rem 0 3.5rem;
}

.mf-page .morda-content {
	font-size: 1.05rem;
}

.mf-page h1 {
	font-family: var(--mf-display);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.mf-section .morda-events,
.mf-section .morda-booking,
.mf-page .morda-booking {
	background: transparent;
	padding: 0;
	max-width: none;
}

.mf-section .morda-card,
.mf-page .morda-card {
	border-radius: 16px;
}

.mf-section .morda-card--event,
.mf-page .morda-card--event {
	background: var(--mf-accent);
	border: 0;
	box-shadow: 0 8px 22px rgba(240, 192, 26, 0.3);
}

.mf-section .morda-card--event.is-individual,
.mf-page .morda-card--event.is-individual {
	background: #fff;
	border: 3px solid var(--mf-accent);
	box-shadow: none;
}

.mf-section .morda-card__kicker,
.mf-page .morda-card__kicker {
	color: #5c4300;
}

/* Motion */
.morda-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.morda-reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.morda-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* Tablet+ */
@media (min-width: 720px) {
	.mf-hero__actions {
		display: flex;
		flex-wrap: wrap;
	}

	.mf-btn--block {
		width: auto;
	}

	.mf-offer__card .mf-btn--block,
	.mf-banner__inner .mf-btn--block {
		width: auto;
		justify-self: start;
	}

	.mf-section__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.mf-offer {
		grid-template-columns: 1fr 1fr;
	}

	.mf-steps {
		grid-template-columns: 1fr 1fr;
	}

	.mf-portfolio {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}

	.mf-banner__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1.35rem 1.5rem;
	}

	.mf-sticky-cta {
		display: none;
	}

	body.home {
		padding-bottom: 0;
	}
}

@media (min-width: 900px) {
	.mf-header__inner {
		min-height: 96px;
	}

	.mf-logo__img {
		height: 88px;
		max-width: 320px;
	}

	.mf-logo--footer .mf-logo__img {
		height: 96px;
		max-width: 340px;
	}

	.mf-hero {
		padding-top: 2.25rem;
	}

	.mf-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2rem;
		min-height: 480px;
		padding-bottom: 2.5rem;
	}

	.mf-hero__visual {
		order: 0;
	}

	.mf-blob {
		max-height: none;
		min-height: 0;
		aspect-ratio: 1 / 1.05;
		border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
		width: min(100%, 440px);
		margin-left: auto;
	}

	.mf-blob__dots {
		bottom: 14%;
	}

	.mf-perks {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
		padding: 1.75rem 0 2.5rem;
		margin-bottom: 1.5rem;
	}

	.mf-perk strong {
		font-size: 1.05rem;
	}

	.mf-perk span {
		font-size: 0.9rem;
	}

	.mf-steps {
		grid-template-columns: repeat(4, 1fr);
	}

	.mf-step {
		flex-direction: column;
		gap: 0.75rem;
		padding: 1.15rem;
	}

	.mf-portfolio {
		grid-template-columns: repeat(4, 1fr);
	}

	.mf-about {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 2rem;
		align-items: start;
	}

	.mf-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.mf-nav a:not(.mf-nav__cta) {
		display: none;
	}

	.mf-section {
		padding: 5.5rem 0;
	}

	.mf-section__head {
		margin-bottom: 1.85rem;
		gap: 0.75rem;
	}

	.mf-banner {
		padding: 2.5rem 0 2.75rem;
	}

	.mf-ig {
		padding: 2.5rem 0 2.75rem;
	}

	.mf-hero {
		padding-top: 1.5rem;
	}

	.mf-hero__grid {
		gap: 1.85rem;
		padding-bottom: 2.75rem;
	}

	.mf-hero__title {
		margin-bottom: 1rem;
	}

	.mf-hero__lead {
		margin-bottom: 1.5rem;
	}

	.mf-hero__actions {
		gap: 0.85rem;
	}

	.mf-perks {
		padding: 1.75rem 0 2.75rem;
		margin-bottom: 2.25rem;
		gap: 0.85rem;
	}

	.mf-steps {
		margin-top: 1.65rem;
		gap: 1.1rem;
	}

	.mf-step {
		padding: 1.15rem 1.1rem;
		gap: 1rem;
	}

	.mf-portfolio {
		gap: 0.9rem;
	}

	.mf-about {
		gap: 2.5rem;
	}

	.mf-faq {
		padding: 1.35rem 1.25rem;
	}

	.mf-faq details {
		padding: 1rem 0;
	}

	.mf-footer {
		padding: 4.5rem 0 3.75rem;
		margin-top: 2.75rem;
	}

	.mf-footer__grid {
		gap: 2rem;
	}

	.mf-section .morda-events__grid,
	.mf-page .morda-events__grid {
		gap: 1.15rem;
	}
}
