:root {
	--ie-pink: #ff9ebe;
	--ie-pink-strong: #ff69b4;
	--ie-teal: #00b2a9;
	--ie-teal-strong: #00a5a5;
	--ie-gold: #f4d9c8;
	--ie-cream: #f8f1eb;
	--ie-white: #ffffff;
	--ie-navy: #8b6f5a;
	--ie-shadow: 0 16px 40px rgba(26, 42, 60, 0.12);
	--ie-radius: 16px;
	--ie-container: 1200px;
	--ie-font-heading: "Cormorant Garamond", "Times New Roman", serif;
	--ie-font-body: "Manrope", "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--ie-font-script: "Great Vibes", cursive;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ie-navy);
	background: radial-gradient(circle at 10% 10%, rgba(255, 158, 190, 0.1), transparent 45%), var(--ie-white);
	font-family: var(--ie-font-body);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.002em;
}

body.ie-menu-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.8em;
	font-family: var(--ie-font-heading);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--ie-navy);
}

h1 {
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	line-height: 1.12;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 3.1rem);
	line-height: 1.2;
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.8rem);
	line-height: 1.35;
}

a {
	color: var(--ie-navy);
	text-decoration: none;
	transition: all 0.25s ease;
}

a:hover,
a:focus-visible {
	color: var(--ie-pink-strong);
}

.ie-container {
	width: min(calc(100% - 2rem), var(--ie-container));
	margin-inline: auto;
}

.ie-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(26, 42, 60, 0.08);
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.ie-site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(26, 42, 60, 0.12);
	background: rgba(255, 255, 255, 0.98);
}

.ie-header-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 108px;
	padding-block: 0.45rem 0.3rem;
	column-gap: 1rem;
}

.ie-header-social {
	display: flex;
	justify-content: flex-start;
}

.ie-header-social-links {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ie-header-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(26, 42, 60, 0.12);
	border-radius: 50%;
	background: #fff;
}

.ie-header-social-links a:hover,
.ie-header-social-links a:focus-visible {
	border-color: rgba(26, 42, 60, 0.28);
	transform: translateY(-1px);
}

.ie-header-social-links img {
	width: 16px;
	height: 16px;
}

.ie-header-actions {
	display: flex;
	justify-content: flex-end;
}

.ie-header-book-btn {
	min-height: 38px;
	padding: 0.55rem 0.95rem;
	font-size: 0.72rem;
	background: linear-gradient(135deg, #9fd6ff 0%, #b9d6f5 38%, #dec8e6 62%, #f6bfd6 100%);
	box-shadow: 0 10px 22px rgba(126, 156, 196, 0.22);
}

.ie-header-book-btn:hover,
.ie-header-book-btn:focus-visible {
	background: linear-gradient(135deg, #8dcbfb 0%, #a9cceb 38%, #d7badb 62%, #efb0ca 100%);
	box-shadow: 0 12px 24px rgba(118, 145, 183, 0.24);
}

.ie-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--ie-navy);
	line-height: 0;
}

.ie-brand:hover,
.ie-brand:focus-visible {
	color: var(--ie-navy);
}

.ie-brand-logo {
	display: block;
	width: auto;
	max-width: min(100%, 500px);
	height: 100px;
	object-fit: contain;
}

.ie-header-bottom {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid rgba(26, 42, 60, 0.08);
}

.ie-nav .ie-menu {
	display: flex;
	justify-content: center;
	gap: 2.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ie-nav .ie-menu > li {
	position: relative;
}

.ie-nav .ie-menu a {
	display: inline-flex;
	align-items: center;
	color: var(--ie-navy);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

/* Dropdown menu */
.ie-nav .ie-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	z-index: 30;
	min-width: 300px;
	margin: 0;
	padding: 0.8rem 0;
	list-style: none;
	background: var(--ie-white);
	border: 1px solid rgba(26, 42, 60, 0.1);
	border-radius: 16px;
	box-shadow: 0 16px 32px rgba(26, 42, 60, 0.14);
	transform: translate(-50%, 6px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	transition-delay: 0ms;
}

.ie-nav .ie-menu > li.menu-item-has-children.is-hover-open > .sub-menu,
.ie-nav .ie-menu > li.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
	transition-delay: 0ms;
}

.ie-nav .ie-menu > li.menu-item-has-children {
	position: relative;
}

.ie-nav .ie-menu > li.menu-item-has-children > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0 0.6rem;
}

