/* ============================================
   MAKAI ILHABELA - Light Tropical Premium CSS
   Palette:
   Background:  #ffffff (clean white)
   Sand:        #f8f5f0 (warm sand)
   Cream:       #f0ebe3 (beach cream)
   Primary:     #c0392b (warm coral-red)
   Accent:      #d4a574 (golden sand)
   Ocean:       #1a7a6d (tropical teal)
   Text:        #4a4a4a (warm dark)
   Heading:     #1c1c1c (deep charcoal)
   ============================================ */

:root {
	--mk-bg: #ffffff;
	--mk-sand: #f8f5f0;
	--mk-cream: #f0ebe3;
	--mk-primary: #c0392b;
	--mk-primary-dark: #a23020;
	--mk-accent: #d4a574;
	--mk-ocean: #1a7a6d;
	--mk-white: #ffffff;
	--mk-text: #5a5a5a;
	--mk-text-muted: #8a8a8a;
	--mk-heading: #1c1c1c;
	--mk-border: rgba(0, 0, 0, 0.07);
	--mk-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
	--mk-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
	--mk-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
	--mk-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Poppins', -apple-system, sans-serif;
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 32px;
	--space-lg: 64px;
	--space-xl: 100px;
	--space-2xl: 120px;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
	from { opacity: 0; transform: translateX(-40px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes scaleIn {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}
@keyframes heroReveal {
	from { opacity: 0; transform: translateY(60px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollHint {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
	50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}
@keyframes waBounce {
	0%, 100% { transform: scale(1); }
	15% { transform: scale(1.15); }
	30% { transform: scale(1); }
	45% { transform: scale(1.08); }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes lineGrow {
	from { width: 0; }
	to { width: 60px; }
}
@keyframes shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}
@keyframes wave {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(3deg); }
	75% { transform: rotate(-3deg); }
}
@keyframes shine {
	0% { left: -80%; }
	100% { left: 120%; }
}
@keyframes particleDrift {
	0% { transform: translateY(0) translateX(0); opacity: 0; }
	20% { opacity: 0.6; }
	100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}
@keyframes pulseGlow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.3); }
	50% { box-shadow: 0 0 0 12px rgba(192, 57, 43, 0); }
}
@keyframes slideInUp {
	from { opacity: 0; transform: translateY(80px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes borderDraw {
	0% { clip-path: inset(0 100% 100% 0); }
	50% { clip-path: inset(0 0 100% 0); }
	100% { clip-path: inset(0 0 0 0); }
}

/* ============================================
   GLOBAL
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	color: var(--mk-text);
	background: var(--mk-bg);
	overflow-x: hidden;
	line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.35s ease; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--mk-heading);
	font-weight: 600;
	line-height: 1.2;
}

::selection {
	background: var(--mk-primary);
	color: var(--mk-white);
}

/* Utility */
.mk-accent { color: var(--mk-accent); }
.mk-accent-red { color: var(--mk-primary); }

/* Animation system */
.mk-anim {
	opacity: 0;
	transform: translateY(40px);
}
.mk-anim.mk-visible {
	animation-fill-mode: forwards;
	animation-duration: 0.8s;
	animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.mk-anim.mk-visible[data-anim="fadeInUp"] { animation-name: fadeInUp; }
.mk-anim.mk-visible[data-anim="fadeInDown"] { animation-name: fadeInDown; }
.mk-anim.mk-visible[data-anim="fadeInLeft"] { animation-name: fadeInLeft; }
.mk-anim.mk-visible[data-anim="fadeInRight"] { animation-name: fadeInRight; }
.mk-anim.mk-visible[data-anim="fadeIn"] { animation-name: fadeIn; transform: none; }
.mk-anim.mk-visible[data-anim="scaleIn"] { animation-name: scaleIn; transform: scale(0.92); }

/* ============================================
   HEADER - TOP BAR
   ============================================ */
.mk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.mk-header-top {
	background: var(--mk-heading);
	padding: 8px 0;
	transition: all 0.35s ease;
	overflow: hidden;
	max-height: 50px;
}

.mk-header-top.mk-top-hidden {
	max-height: 0;
	padding: 0;
	border: none;
	opacity: 0;
}

.mk-header-top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mk-header-top-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.mk-social-icons {
	list-style: none;
	display: flex;
	gap: 16px;
}

.mk-social-icons a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.mk-social-icons a:hover {
	color: var(--mk-accent);
	transform: translateY(-2px);
}

.mk-header-contact {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.5px;
}

.mk-header-contact i { color: var(--mk-accent); font-size: 0.7rem; }

.mk-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: #fff;
	border-radius: 4px;
	padding: 6px 18px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mk-btn-whatsapp:hover {
	background: #1db954;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.mk-header-top-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mk-btn-instagram-menu {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
	border-radius: 4px;
	padding: 6px 18px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.mk-btn-instagram-menu i { font-size: 0.95rem; }

.mk-btn-instagram-menu:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
	filter: brightness(1.05);
}

/* ============================================
   HEADER - MAIN NAV
   ============================================ */
.mk-header-main {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--mk-border);
	padding: 14px 0;
	transition: all 0.4s ease;
}

.mk-header-main.mk-shrink {
	padding: 8px 0;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: var(--mk-shadow-sm);
}

.mk-header-main.mk-shrink .mk-header-logo img,
.mk-header-main.mk-shrink .mk-logo-header {
	height: 56px;
	max-height: 56px;
}

.mk-header-main-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mk-header-logo img,
.mk-logo-header {
	height: 80px;
	width: auto !important;
	max-height: 80px;
	object-fit: contain;
	transition: all 0.4s ease;
}

.mk-nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 4px;
}

.mk-nav-list > li > a {
	display: block;
	padding: 10px 20px;
	color: var(--mk-text);
	font-weight: 500;
	font-size: 0.82rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	position: relative;
}

.mk-nav-list > li > a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 20px;
	right: 20px;
	height: 2px;
	background: var(--mk-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 2px;
}

.mk-nav-list > li > a:hover::after,
.mk-nav-list > li > a.active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.mk-nav-list > li > a:hover,
.mk-nav-list > li > a.active {
	color: var(--mk-heading);
}

/* Nav CTA */
.mk-nav-cta {
	background: var(--mk-primary) !important;
	color: var(--mk-white) !important;
	border-radius: 6px !important;
	padding: 10px 24px !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
}

.mk-nav-cta::after { display: none !important; }

.mk-nav-cta:hover {
	background: var(--mk-primary-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(192, 57, 43, 0.25);
}

/* Dropdown */
.mk-dropdown { position: relative; }

.mk-dropdown-toggle i {
	font-size: 0.55rem;
	margin-left: 4px;
	transition: transform 0.3s ease;
	opacity: 0.5;
}

.mk-dropdown:hover .mk-dropdown-toggle i { transform: rotate(180deg); opacity: 1; }

.mk-dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 10px;
	background: var(--mk-white);
	min-width: 240px;
	border-radius: 10px;
	box-shadow: var(--mk-shadow-lg);
	padding: 8px 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid var(--mk-border);
}

.mk-dropdown:hover .mk-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mk-dropdown-menu li a {
	display: block;
	padding: 12px 24px;
	color: var(--mk-text);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.mk-dropdown-menu li a:hover {
	color: var(--mk-primary);
	background: var(--mk-sand);
	padding-left: 30px;
}

/* Hamburger */
.mk-hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1010;
}

.mk-hamburger span {
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--mk-heading);
	transition: all 0.35s ease;
}

.mk-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.mk-hamburger.active span:nth-child(2) { opacity: 0; }
.mk-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

/* ============================================
   HERO
   ============================================ */
.mk-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--mk-sand);
}

.mk-hero-carousel {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.mk-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.mk-hero-slide.active {
	opacity: 1;
}

.mk-hero-carousel-controls {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.mk-hero-bullets {
	display: flex;
	gap: 10px;
}

.mk-hero-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.4s ease;
}

.mk-hero-bullet.active {
	background: var(--mk-white);
	border-color: var(--mk-white);
	transform: scale(1.25);
}

.mk-hero-progress {
	width: 120px;
	height: 2px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	overflow: hidden;
}

.mk-hero-progress-bar {
	height: 100%;
	width: 0%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	transition: width 0.1s linear;
}

.mk-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
	transform: scale(1.05);
	transition: transform 8s ease;
}

.mk-hero.mk-visible .mk-hero-bg {
	transform: scale(1);
}

.mk-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 65%);
	z-index: 2;
}