.ie-nav .ie-menu > li.menu-item-has-children > a::after {
	content: "";
	width: 0.42rem;
	height: 0.42rem;
	margin-top: -0.18rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.ie-nav .ie-menu > li.menu-item-has-children.is-hover-open > a::after,
.ie-nav .ie-menu > li.menu-item-has-children:focus-within > a::after {
	transform: rotate(225deg);
	margin-top: 0.12rem;
}

.ie-nav .ie-menu .sub-menu a {
	display: block;
	width: 100%;
	padding: 0.7rem 1.15rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--ie-navy);
	transition: background-color 0.18s ease, color 0.18s ease;
}

.ie-nav .ie-menu .sub-menu li:hover > a,
.ie-nav .ie-menu .sub-menu li:focus-within > a,
.ie-nav .ie-menu .sub-menu a:hover,
.ie-nav .ie-menu .sub-menu a:focus-visible {
	background: rgba(248, 241, 235, 0.98);
	color: var(--ie-pink-strong);
}

.ie-nav .ie-menu .sub-menu li + li {
	border-top: 1px solid rgba(26, 42, 60, 0.06);
}

.ie-nav .ie-menu a:hover,
.ie-nav .ie-menu a:focus-visible,
.ie-nav .current-menu-item > a {
	color: var(--ie-pink-strong);
}

.ie-book-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.3rem;
	min-height: 46px;
	border: 0;
	border-radius: 0;
	background: linear-gradient(130deg, var(--ie-pink), var(--ie-teal));
	color: var(--ie-white);
	font-family: var(--ie-font-body);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(255, 105, 180, 0.28);
}

.ie-book-btn:hover,
.ie-book-btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 178, 169, 0.26);
	color: var(--ie-white);
}

.ie-header-book-btn {
	background: linear-gradient(135deg, #9fd6ff 0%, #b9d6f5 38%, #dec8e6 62%, #f6bfd6 100%);
	box-shadow: 0 10px 22px rgba(126, 156, 196, 0.22);
}

.ie-header-book-btn:hover,
.ie-header-book-btn:focus-visible {
	background: linear-gradient(135deg, #8dcbfb 0%, #a9cceb 38%, #d7badb 62%, #efb0ca 100%);
	box-shadow: 0 12px 24px rgba(118, 145, 183, 0.24);
}


/* Social icons */
.ie-social-links img {
	width: 24px;
	height: 24px;
}
.ie-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	transition: all 0.3s ease;
}

.ie-social-links svg {
	width: 18px;
	height: 18px;
	color: #222;
}

.ie-social-links a:hover {
	background: #f3e8ff;
	transform: translateY(-2px);
}

.ie-menu-bars {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 2px;
	background: var(--ie-navy);
}

.ie-menu-bars::before,
.ie-menu-bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--ie-navy);
}

.ie-menu-bars::before {
	top: -7px;
}

.ie-menu-bars::after {
	top: 7px;
}