.mk-hero-row {
	min-height: 100vh;
	padding-top: 160px;
	padding-bottom: 80px;
}

.mk-hero-content {
	max-width: 620px;
}

.mk-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--mk-accent);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 28px;
	font-family: var(--font-body);
	animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
	text-shadow: 0 1px 6px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
}

.mk-hero-eyebrow::before {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--mk-accent);
}

.mk-hero-title {
	color: var(--mk-white);
	font-size: clamp(2.5rem, 5.5vw, 4.2rem);
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 28px;
	letter-spacing: -0.02em;
	animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
	text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

.mk-hero-title em {
	font-style: italic;
	color: var(--mk-accent);
}

.mk-hero-subtitle {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1rem;
	line-height: 1.9;
	margin-bottom: 40px;
	max-width: 480px;
	animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
	text-shadow: 0 1px 8px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.4);
}

.mk-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

/* Buttons */
.mk-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: all var(--mk-transition);
	position: relative;
	overflow: hidden;
}

.mk-btn-primary {
	background: var(--mk-primary);
	color: var(--mk-white);
}

.mk-btn-primary:hover {
	background: var(--mk-primary-dark);
	color: var(--mk-white);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(192, 57, 43, 0.3);
}

.mk-btn-ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--mk-white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.mk-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--mk-white);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.mk-btn-outline {
	background: transparent;
	color: var(--mk-primary);
	border: 2px solid var(--mk-primary);
}

.mk-btn-outline:hover {
	background: var(--mk-primary);
	color: var(--mk-white);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(192, 57, 43, 0.2);
}

.mk-btn-white {
	background: var(--mk-white);
	color: var(--mk-heading);
}

.mk-btn-white:hover {
	background: var(--mk-accent);
	color: var(--mk-white);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(212, 165, 116, 0.3);
}

.mk-btn-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: var(--mk-white);
}

.mk-btn-instagram:hover {
	color: var(--mk-white);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(220, 39, 67, 0.35);
	filter: brightness(1.06);
}

/* Hero scroll hint */
.mk-hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: scrollHint 2.5s ease-in-out infinite;
}

.mk-hero-scroll a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 1rem;
}

.mk-hero-scroll a:hover { color: var(--mk-white); }

/* Hero side info */
.mk-hero-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.mk-hero-pill {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 60px;
	padding: 14px 24px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.mk-hero-pill:hover {
	background: rgba(0, 0, 0, 0.55);
	transform: translateX(-8px);
	border-color: rgba(255, 255, 255, 0.3);
}

.mk-hero-pill-icon {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mk-hero-pill-icon i { color: var(--mk-white); font-size: 0.95rem; }

.mk-hero-pill-text {
	display: flex;
	flex-direction: column;
}

.mk-hero-pill-number {
	color: var(--mk-white);
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.mk-hero-pill-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 2px;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.mk-section { position: relative; }

.mk-section-header { margin-bottom: var(--space-lg); }

.mk-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--mk-primary);
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.mk-section-eyebrow::before,
.mk-section-eyebrow::after {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: var(--mk-primary);
	opacity: 0.3;
}

.mk-section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	color: var(--mk-heading);
}

.mk-section-desc {
	color: var(--mk-text);
	font-size: 0.95rem;
	line-height: 1.8;
	max-width: 540px;
}

.text-center .mk-section-desc {
	margin-left: auto;
	margin-right: auto;
}

/* ============================================
   CONCEPTS (3 Restaurants)
   ============================================ */
.mk-conceitos {
	background: var(--mk-sand);
	padding: var(--space-2xl) 0;
}

.mk-concept-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 480px;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: var(--mk-shadow-md);
}

.mk-concept-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.mk-concept-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-concept-card:hover .mk-concept-img {
	transform: scale(1.08);
}

.mk-concept-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 65%, rgba(0, 0, 0, 0.85) 100%);
	transition: all 0.5s ease;
}

.mk-concept-card:hover .mk-concept-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.92) 100%);
}

.mk-concept-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--mk-white);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 6px 16px;
	border-radius: 30px;
	text-transform: uppercase;
	z-index: 3;
	font-family: var(--font-body);
	backdrop-filter: blur(8px);
}

.mk-concept-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 36px;
	z-index: 3;
}

.mk-concept-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.5s ease;
}

.mk-concept-icon i { color: var(--mk-white); font-size: 1rem; transition: all 0.5s ease; }

.mk-concept-card:hover .mk-concept-icon {
	background: var(--mk-primary);
	border-color: var(--mk-primary);
	transform: scale(1.1);
}

.mk-concept-card:hover .mk-concept-icon i { color: var(--mk-white); }

.mk-concept-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--mk-white);
	margin-bottom: 10px;
}

.mk-concept-content p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.88rem;
	line-height: 1.7;
	margin-bottom: 20px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-concept-card:hover .mk-concept-content p {
	max-height: 100px;
	opacity: 1;
}

.mk-link {
	color: var(--mk-accent);
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mk-link:hover { color: var(--mk-white); }
.mk-link i { transition: transform 0.4s ease; font-size: 0.7rem; }
.mk-link:hover i { transform: translateX(6px); }

/* ============================================
   ABOUT / STORY
   ============================================ */
.mk-about {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
	position: relative;
	overflow: hidden;
}

.mk-about-deco {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
	z-index: 0;
}

.mk-about-image-wrapper {
	position: relative;
}

.mk-about-img {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--mk-shadow-lg);
}

.mk-about-img img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.mk-about-flor-badge {
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 100px;
	height: 100px;
	background: var(--mk-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--mk-shadow-md);
	border: 3px solid var(--mk-sand);
	animation: float 5s ease-in-out infinite;
	z-index: 2;
}

.mk-about-flor-badge img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.mk-about-content {
	position: relative;
	z-index: 1;
}

.mk-about-quote {
	color: var(--mk-heading);
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.7;
	padding-left: 24px;
	border-left: 3px solid var(--mk-primary);
	margin-bottom: 24px;
}

.mk-about-text p {
	font-size: 0.92rem;
	line-height: 1.9;
	margin-bottom: 16px;
}

.mk-about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 32px 0;
}

.mk-about-feat {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--mk-sand);
	border-radius: 10px;
	border: 1px solid var(--mk-border);
	transition: all 0.35s ease;
}

.mk-about-feat:hover {
	border-color: var(--mk-accent);
	transform: translateY(-3px);
	box-shadow: var(--mk-shadow-sm);
}

.mk-about-feat i { color: var(--mk-primary); font-size: 0.9rem; flex-shrink: 0; }

.mk-about-feat span {
	color: var(--mk-heading);
	font-size: 0.82rem;
	font-weight: 500;
}

/* About highlights (simple info labels, not buttons) */
.mk-about-highlights {
	display: flex;
	gap: 32px;
	margin: 32px 0;
}

.mk-about-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mk-about-highlight i {
	color: var(--mk-accent);
	font-size: 1.1rem;
}

.mk-about-highlight span {
	color: var(--mk-heading);
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 500;
	font-style: italic;
}

/* ============================================
   HIGHLIGHTS / SPECIALTIES
   ============================================ */
.mk-highlights {
	background: var(--mk-sand);
	padding: var(--space-2xl) 0;
	position: relative;
}

.mk-highlights::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--mk-border), transparent);
}

.mk-highlight-card {
	background: var(--mk-white);
	border: 1px solid var(--mk-border);
	border-radius: 16px;
	padding: 40px 28px;
	text-align: center;
	height: 100%;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.mk-highlight-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--mk-primary), var(--mk-accent));
	transform: scaleX(0);
	transition: transform 0.5s ease;
	border-radius: 3px 3px 0 0;
}

.mk-highlight-card:hover::before { transform: scaleX(1); }

.mk-highlight-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--mk-shadow-lg);
}

.mk-highlight-icon {
	width: 68px;
	height: 68px;
	background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(212, 165, 116, 0.1));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.5s ease;
}

.mk-highlight-icon i { color: var(--mk-primary); font-size: 1.3rem; transition: all 0.5s ease; }

.mk-highlight-card:hover .mk-highlight-icon {
	background: var(--mk-primary);
	transform: scale(1.08);
}

.mk-highlight-card:hover .mk-highlight-icon i { color: var(--mk-white); }

.mk-highlight-card h4 {
	color: var(--mk-heading);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.mk-highlight-card p {
	color: var(--mk-text-muted);
	font-size: 0.85rem;
	line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.mk-gallery {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
}

.mk-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 10px;
}

.mk-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
}

.mk-gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.mk-gallery-item:nth-child(2) { grid-column: span 4; }
.mk-gallery-item:nth-child(3) { grid-column: span 3; }
.mk-gallery-item:nth-child(4) { grid-column: span 3; }
.mk-gallery-item:nth-child(5) { grid-column: span 4; }
.mk-gallery-item:nth-child(6) { grid-column: span 7; }
.mk-gallery-item:nth-child(7) { grid-column: span 5; }

.mk-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	min-height: 200px;
}

.mk-gallery-item:nth-child(1) img { min-height: 420px; }

.mk-gallery-item:hover img {
	transform: scale(1.06);
}

.mk-gallery-hover {
	position: absolute;
	inset: 0;
	background: rgba(192, 57, 43, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.mk-gallery-item:hover .mk-gallery-hover { opacity: 1; }

.mk-gallery-hover i { color: var(--mk-white); font-size: 1.3rem; }

/* ============================================
   CTA / RESERVA
   ============================================ */
.mk-cta {
	position: relative;
	padding: var(--space-2xl) 0;
	overflow: hidden;
}

.mk-cta-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.mk-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(28, 28, 28, 0.82) 0%, rgba(28, 28, 28, 0.72) 100%);
	z-index: 1;
}

.mk-cta-flor {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 28px;
	animation: float 5s ease-in-out infinite;
}

.mk-cta-title {
	color: var(--mk-white);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 500;
	margin-bottom: 20px;
}

.mk-cta-text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.mk-cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.mk-cta-split {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.mk-cta-split-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.mk-cta-split-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.mk-btn-whatsapp-cta {
	background: #25D366;
	color: #fff;
}

.mk-btn-whatsapp-cta:hover {
	background: #1db954;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3);
}

.mk-cta-divider {
	width: 60px;
	height: 1px;
	background: var(--mk-accent);
	opacity: 0.3;
	margin: 40px auto 0;
}

/* ============================================
   INFO / LOCATION
   ============================================ */
.mk-info {
	background: var(--mk-sand);
	padding: 80px 0 0;
	position: relative;
}

.mk-info-content {
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
	padding-bottom: 48px;
}

.mk-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 40px;
}