.ie-mobile-drawer {
	position: fixed;
	inset: 0;
	display: none; 
	justify-items: end;
	background: rgba(26, 42, 60, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	z-index: 1000;
}

.ie-mobile-drawer.is-open {
	display: grid; 
	opacity: 1;
	visibility: visible;
}

.ie-mobile-panel {
	width: min(84vw, 380px);
	height: 100%;
	padding: 1.5rem 1.4rem 1.75rem;
	background: var(--ie-white);
	box-shadow: -12px 0 34px rgba(26, 42, 60, 0.2);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.ie-mobile-drawer.is-open .ie-mobile-panel {
	transform: translateX(0);
}

.ie-drawer-close {
	align-self: flex-end;
	font-size: 2rem;
	line-height: 1;
	border: 0;
	background: transparent;
	color: var(--ie-navy);
	cursor: pointer;
}

.ie-mobile-nav .ie-menu {
	flex-direction: column;
	margin-top: 1.2rem;
	gap: 0.55rem;
}

.ie-mobile-nav .ie-menu > li {
	display: block;
	position: relative;
}

.ie-mobile-nav .ie-menu a {
	display: block;
	padding-block: 0.48rem;
	font-size: 0.96rem;
}

.ie-mobile-nav .ie-menu > li > a {
	padding-right: 3rem;
}

.ie-mobile-nav .ie-menu > li > .ie-submenu-toggle {
	display: none !important;
}

.ie-mobile-nav .ie-menu > li.menu-item-has-children > a {
	position: relative;
	display: flex;
	align-items: center;
}

.ie-mobile-nav .ie-menu > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.55rem;
	width: 0.56rem;
	height: 0.56rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-62%) rotate(45deg);
	transition: transform 0.2s ease;
}

.ie-mobile-nav .ie-menu > li.is-open > a::after {
	transform: translateY(-34%) rotate(225deg);
}

.ie-mobile-nav .ie-menu .sub-menu {
	display: block !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: auto !important;
	min-width: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	border: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	clear: both;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.28s ease, margin-top 0.28s ease;
}

.ie-mobile-nav .ie-menu > li.menu-item-has-children:focus-within:not(.is-open) > .sub-menu {
	max-height: 0;
	margin-top: 0 !important;
}

.ie-mobile-nav .ie-menu > li.menu-item-has-children.is-open > .sub-menu {
	max-height: 12rem;
	margin-top: 0.35rem !important;
}

.ie-mobile-nav .ie-menu .sub-menu a {
	display: block;
	width: 100%;
	padding: 0.7rem 0;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-align: left;
	white-space: normal;
}

.ie-mobile-nav .ie-menu .sub-menu li + li {
	border-top: 1px solid rgba(26, 42, 60, 0.08);
}

.ie-mobile-cta {
	display: grid;
	gap: 0.95rem;
	margin-top: auto;
	padding-top: 1.5rem;
}

.ie-site-footer {
	margin-top: clamp(2.5rem, 6vw, 5rem);
	padding: clamp(3rem, 6vw, 4.5rem) 0 0;
	background:
		radial-gradient(circle at top center, rgba(201, 183, 167, 0.18), transparent 35%),
		linear-gradient(180deg, #2f2622 0%, #201916 100%);
	color: #f5ede6;
	border-top: 1px solid rgba(245, 237, 230, 0.08);
}

/* Global Elementor typography mapping */
.elementor-widget-heading .elementor-heading-title {
	font-family: var(--ie-font-heading);
	letter-spacing: 0.01em;
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor li,
.elementor-widget-icon-list .elementor-icon-list-text {
	font-family: var(--ie-font-body);
	color: var(--ie-navy);
}

.ie-footer-main {
	display: grid;
	justify-items: center;
	gap: 0.65rem;
	padding-bottom: 2rem;
	text-align: center;
}

.ie-footer-brand {
	display: grid;
	justify-items: center;
	gap: 0.1rem;
	color: inherit;
	text-decoration: none;
}

.ie-footer-brand-script {
	font-family: "Great Vibes", cursive;
	font-size: clamp(2rem, 5vw, 3.15rem);
	line-height: 1;
	color: #dbcabf;
}

.ie-footer-brand-title {
	margin-top: -0.2rem;
	font-family: var(--ie-font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 0.95;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #f7efe8;
}

.ie-footer-brand-subtitle {
	margin-top: 0.45rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(245, 237, 230, 0.7);
}

.ie-footer-band {
	background: linear-gradient(180deg, rgba(201, 183, 167, 0.88) 0%, rgba(183, 163, 146, 0.92) 100%);
	color: #ffffff;
}

.ie-footer-band-inner {
	display: grid;
	justify-items: center;
	gap: 1rem;
	padding: 1.5rem 0 1.7rem;
	text-align: center;
}

.ie-footer-address p,
.ie-footer-address a {
	margin: 0;
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ie-footer-address {
	display: grid;
	gap: 0.45rem;
	justify-items: center;
	text-align: center;
}

.ie-footer-cta {
	display: grid;
	justify-items: center;
	gap: 0.9rem;
}

.ie-footer-book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 48px;
	padding: 0.85rem 1.5rem;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.9);
	color: #2f2622;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ie-footer-book:hover,
.ie-footer-book:focus-visible {
	background: #f4ebe4;
	color: #2f2622;
}

.ie-footer-social {
	display: flex;
	gap: 0.85rem;
}

.ie-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.ie-footer-social a:hover,
.ie-footer-social a:focus-visible {
	border-color: rgba(255, 255, 255, 0.74);
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
}

.ie-footer-social img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.ie-footer-copy {
	color: #f5ede6;
	font-size: 0.9rem;
}

.ie-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	padding: 0.95rem 0 1.2rem;
	text-align: center;
	font-size: 0.82rem;
	letter-spacing: 0.03em;
	color: rgba(245, 237, 230, 0.74);
}

.ie-hero,
.ie-section {
	padding: clamp(3rem, 8vw, 6rem) 0;
}

.ie-section-alt {
	background: var(--ie-cream);
}

.ie-card {
	padding: 1.5rem;
	border-radius: var(--ie-radius);
	background: var(--ie-white);
	box-shadow: var(--ie-shadow);
}

.ie-fade-in {
	opacity: 0;
	transform: translateY(22px);
	animation: ieFadeIn 0.7s ease forwards;
}

@keyframes ieFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.ie-header-top {
		display: flex;
		justify-content: space-between;
		min-height: 82px;
		padding-block: 0.3rem;
	}

	.ie-header-social,
	.ie-header-actions {
		display: none;
	}

	.ie-brand {
		justify-content: flex-start;
		text-align: left;
	}

	.ie-brand-logo {
		height: 68px;
		max-width: 320px;
	}

	.ie-header-bottom,
	.ie-desktop-nav {
		display: none;
	}

	.ie-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: var(--ie-cream);
	}
}