.mk-info-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 28px 16px;
	background: var(--mk-white);
	border-radius: 16px;
	border: 1px solid var(--mk-border);
	transition: all 0.4s ease;
}

.mk-info-card:hover {
	border-color: var(--mk-accent);
	transform: translateY(-4px);
	box-shadow: var(--mk-shadow-md);
}

.mk-info-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(212, 165, 116, 0.12));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mk-info-icon i { color: var(--mk-primary); font-size: 1rem; }

.mk-info-card h5 {
	color: var(--mk-heading);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mk-info-card p {
	font-size: 0.85rem;
	color: var(--mk-text);
	margin: 0;
	line-height: 1.6;
}

.mk-info-card p a { color: var(--mk-primary); font-weight: 500; }
.mk-info-card p a:hover { color: var(--mk-primary-dark); }

.mk-info-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 40px;
}

.mk-info-cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.mk-info-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	background: var(--mk-primary);
	color: var(--mk-white);
	border: none;
	transition: all 0.35s ease;
}

.mk-info-cta-primary:hover {
	background: var(--mk-primary-dark);
	color: var(--mk-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.mk-info-cta-whatsapp {
	background: #25D366;
}

.mk-info-cta-whatsapp:hover {
	background: #1db954;
	color: var(--mk-white);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.mk-info-cta-split {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.mk-info-cta-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.mk-info-cta-label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--mk-text-muted);
}

.mk-info-map-row {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.mk-btn-map {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	background: transparent;
	color: var(--mk-text-muted);
	border: 1px solid var(--mk-border);
	transition: all 0.35s ease;
}

.mk-btn-map:hover {
	border-color: var(--mk-text);
	color: var(--mk-heading);
	transform: translateY(-1px);
}

.mk-btn-map i { font-size: 0.75rem; }

.mk-btn-waze {
	color: var(--mk-text-muted);
	background: transparent;
	border-color: var(--mk-border);
}

.mk-btn-waze:hover {
	background: #33ccff;
	border-color: #33ccff;
	color: #fff;
}

.mk-info-map {
	margin-top: 0;
}

.mk-info-map iframe {
	display: block;
	width: 100%;
	height: 220px;
	border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
/* Divider between carousel and footer */
.mk-carousel-footer-divider {
	height: 1px;
	background: rgba(255,255,255,0.08);
}

/* --- Footer Level 2: Main columns --- */
.mk-footer-main {
	background: var(--mk-heading);
	color: rgba(255, 255, 255, 0.7);
}

.mk-footer-divider {
	height: 1px;
	background: rgba(255,255,255,0.06);
}

.mk-footer-logo {
	height: 56px;
	width: auto !important;
	max-height: 56px;
	object-fit: contain;
}

.mk-footer-desc {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.82rem;
	line-height: 1.8;
}

.mk-footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.mk-footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.mk-footer-social a:hover {
	background: var(--mk-primary);
	border-color: var(--mk-primary);
	color: var(--mk-white);
	transform: translateY(-2px);
}

.mk-footer-title {
	color: var(--mk-white);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.mk-footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--mk-primary);
	border-radius: 2px;
}

.mk-footer-list { list-style: none; }

.mk-footer-list li { margin-bottom: 8px; }

.mk-footer-list li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.82rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.mk-footer-list li a:hover { color: var(--mk-accent); }

.mk-footer-list li a i { color: var(--mk-primary); font-size: 0.65rem; }

/* --- Footer Level 3: Hours bar --- */
.mk-footer-bottom-info {
	background: #151515;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.mk-footer-hours-bar {
	text-align: center;
	padding: 24px 0;
}

.mk-footer-hours-bar strong {
	color: rgba(255,255,255,0.9);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 12px;
}

.mk-footer-hours-bar strong i {
	color: var(--mk-primary);
	margin-right: 6px;
}

.mk-footer-hours-items {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: rgba(255,255,255,0.7);
	font-size: 0.82rem;
}

.mk-footer-hours-sep {
	color: rgba(255,255,255,0.2);
	font-size: 0.72rem;
}

.mk-footer-closed-tag {
	color: var(--mk-primary);
	font-weight: 500;
}

/* --- Footer Level 4: Copyright --- */
.mk-footer-copyright {
	background: #111111;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 16px 0;
	text-align: center;
}

.mk-footer-copyright p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.72rem;
	margin: 0;
}

.mk-footer-copyright a {
	color: rgba(255, 255, 255, 0.55);
}

.mk-footer-copyright a:hover { color: var(--mk-accent); }

.mk-footer-copyright .mk-footer-links {
	margin-top: 6px;
}

.mk-footer-copyright .mk-footer-sep {
	opacity: 0.3;
	margin: 0 8px;
}

.mk-footer-copyright .mk-footer-dev {
	margin-top: 6px;
	font-size: 0.68rem;
	opacity: 0.5;
}

/* ============================================
   INSTAGRAM FEED (before footer)
   ============================================ */
.mk-instagram-feed {
	background: var(--mk-heading);
	padding: 80px 0 60px;
	overflow: hidden;
}

.mk-instagram-feed .mk-section-eyebrow {
	color: var(--mk-accent);
}

.mk-instagram-feed .mk-section-title {
	color: var(--mk-white);
}

.mk-instagram-widget {
	margin-top: 40px;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.mk-reviews {
	background: var(--mk-sand);
}

.mk-reviews-widget {
	margin-top: 40px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.mk-whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 56px;
	height: 56px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
	z-index: 999;
	animation: waBounce 3.5s ease-in-out infinite;
}

.mk-whatsapp-float:hover {
	background: #1db954;
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* ============================================
   PAGE HERO (legal pages)
   ============================================ */
.mk-page-hero {
	background: var(--mk-primary);
	padding: 160px 0 80px;
	text-align: center;
}

.mk-page-hero h1 { color: var(--mk-white); font-size: 2.4rem; margin-bottom: 8px; }
.mk-page-hero p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991px) {
	.mk-hamburger { display: flex; }

	.mk-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		height: 100vh;
		background: var(--mk-white);
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
		transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 1005;
		padding: 100px 32px 32px;
		overflow-y: auto;
	}

	.mk-nav.mk-nav-open { right: 0; }

	.mk-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.mk-nav-list > li > a {
		padding: 16px 0;
		border-bottom: 1px solid var(--mk-border);
		font-size: 0.9rem;
		color: var(--mk-heading);
	}

	.mk-nav-list > li > a::after { display: none; }

	.mk-nav-cta { text-align: center; margin-top: 16px; }

	.mk-dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		padding: 0 0 0 16px;
		display: none;
		background: transparent;
	}

	.mk-dropdown.mk-dropdown-open .mk-dropdown-menu { display: block; }

	.mk-dropdown-menu li a {
		padding: 12px 0;
		border-bottom: 1px solid var(--mk-border);
		color: var(--mk-text);
	}

	.mk-nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.3);
		z-index: 1004;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.mk-nav-overlay.active { opacity: 1; visibility: visible; }

	.mk-concept-card { height: 420px; }

	.mk-about-features { grid-template-columns: 1fr; }

	.mk-gallery-grid {
		grid-template-columns: repeat(6, 1fr);
	}
	.mk-gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
	.mk-gallery-item:nth-child(2) { grid-column: span 3; }
	.mk-gallery-item:nth-child(3) { grid-column: span 3; }
	.mk-gallery-item:nth-child(4) { grid-column: span 3; }
	.mk-gallery-item:nth-child(5) { grid-column: span 3; }
	.mk-gallery-item:nth-child(6) { grid-column: span 6; }
	.mk-gallery-item:nth-child(7) { grid-column: span 6; }

	.mk-gallery-item img { min-height: 180px; }
	.mk-gallery-item:nth-child(1) img { min-height: 240px; }

	.mk-header-top-left .mk-social-icons { display: none; }

	/* Info tablet */
	.mk-info-grid { grid-template-columns: repeat(2, 1fr); }

	/* Finder tablet */
	.mk-finder-options-3 { grid-template-columns: repeat(3, 1fr); }
	.mk-finder-options-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 575px) {
	:root {
		--space-xl: 70px;
		--space-2xl: 90px;
	}

	.mk-header-contact { display: none; }

	.mk-hero-row { padding-top: 130px; }
	.mk-hero-eyebrow { font-size: 0.62rem; letter-spacing: 3px; }
	.mk-hero-subtitle { font-size: 0.9rem; }

	.mk-hero-ctas { flex-direction: column; }
	.mk-hero-ctas .mk-btn { width: 100%; justify-content: center; }

	.mk-concept-card { height: 380px; }
	.mk-concept-content { padding: 24px; }
	.mk-concept-content h3 { font-size: 1.3rem; }

	.mk-gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
	.mk-gallery-item:nth-child(1) { grid-column: span 2; }
	.mk-gallery-item:nth-child(2) { grid-column: span 1; }
	.mk-gallery-item:nth-child(3) { grid-column: span 1; }
	.mk-gallery-item:nth-child(4) { grid-column: span 1; }
	.mk-gallery-item:nth-child(5) { grid-column: span 1; }
	.mk-gallery-item:nth-child(6) { grid-column: span 2; }
	.mk-gallery-item:nth-child(7) { grid-column: span 2; }
	.mk-gallery-item img { min-height: 140px; }
	.mk-gallery-item:nth-child(1) img { min-height: 200px; }

	.mk-about-flor-badge { display: none; }

	.mk-info-grid { grid-template-columns: 1fr; gap: 12px; }
	.mk-info-card { padding: 20px 16px; }
	.mk-info-map iframe { height: 180px; }
	.mk-info-cta-row { flex-direction: column; align-items: center; width: 100%; }
	.mk-info-cta-primary { width: 100%; justify-content: center; }
	.mk-info-map-row { flex-direction: row; }

	/* Footer mobile */
	.mk-footer-hours-items { flex-direction: column; gap: 4px; }
	.mk-footer-hours-sep { display: none; }

	.mk-cta-bg { background-attachment: scroll; }

	/* Finder mobile */
	.mk-finder { padding: var(--space-xl) 0; }
	.mk-finder-header { margin-bottom: 24px; }
	.mk-finder-options-3 { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; gap: 12px; }
	.mk-finder-options-4 { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0 auto; gap: 10px; }
	.mk-finder-card-img { height: 120px; }
	.mk-finder-card-sm .mk-finder-card-body { padding: 18px 12px; }
	.mk-finder-card-sm .mk-finder-card-body i { font-size: 1.2rem; margin-bottom: 8px; }
	.mk-finder-card-body h5 { font-size: 0.82rem; }
	.mk-finder-card-body p { font-size: 0.7rem; }
	.mk-finder-stepper { gap: 0; margin-bottom: 28px; }
	.mk-finder-step-line { width: 24px; margin: 0 4px; margin-bottom: 22px; }
	.mk-finder-step-dot { width: 30px; height: 30px; font-size: 0.7rem; }
	.mk-finder-step span { font-size: 0.55rem; letter-spacing: 0.5px; }
	.mk-finder-question { font-size: 1rem; margin-bottom: 20px; }
	.mk-finder-wizard { min-height: auto; }
	.mk-finder-result { padding: 24px 12px; }
	.mk-finder-result h3 { font-size: 1.2rem; }
	.mk-finder-result-details { gap: 12px; }
	.mk-finder-result-details span { font-size: 0.75rem; }
	.mk-finder-result-tip { font-size: 0.82rem; }
	.mk-finder-result-ctas { flex-direction: column; align-items: center; gap: 10px; }
	.mk-finder-result-ctas .mk-btn,
	.mk-finder-result-ctas .mk-btn-whatsapp-lg { width: 100%; justify-content: center; text-align: center; }

	/* Mobile touch enhancements */
	.mk-nav-cta { display: block; text-align: center; }

	.mk-btn { padding: 14px 28px; }
	.mk-btn-sm { padding: 14px 20px; }

	/* Mobile hero particles: less particles */
	.mk-hero-particles span:nth-child(4),
	.mk-hero-particles span:nth-child(5) { display: none; }

	/* Mobile bottom safe area for WhatsApp float */
	.mk-whatsapp-float { bottom: 20px; right: 20px; }

	.mk-about-accent-bar { display: none; }
}

/* ============================================
   BUTTON SHINE EFFECT
   ============================================ */
.mk-btn-shine {
	position: relative;
	overflow: hidden;
}

.mk-btn-shine::after {
	content: '';
	position: absolute;
	top: 0;
	left: -80%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transform: skewX(-20deg);
	animation: shine 4s ease-in-out infinite;
}

/* ============================================
   HERO PARTICLES (floating light dots)
   ============================================ */
.mk-hero-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.mk-hero-particles span {
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: particleDrift linear infinite;
}

.mk-hero-particles span:nth-child(1) { left: 10%; bottom: -10%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px; }
.mk-hero-particles span:nth-child(2) { left: 30%; bottom: -10%; animation-duration: 16s; animation-delay: 2s; width: 5px; height: 5px; }
.mk-hero-particles span:nth-child(3) { left: 55%; bottom: -10%; animation-duration: 14s; animation-delay: 4s; }
.mk-hero-particles span:nth-child(4) { left: 75%; bottom: -10%; animation-duration: 18s; animation-delay: 1s; width: 6px; height: 6px; }
.mk-hero-particles span:nth-child(5) { left: 90%; bottom: -10%; animation-duration: 13s; animation-delay: 3s; width: 3px; height: 3px; }

/* ============================================
   ABOUT ACCENT BAR (decorative)
   ============================================ */