@media (max-width: 768px) {
	.ie-desktop-nav {
		display: none;
	}

	.ie-menu-toggle {
		display: block;
	}

	.ie-brand-logo {
		height: 56px;
		max-width: 240px;
	}

	.ie-footer-band-inner {
		justify-items: center;
		text-align: center;
	}

	.ie-footer-address {
		justify-items: center;
		text-align: center;
	}

	.ie-footer-bottom {
		justify-content: center;
	}
}

/* Home: fixed full-page background image with layered white/gray sections */
body.home {
	background: #f7e8eb;
	background-image: none !important;
}

body.home::before {
	display: none;
}

body.home .site-main,
body.home .ie-site-footer,
body.home main {
	position: relative;
	z-index: 1;
}

body.home .ie-site-header {
	position: sticky;
	z-index: 1200;
}

body.home .elementor-section.elementor-top-section {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 22px;
	margin: 0 auto 1.1rem;
	width: min(calc(100% - 2rem), var(--ie-container));
	box-shadow: 0 10px 30px rgba(26, 42, 60, 0.08);
	overflow: hidden;
}

body.home .elementor-section.elementor-top-section:nth-of-type(even) {
	background: rgba(255, 244, 246, 0.95);
}

body.home .elementor-section.elementor-top-section:first-of-type {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f6f0ea;
	border-radius: 0;
	margin-bottom: 0;
	width: 100%;
	box-shadow: none;
	min-height: clamp(460px, 78vh, 920px);
	overflow: hidden;
}

body.home .elementor-section.elementor-top-section:first-of-type > .elementor-container,
body.home .elementor-section.elementor-top-section:first-of-type > .elementor-column-gap-default {
	position: relative;
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	width: min(calc(100% - 2rem), 980px);
	padding: clamp(3rem, 8vw, 6rem) 0;
}