.mk-about-accent-bar {
	position: absolute;
	top: 20px;
	left: -12px;
	width: 4px;
	height: 80px;
	background: linear-gradient(180deg, var(--mk-primary), var(--mk-accent));
	border-radius: 4px;
	z-index: 3;
}

/* ============================================
   FINDER / WIZARD (interactive reservation)
   ============================================ */
.mk-finder {
	background: var(--mk-sand);
	padding: var(--space-2xl) 0;
}

.mk-finder-header { margin-bottom: 40px; }

/* Progress bar */
.mk-finder-progress {
	max-width: 480px;
	margin: 0 auto 24px;
	height: 4px;
	background: var(--mk-border);
	border-radius: 4px;
	overflow: hidden;
}

.mk-finder-progress-bar {
	height: 100%;
	width: 33%;
	background: linear-gradient(90deg, var(--mk-primary), var(--mk-accent));
	border-radius: 4px;
	transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stepper */
.mk-finder-stepper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 48px;
}

.mk-finder-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.4;
	transition: all 0.4s ease;
}

.mk-finder-step.active { opacity: 1; }
.mk-finder-step.completed { opacity: 0.7; }

.mk-finder-step-dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--mk-white);
	border: 2px solid var(--mk-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--mk-text-muted);
	transition: all 0.4s ease;
}

.mk-finder-step.active .mk-finder-step-dot {
	background: var(--mk-primary);
	border-color: var(--mk-primary);
	color: var(--mk-white);
	box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
}

.mk-finder-step.completed .mk-finder-step-dot {
	background: #25D366;
	border-color: #25D366;
	color: var(--mk-white);
}

.mk-finder-step span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--mk-text-muted);
}

.mk-finder-step.active span { color: var(--mk-heading); }

.mk-finder-step-line {
	width: 80px;
	height: 2px;
	background: var(--mk-border);
	margin: 0 16px;
	margin-bottom: 22px;
	position: relative;
	overflow: hidden;
}

.mk-finder-step-line::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: #25D366;
	transition: width 0.5s ease;
}

.mk-finder-step-line.completed::after { width: 100%; }

/* Panels */
.mk-finder-wizard {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	min-height: 300px;
}

.mk-finder-panel {
	display: none;
}

.mk-finder-panel.active {
	display: block;
	animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mk-finder-question {
	text-align: center;
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--mk-heading);
	margin-bottom: 32px;
}

/* Finder cards */
.mk-finder-options {
	display: grid;
	gap: 20px;
}

.mk-finder-options-3 { grid-template-columns: repeat(3, 1fr); }
.mk-finder-options-4 { grid-template-columns: repeat(2, 1fr); }

.mk-finder-card {
	background: var(--mk-white);
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid var(--mk-border);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.mk-finder-card:hover {
	transform: translateY(-5px);
	border-color: rgba(192, 57, 43, 0.2);
	box-shadow: var(--mk-shadow-md);
}

.mk-finder-card.selected {
	border-color: var(--mk-primary);
	box-shadow: 0 8px 30px rgba(192, 57, 43, 0.15);
	transform: translateY(-5px);
}

.mk-finder-card-img {
	height: 140px;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.mk-finder-card:hover .mk-finder-card-img {
	transform: scale(1.05);
}

.mk-finder-card-body {
	padding: 20px;
	text-align: center;
}

.mk-finder-card-body i {
	font-size: 1.4rem;
	color: var(--mk-primary);
	margin-bottom: 10px;
	display: block;
	transition: transform 0.3s ease;
}

.mk-finder-card:hover .mk-finder-card-body i {
	transform: scale(1.15);
}

.mk-finder-card-body h5 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--mk-heading);
	margin-bottom: 6px;
}

.mk-finder-card-body p {
	font-size: 0.78rem;
	color: var(--mk-text-muted);
	line-height: 1.5;
	margin: 0;
}

.mk-finder-card-check {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 28px;
	height: 28px;
	background: var(--mk-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-finder-card-check i { color: var(--mk-white); font-size: 0.7rem; }

.mk-finder-card.selected .mk-finder-card-check {
	opacity: 1;
	transform: scale(1);
}

/* Small cards (step 2) */
.mk-finder-card-sm .mk-finder-card-body { padding: 28px 20px; }
.mk-finder-card-sm .mk-finder-card-body i { font-size: 1.6rem; margin-bottom: 14px; }

/* Result panel */
.mk-finder-result {
	text-align: center;
	padding: 40px 20px;
}

.mk-finder-result-icon {
	width: 64px;
	height: 64px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mk-finder-result-icon i { color: var(--mk-white); font-size: 1.5rem; }

.mk-finder-result h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.mk-finder-result-badge {
	display: inline-block;
	background: linear-gradient(90deg, var(--mk-primary), var(--mk-accent));
	color: var(--mk-white);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 20px;
	border-radius: 30px;
	margin-bottom: 20px;
}

.mk-finder-result-details {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.mk-finder-result-details span {
	font-size: 0.82rem;
	color: var(--mk-text);
	display: flex;
	align-items: center;
	gap: 6px;
}

.mk-finder-result-details i { color: var(--mk-primary); font-size: 0.75rem; }

.mk-finder-result-tip {
	font-size: 0.88rem;
	color: var(--mk-text);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.mk-finder-result-ctas {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.mk-btn-sm {
	padding: 12px 24px;
	font-size: 0.7rem;
	letter-spacing: 1.5px;
}

.mk-btn-whatsapp-lg {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	padding: 14px 36px;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.4s ease;
}

.mk-btn-whatsapp-lg:hover {
	background: #1db954;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3);
}

/* Finder nav */
.mk-finder-nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.mk-finder-btn-back,
.mk-finder-btn-reset {
	background: none;
	border: 1px solid var(--mk-border);
	color: var(--mk-text);
	padding: 10px 24px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mk-finder-btn-back:hover,
.mk-finder-btn-reset:hover {
	border-color: var(--mk-primary);
	color: var(--mk-primary);
	transform: translateY(-2px);
}

/* ============================================
   ENHANCED HOVER TRANSITIONS
   ============================================ */
.mk-about-feat {
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-about-feat:hover i {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

.mk-info-card {
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-footer-list li a {
	transition: all 0.3s ease;
}

.mk-footer-list li a:hover {
	padding-left: 6px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--mk-primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	html { scroll-behavior: auto; }
	.mk-hero-bg { transform: none !important; }
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.mk-img-placeholder {
	background: #e8e4de;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #c4bfb7;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.mk-img-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 20px,
		rgba(0,0,0,0.02) 20px,
		rgba(0,0,0,0.02) 40px
	);
}

.mk-img-placeholder span {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: #9a958d;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	z-index: 1;
	background: rgba(255,255,255,0.6);
	padding: 8px 20px;
	border-radius: 6px;
}

/* ============================================
   INTERNAL PAGE HERO (Sobre, Galeria, Conceitos)
   ============================================ */
.mk-page-hero-full {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.mk-page-hero-full .mk-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.mk-page-hero-full .mk-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
	z-index: 2;
}

.mk-page-hero-full .mk-hero-content {
	position: relative;
	z-index: 3;
	max-width: 700px;
	padding: 160px 20px 80px;
}

.mk-page-hero-full .mk-hero-eyebrow {
	animation: none;
	opacity: 1;
}

.mk-page-hero-full .mk-hero-title {
	animation: none;
	opacity: 1;
	margin-bottom: 20px;
}

.mk-page-hero-full .mk-hero-subtitle {
	animation: none;
	opacity: 1;
	max-width: 100%;
	margin: 0 auto 36px;
}

.mk-page-hero-full .mk-hero-ctas {
	animation: none;
	opacity: 1;
	justify-content: center;
}

/* ============================================
   CONCEPT PAGE - STORY BLOCK
   ============================================ */
.mk-concept-story {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
}

.mk-concept-story-text h3 {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 24px;
	color: var(--mk-heading);
}

.mk-concept-story-text p {
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 16px;
	color: var(--mk-text);
}

.mk-concept-story-text .mk-tagline {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--mk-heading);
	border-left: 3px solid var(--mk-primary);
	padding-left: 20px;
	margin-bottom: 28px;
	line-height: 1.7;
}

.mk-concept-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}

.mk-concept-feat {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: var(--mk-sand);
	border-radius: 10px;
	border: 1px solid var(--mk-border);
	transition: all 0.35s ease;
}

.mk-concept-feat:hover {
	border-color: var(--mk-accent);
	transform: translateY(-3px);
	box-shadow: var(--mk-shadow-sm);
}

.mk-concept-feat i {
	color: var(--mk-primary);
	font-size: 1rem;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.mk-concept-feat span {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--mk-heading);
}

/* ============================================
   CTA RESERVATION DIVIDER
   ============================================ */
.mk-cta-divider-strip {
	background: var(--mk-primary);
	padding: 48px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mk-cta-divider-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.mk-cta-divider-strip h3 {
	color: var(--mk-white);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.mk-cta-divider-strip p {
	color: rgba(255,255,255,0.75);
	font-size: 0.9rem;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.mk-cta-divider-strip .mk-btn {
	position: relative;
	z-index: 1;
}

.mk-cta-divider-strip > div[style*="display:flex"] {
	display: flex !important;
	justify-content: center !important;
	gap: 16px !important;
	flex-wrap: wrap !important;
	align-items: center !important;
}

.mk-cta-divider-strip > div[style*="display:flex"] .mk-btn {
	flex: 0 1 auto;
	min-width: 200px;
}

.mk-cta-divider-strip.mk-cta-ocean {
	background: var(--mk-ocean);
}

.mk-cta-divider-strip.mk-cta-dark {
	background: var(--mk-heading);
}

@media (max-width: 768px) {
	.mk-cta-divider-strip > div[style*="display:flex"] {
		gap: 12px !important;
	}

	.mk-cta-divider-strip > div[style*="display:flex"] .mk-btn {
		min-width: 160px;
		flex: 0 1 calc(50% - 6px);
	}
}

@media (max-width: 480px) {
	.mk-cta-divider-strip > div[style*="display:flex"] {
		gap: 10px !important;
	}

	.mk-cta-divider-strip > div[style*="display:flex"] .mk-btn {
		min-width: 100%;
		flex: 0 1 100%;
	}
}

/* ============================================
   CONCEPT PAGE - PHOTO GRID
   ============================================ */
.mk-photo-grid {
	background: var(--mk-sand);
	padding: var(--space-2xl) 0;
}

.mk-photo-grid-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.mk-photo-grid-item {
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-photo-grid-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--mk-shadow-lg);
}

.mk-photo-grid-item .mk-img-placeholder {
	aspect-ratio: 4/3;
	border-radius: 12px;
}

/* ============================================
   INSTAGRAM FEED WIDGET
   ============================================ */
.mk-instagram {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
	overflow: hidden;
}

.mk-instagram-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 40px;
}

.mk-instagram-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2px solid var(--mk-primary);
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mk-instagram-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.mk-instagram-profile {
	display: flex;
	flex-direction: column;
}

.mk-instagram-profile strong {
	font-size: 0.95rem;
	color: var(--mk-heading);
	font-weight: 600;
}

.mk-instagram-profile span {
	font-size: 0.78rem;
	color: var(--mk-text-muted);
}

.mk-instagram-track-wrapper {
	position: relative;
	overflow: hidden;
	margin: 0 -20px;
	padding: 0 20px;
}

.mk-instagram-track-wrapper::before,
.mk-instagram-track-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}

.mk-instagram-track-wrapper::before {
	left: 0;
	background: linear-gradient(90deg, var(--mk-white) 0%, transparent 100%);
}

.mk-instagram-track-wrapper::after {
	right: 0;
	background: linear-gradient(270deg, var(--mk-white) 0%, transparent 100%);
}

.mk-instagram-track {
	display: flex;
	gap: 14px;
	animation: instagramScroll 40s linear infinite;
	width: max-content;
}

.mk-instagram-track:hover {
	animation-play-state: paused;
}

@keyframes instagramScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.mk-instagram-item {
	flex-shrink: 0;
	width: 280px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--mk-white);
	border: 1px solid var(--mk-border);
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
}

.mk-instagram-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--mk-shadow-md);
	border-color: rgba(193, 53, 132, 0.3);
}

.mk-instagram-item-img {
	width: 100%;
	aspect-ratio: 1;
	position: relative;
}

.mk-instagram-item-img .mk-img-placeholder {
	aspect-ratio: 1;
	border-radius: 0;
	border: none;
}

.mk-instagram-item-hover {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mk-instagram-item:hover .mk-instagram-item-hover {
	opacity: 1;
}

.mk-instagram-item-hover span {
	color: var(--mk-white);
	font-size: 0.85rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mk-instagram-item-footer {
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mk-instagram-item-footer .mk-ig-icon {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mk-instagram-item-footer i {
	color: var(--mk-text-muted);
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.mk-instagram-item:hover .mk-instagram-item-footer .fa-instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mk-instagram-item-footer small {
	color: var(--mk-text-muted);
	font-size: 0.72rem;
}

.mk-instagram-cta {
	text-align: center;
	margin-top: 40px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.mk-about-full {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
}

.mk-about-timeline {
	position: relative;
	padding-left: 40px;
	margin-top: 48px;
}

.mk-about-timeline::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--mk-primary), var(--mk-accent), var(--mk-ocean));
	border-radius: 2px;
}

.mk-about-timeline-item {
	position: relative;
	margin-bottom: 48px;
}

.mk-about-timeline-item::before {
	content: '';
	position: absolute;
	left: -33px;
	top: 6px;
	width: 12px;
	height: 12px;
	background: var(--mk-primary);
	border-radius: 50%;
	border: 3px solid var(--mk-white);
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
}

.mk-about-timeline-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--mk-heading);
	margin-bottom: 8px;
}

.mk-about-timeline-item p {
	font-size: 0.92rem;
	line-height: 1.8;
	color: var(--mk-text);
}

.mk-about-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.mk-about-value-card {
	text-align: center;
	padding: 40px 28px;
	background: var(--mk-sand);
	border-radius: 16px;
	border: 1px solid var(--mk-border);
	transition: all 0.4s ease;
}

.mk-about-value-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--mk-shadow-md);
	border-color: var(--mk-accent);
}

.mk-about-value-card i {
	font-size: 1.8rem;
	color: var(--mk-primary);
	margin-bottom: 20px;
	display: block;
}

.mk-about-value-card h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--mk-heading);
	margin-bottom: 10px;
}

.mk-about-value-card p {
	font-size: 0.85rem;
	color: var(--mk-text);
	line-height: 1.7;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.mk-gallery-full {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
}

.mk-gallery-filters {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.mk-gallery-filter-btn {
	background: var(--mk-sand);
	border: 1px solid var(--mk-border);
	color: var(--mk-text);
	padding: 10px 24px;
	border-radius: 30px;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.35s ease;
}

.mk-gallery-filter-btn:hover,
.mk-gallery-filter-btn.active {
	background: var(--mk-primary);
	color: var(--mk-white);
	border-color: var(--mk-primary);
}

.mk-gallery-masonry {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.mk-gallery-masonry-item {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.mk-gallery-masonry-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--mk-shadow-lg);
}

.mk-gallery-masonry-item:nth-child(1),
.mk-gallery-masonry-item:nth-child(6) {
	grid-column: span 2;
}

.mk-gallery-masonry-item .mk-img-placeholder {
	aspect-ratio: 4/3;
	border-radius: 12px;
}

.mk-gallery-masonry-item:nth-child(1) .mk-img-placeholder,
.mk-gallery-masonry-item:nth-child(6) .mk-img-placeholder {
	aspect-ratio: 16/9;
}

.mk-gallery-masonry-item .mk-gallery-hover {
	position: absolute;
	inset: 0;
	background: rgba(192, 57, 43, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.mk-gallery-masonry-item:hover .mk-gallery-hover {
	opacity: 1;
}

/* ============================================
   HOME TEASER BLOCKS (About/Gallery summary)
   ============================================ */
.mk-teaser-about {
	background: var(--mk-white);
	padding: var(--space-2xl) 0;
	position: relative;
	overflow: hidden;
}

.mk-teaser-about .mk-about-deco {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
	z-index: 0;
}

/* ============================================
   RESPONSIVE - CONCEPT/INTERNAL PAGES
   ============================================ */
@media (max-width: 991px) {
	.mk-concept-features { grid-template-columns: 1fr; }
	.mk-photo-grid-inner { grid-template-columns: repeat(2, 1fr); }
	.mk-about-values { grid-template-columns: 1fr; }
	.mk-gallery-masonry { grid-template-columns: repeat(3, 1fr); }
	.mk-gallery-masonry-item:nth-child(1),
	.mk-gallery-masonry-item:nth-child(6) { grid-column: span 1; }
	.mk-gallery-masonry-item:nth-child(1) .mk-img-placeholder,
	.mk-gallery-masonry-item:nth-child(6) .mk-img-placeholder { aspect-ratio: 4/3; }
	.mk-instagram-item { width: 240px; }
}

@media (max-width: 575px) {
	.mk-page-hero-full { min-height: 50vh; }
	.mk-page-hero-full .mk-hero-content { padding: 130px 16px 60px; }
	.mk-page-hero-full .mk-hero-ctas { flex-direction: column; }
	.mk-page-hero-full .mk-hero-ctas .mk-btn { width: 100%; justify-content: center; }
	.mk-photo-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.mk-gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.mk-cta-divider-strip { padding: 36px 0; }
	.mk-cta-divider-strip h3 { font-size: 1.2rem; }
	.mk-cta-split { flex-direction: column; align-items: center; gap: 24px; }
	.mk-cta-split-option { width: 100%; max-width: 320px; }
	.mk-cta-split-option .mk-btn { width: 100%; justify-content: center; }
	.mk-info-cta-split { flex-direction: column; align-items: center; gap: 20px; }
	.mk-info-cta-col { width: 100%; max-width: 320px; }
	.mk-info-cta-col .mk-btn { width: 100%; justify-content: center; }
	.mk-about-timeline { padding-left: 30px; }
	.mk-instagram-item { width: 220px; }
	.mk-instagram-header { flex-direction: column; gap: 10px; }
}