body.home .elementor-section.elementor-top-section:first-of-type::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(246, 240, 234, 0.12) 0%, rgba(246, 240, 234, 0.38) 100%);
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-image,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-custom-embed-image-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-image img,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-custom-embed-image-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container video {
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	will-change: transform;
	contain: paint;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-container,
body.home .elementor-section.elementor-top-section:first-of-type .e-con-inner,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-column,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-wrap,
body.home .elementor-section.elementor-top-section:first-of-type .e-con {
	position: relative;
	z-index: 2;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-heading,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-text-editor,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-button {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-heading .elementor-heading-title {
	color: #ffffff;
	text-shadow: 0 10px 36px rgba(63, 52, 44, 0.18);
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-text-editor,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-text-editor p {
	color: rgba(255, 255, 255, 0.94);
}

/* Home typography + button normalization for Elementor content */
body.home .elementor-widget-heading h1,
body.home .elementor-widget-heading h2,
body.home .elementor-widget-heading h3,
body.home .elementor-widget-heading h4,
body.home .elementor-widget-heading h5 {
	color: #c6bbae;
	font-family: var(--ie-font-heading);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.16;
}

body.home .elementor-widget-text-editor,
body.home .elementor-widget-text-editor p,
body.home .elementor-widget-icon-list,
body.home .elementor-widget-icon-list .elementor-icon-list-text {
	color: #1f2430;
	font-family: var(--ie-font-body);
}

body.home .elementor-widget-divider .elementor-divider-separator {
	border-color: rgba(26, 42, 60, 0.3);
}

body.home .elementor-widget-button .elementor-button,
body.home .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.82rem 1.6rem;
	border: 0;
	border-radius: 0;
	background: #c6bbae;
	color: #ffffff;
	font-family: var(--ie-font-body);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.11em;
	text-align: center;
	text-transform: uppercase;
	box-shadow: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

body.home .elementor-widget-button .elementor-button .elementor-button-text,
body.home .elementor-button .elementor-button-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

body.home .elementor-widget-button .elementor-button:hover,
body.home .elementor-widget-button .elementor-button:focus-visible,
body.home .elementor-button:hover,
body.home .elementor-button:focus-visible {
	background: #b3a696;
	color: #ffffff;
	transform: translateY(-1px);
}

/* Home intro section typography to match the target feel */
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading:first-of-type .elementor-heading-title {
	font-family: var(--ie-font-heading);
	font-size: clamp(2.2rem, 3.4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.08;
	color: #8b6f5a;
	text-transform: none;
	font-style: normal;
	margin-bottom: 0.02em;
	display: inline-block;
	width: 100%;
	max-width: 880px;
	white-space: normal;
	text-align: center;
	transform: perspective(900px) rotateX(32deg) scaleX(1.12);
	transform-origin: center bottom;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading:nth-of-type(2) .elementor-heading-title {
	font-family: var(--ie-font-heading);
	font-size: clamp(2.25rem, 3.6vw, 3.35rem);
	font-weight: 700;
	letter-spacing: 0.005em;
	line-height: 1;
	color: #6f5646;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	margin-top: -0.08em;
	display: inline-block;
	white-space: nowrap;
	transform: rotate(-4deg);
	transform-origin: center center;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-text-editor,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-text-editor p,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading h2,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading h3 {
	color: #8b6f5a;
	font-weight: 500;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-text-editor {
	text-align: center;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-text-editor .welcome-hero-line {
	margin: 0 0 0.75rem;
	font-family: var(--ie-font-heading);
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #6f5646;
	display: inline-block;
	white-space: nowrap;
	transform: rotate(-4deg);
	transform-origin: center center;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-text-editor .welcome-hero-sub {
	margin: 0;
	font-size: clamp(1rem, 1.45vw, 1.28rem);
	line-height: 1.7;
	letter-spacing: 0.01em;
	color: #8b6f5a;
	font-weight: 500;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading {
	text-align: center;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading:first-of-type,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading:nth-of-type(2) {
	margin-bottom: 0;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-wrap,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-element {
	text-align: center;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-heading:nth-of-type(1) .elementor-heading-title,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-heading:nth-of-type(2) .elementor-heading-title {
	display: block !important;
	width: max-content;
	max-width: 100%;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
	transform-origin: center center !important;
	white-space: nowrap !important;
	color: #6f5646 !important;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-heading:nth-of-type(1) .elementor-heading-title {
	font-size: clamp(2rem, 3.1vw, 2.85rem) !important;
	font-weight: 500 !important;
	line-height: 0.96 !important;
	letter-spacing: 0.02em !important;
	transform: perspective(900px) rotateX(34deg) scaleX(1.12) !important;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-heading:nth-of-type(2) .elementor-heading-title {
	font-size: clamp(2.25rem, 3.6vw, 3.35rem) !important;
	font-weight: 700 !important;
	line-height: 0.98 !important;
	letter-spacing: 0.01em !important;
	margin-top: -0.12em !important;
	transform: perspective(1000px) rotateX(28deg) scaleX(1.1) !important;
}

body.home .elementor-button:focus-visible,
body.home .ie-book-btn:focus-visible {
	outline: 2px solid #1a2a3c;
	outline-offset: 2px;
}

/* Last section: transparent outline buttons */
body.home .elementor-section.elementor-top-section:last-of-type .elementor-widget-button .elementor-button,
body.home .elementor-section.elementor-top-section:last-of-type .elementor-button {
	background: transparent;
	border: 1px solid #c6bbae;
	color: #b8ac9e;
	box-shadow: none;
}

body.home .elementor-section.elementor-top-section:last-of-type .elementor-widget-button .elementor-button:hover,
body.home .elementor-section.elementor-top-section:last-of-type .elementor-widget-button .elementor-button:focus-visible,
body.home .elementor-section.elementor-top-section:last-of-type .elementor-button:hover,
body.home .elementor-section.elementor-top-section:last-of-type .elementor-button:focus-visible {
	background: #c6bbae;
	color: #ffffff;
	border-color: #c6bbae;
}

/* Home footer follows the same footer system without spacer hacks */
body.home .ie-site-footer {
	margin-top: 0;
	position: relative;
}

@media (max-width: 768px) {
	body.home .elementor-section.elementor-top-section {
		width: calc(100% - 1rem);
		border-radius: 16px;
	}

	body.home .elementor-section.elementor-top-section:first-of-type {
		min-height: 48vh;
	}
}

/* Home cleanup: remove page-wide card backgrounds and stop forcing the hero video layer */
body.home {
	background: transparent;
	background-image: none !important;
}

body.home .elementor-section.elementor-top-section,
body.home .elementor-section.elementor-top-section:nth-of-type(even) {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
	max-width: none;
	margin: 0;
}

body.home .elementor-section.elementor-top-section:first-of-type {
	display: block;
	background: transparent;
	min-height: auto;
}

body.home .elementor-section.elementor-top-section:first-of-type::before {
	display: none;
}

body.home .elementor-section.elementor-top-section:first-of-type > .elementor-container,
body.home .elementor-section.elementor-top-section:first-of-type > .elementor-column-gap-default {
	width: 100%;
	padding: 0;
}

body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-widget-video video,
body.home .elementor-section.elementor-top-section:first-of-type .elementor-background-video-container video {
	transform: none;
	backface-visibility: visible;
	will-change: auto;
	contain: none;
}

@media (max-width: 768px) {
	body.home .elementor-section.elementor-top-section {
		width: 100%;
		border-radius: 0;
	}

	body.home .elementor-section.elementor-top-section:first-of-type {
		min-height: auto;
	}
}

/* Home image carousel: normalize slide size and force image cover */
body.home .elementor-widget-image-carousel .elementor-image-carousel-wrapper {
	overflow: hidden;
}

body.home .elementor-widget-image-carousel .swiper-wrapper {
	align-items: stretch;
}

body.home .elementor-widget-image-carousel .swiper-slide {
	height: clamp(190px, 24vw, 320px);
}

body.home .elementor-widget-image-carousel .swiper-slide figure,
body.home .elementor-widget-image-carousel .swiper-slide .swiper-slide-inner,
body.home .elementor-widget-image-carousel .swiper-slide a {
	display: block;
	height: 100%;
}

body.home .elementor-widget-image-carousel .swiper-slide img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: none !important;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	backface-visibility: hidden;
	transform: translateZ(0);
}

@media (max-width: 768px) {
	body.home .elementor-widget-image-carousel .swiper-slide {
		height: clamp(150px, 42vw, 240px);
	}
}

/* Fix hamburger menu behavior (desktop vs mobile) */



/* Mobile and tablet (<= 1024px) */
@media (max-width: 1024px) {

	/* Show hamburger */
	.ie-menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
	}

	/* Keep drawer in layout; JS controls open/close */
	.ie-mobile-drawer {
		display: grid !important;
	}

	/* Hide desktop menu */
	.ie-header-bottom,
	.ie-desktop-nav {
		display: none !important;
	}
}


/* Desktop-only visibility rules */
@media (min-width: 1025px) {

	/* Hide hamburger */
	.ie-menu-toggle {
		display: none !important;
	}

	/* Hide mobile drawer */
	.ie-mobile-drawer {
		display: none !important;
	}

	/* Keep desktop menu visible */
	.ie-header-bottom,
	.ie-desktop-nav {
		display: flex !important;
	}
}

/* Normalize hamburger style */

.ie-menu-toggle {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	width: auto !important;
	height: auto !important;
	padding: 8px !important;
	box-shadow: none !important;
}

/* Hamburger bars */
.ie-menu-bars {
	width: 26px;
	height: 2px;
	background: var(--ie-navy);
	display: block;
	position: relative;
}

/* Top and bottom bars */
.ie-menu-bars::before,
.ie-menu-bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--ie-navy);
	transition: 0.3s ease;
}

.ie-menu-bars::before {
	top: -7px;
}

.ie-menu-bars::after {
	top: 7px;
}

/* Animate icon into X when menu is open */
.ie-menu-toggle[aria-expanded="true"] .ie-menu-bars {
	background: transparent;
}

.ie-menu-toggle[aria-expanded="true"] .ie-menu-bars::before {
	transform: rotate(45deg);
	top: 0;
}

.ie-menu-toggle[aria-expanded="true"] .ie-menu-bars::after {
	transform: rotate(-45deg);
	top: 0;
}

/* Home testimonial section */
body.home .elementor-widget-testimonial,
body.home .elementor-widget-testimonial-carousel,
body.home .elementor-widget-reviews,
body.home .elementor-widget-testimonial-carousel .elementor-swiper,
body.home .elementor-testimonial-wrapper {
	height: 100%;
}

body.home .elementor-widget-testimonial .elementor-widget-container,
body.home .elementor-widget-testimonial-carousel .elementor-widget-container,
body.home .elementor-widget-reviews .elementor-widget-container {
	height: 100%;
	padding: 1.4rem;
	background: rgba(245, 245, 245, 0.92);
	border: 1px solid rgba(26, 42, 60, 0.08);
	border-radius: 20px;
	box-shadow: 0 10px 26px rgba(26, 42, 60, 0.06);
}

body.home .elementor-testimonial,
body.home .elementor-testimonial__content,
body.home .elementor-testimonial__text,
body.home .elementor-testimonial__footer {
	background: transparent;
}

body.home .elementor-testimonial__text {
	color: #3f342c;
}

body.home .elementor-testimonial__name {
	color: #5a4636;
}

body.home .elementor-testimonial__title {
	color: #9a8b80;
}

/* Final override for the live Welcome block: left column, single heading widget */
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-heading .elementor-heading-title {
	display: block !important;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 auto 0.28em !important;
	font-family: inherit !important;
	font-size: clamp(2.1rem, 3.35vw, 3.15rem) !important;
	font-weight: 600 !important;
	line-height: 1.04 !important;
	letter-spacing: 0.01em !important;
	white-space: normal !important;
	text-align: center !important;
	color: #6f5646 !important;
	transform: none !important;
	transform-origin: center center !important;
	text-shadow: none !important;
}

body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-text-editor,
body.home .elementor-section.elementor-top-section:nth-of-type(2) .elementor-column:first-child .elementor-widget-text-editor p {
	text-align: center !important;
	color: #8b6f5a !important;
	font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
	font-weight: 500 !important;
}
