/*
  Ella brand typography — single source of truth.

  Use only these CSS variables elsewhere (templates / page CSS):
    var(--font-base)           body, UI, buttons
    var(--font-title)          headings
    var(--font-sub-title)      subheads
    var(--font-serif-display)  decorative display text

  Geom is the only brand typeface on the public website, in every language.
*/

:root,
html[data-theme-color="skin-9"] {
	--font-base: "Geom", ui-sans-serif, system-ui, sans-serif;
	--font-title: "Geom", ui-sans-serif, system-ui, sans-serif;
	--font-sub-title: "Geom", ui-sans-serif, system-ui, sans-serif;
	--font-serif-display: "Geom", ui-sans-serif, system-ui, sans-serif;
	--font-kanit: "Geom", ui-sans-serif, system-ui, sans-serif;
}

html :is(button, input, select, textarea) {
	font-family: var(--font-base);
}

/* Prevent mobile horizontal scroll from wide nowrap/footer/off-canvas edges.
   Theme base sets html { overflow: unset }, which lets page-level X scroll through. */
html {
	overflow-x: clip;
}

/* The home hero keeps a portrait canvas on phones instead of collapsing
   into a shallow landscape banner. */
.ella-home-hero__picture {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	overflow: hidden;
	pointer-events: none;
}

.ella-home-hero__media {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
}

.ella-home-hero__shade {
	background: rgba(0, 0, 0, 0.22);
	pointer-events: none;
}

.ella-home-hero__veil {
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.28) 42%,
		rgba(0, 0, 0, 0.08) 68%,
		transparent 100%
	);
	pointer-events: none;
}

.ella-home-hero__copy {
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

.ella-home-hero__stage {
	display: flex;
	align-items: center;
}

.ella-home-hero__stage > .row {
	width: 100%;
}

@media (max-width: 767px) {
	.ella-home-hero {
		height: clamp(650px, calc(100svh - 2rem), 780px);
		min-height: 650px;
		padding-top: 4.5rem;
	}

	.ella-home-hero__stage {
		padding-top: 0;
		padding-bottom: 1.5rem;
	}

	.ella-home-hero__copy {
		margin-top: 0;
		margin-left: 0;
		max-width: min(100%, 20rem);
	}

	.ella-home-hero__copy h1 {
		font-size: clamp(1.9rem, 8.4vw, 2.45rem);
		line-height: 1.1;
		letter-spacing: -0.02em;
		margin-bottom: 0.85rem;
	}

	.ella-home-hero__title-line {
		display: inline-block;
		white-space: nowrap;
	}

	.ella-home-hero__copy p {
		font-size: 0.95rem;
		line-height: 1.35;
		max-width: 16rem;
		margin-bottom: 1.35rem;
	}

	.ella-home-hero__veil {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.35) 0%,
			rgba(0, 0, 0, 0.45) 45%,
			rgba(0, 0, 0, 0.2) 100%
		);
	}

	.ella-service-details-grid {
		margin-inline: 0;
	}
}

.ella-legal-content {
	overflow-wrap: anywhere;
}

/* Services page: KissArt-style horizontal tabs + card grid */
.ella-services-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.65rem;
	overflow-x: auto;
	padding: 0.15rem 0 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(25, 25, 25, 0.08);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.ella-services-tabs__btn {
	flex: 0 0 auto;
	padding: 0.65rem 1.15rem;
	border: 1px solid rgba(25, 25, 25, 0.12);
	border-radius: 999px;
	background: transparent;
	color: rgba(25, 25, 25, 0.55);
	font-family: var(--font-base);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ella-services-tabs__btn:hover {
	color: #191919;
	border-color: rgba(25, 25, 25, 0.28);
}

.ella-services-tabs__btn.is-active {
	color: #191919;
	background: var(--primary, #CEAF62);
	border-color: var(--primary, #CEAF62);
}

.ella-booking-cta__btn {
	transition: background-color 0.35s ease, transform 0.35s ease;
}

.ella-booking-cta__btn:hover {
	background: #191919 !important;
}

.ella-booking-cta__btn:hover .ella-booking-cta__arrow path {
	fill: #ffffff;
}

.ella-services-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.75rem 1.25rem;
}

@media (min-width: 640px) {
	.ella-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}
}

@media (min-width: 1024px) {
	.ella-services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2.25rem 1.75rem;
	}
}

.ella-service-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	background: transparent;
	color: #191919;
	text-decoration: none;
	opacity: 1;
	transform: translateY(0) scale(1);
	transition:
		opacity 0.28s ease,
		transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.ella-service-card:hover {
	color: #191919;
}

.ella-service-card.is-hidden,
.ella-service-card[hidden] {
	display: none;
}

.ella-service-card.is-leaving {
	opacity: 0;
	transform: translateY(10px) scale(0.985);
	pointer-events: none;
}

.ella-service-card.is-entering {
	opacity: 0;
	transform: translateY(16px) scale(0.985);
	transition: none;
}

.ella-service-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 5 / 4;
	border-radius: 1.25rem;
	background: #eaeaea;
}

.ella-service-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ella-service-card:hover .ella-service-card__media img {
	transform: scale(1.04);
}

.ella-service-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding-inline: 0.15rem;
}

.ella-service-card__body::after {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2px;
	margin-top: 0.2rem;
	background: var(--primary, #ceaf62);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

.ella-service-card:hover .ella-service-card__body::after {
	transform: scaleX(1);
}

.ella-service-card__name {
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.ella-service-card__price {
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(25, 25, 25, 0.55);
}

.ella-services-vat-note {
	margin: 1.75rem 0 0;
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(25, 25, 25, 0.5);
}

/* Homepage category grid — warm gray like the previous Ella site */
.ella-home-categories {
	background: #f0ede7;
}

.ella-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem 0.85rem;
}

@media (min-width: 640px) {
	.ella-home-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}
}

@media (min-width: 1024px) {
	.ella-home-categories__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2.25rem 1.75rem;
	}
}

.ella-home-category-card {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	text-decoration: none;
	color: #191919;
	transition: color 0.25s ease;
}

.ella-home-category-card:hover {
	color: #191919;
}

.ella-home-category-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 5 / 4;
	border-radius: 1.25rem;
	background: #e6e2da;
}

@media (max-width: 639px) {
	.ella-home-category-card {
		gap: 0.55rem;
	}

	.ella-home-category-card__media {
		aspect-ratio: 1 / 1;
		border-radius: 0.9rem;
	}

	.ella-home-category-card__name {
		font-size: 0.9rem;
		line-height: 1.3;
	}

	.ella-home-category-card__name::after {
		width: 1.15rem;
		margin-top: 0.4rem;
	}
}

.ella-home-category-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ella-home-category-card:hover .ella-home-category-card__media img {
	transform: scale(1.04);
}

.ella-home-category-card__name {
	display: block;
	padding-inline: 0.15rem;
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.ella-home-category-card__name::after {
	content: "";
	display: block;
	width: 1.5rem;
	height: 2px;
	margin-top: 0.55rem;
	background: var(--primary, #ceaf62);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

.ella-home-category-card:hover .ella-home-category-card__name::after {
	transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	.ella-home-category-card__media img,
	.ella-home-category-card__name::after,
	.ella-service-card,
	.ella-service-card__media img,
	.ella-service-card__body::after {
		transition: none;
	}

	.ella-home-category-card:hover .ella-home-category-card__media img,
	.ella-service-card:hover .ella-service-card__media img {
		transform: none;
	}
}

/* Mirrored About sections share the same media geometry. */
.ella-about-split__media {
	aspect-ratio: 1035 / 701;
}

.ella-about-split__media--portrait {
	aspect-ratio: 521 / 718;
	max-width: 28rem;
	margin-inline: auto;
}

@media (min-width: 992px) {
	.ella-about-split__media--portrait {
		max-width: none;
		margin-inline: 0;
	}
}

.ella-about-split__media img,
.ella-about-split__media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.ella-about-split__media video {
	pointer-events: none;
}

/* Homepage / about stat callouts — room for wide values like 150+ */
.ella-stat-card {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.55rem 2.5rem 1.55rem 5.5rem;
	background: #f6f6f6;
}

.ella-stat-card--primary {
	background: var(--primary, #CEAF62);
}

.ella-stat-card__value {
	position: absolute;
	left: -0.35rem;
	font-size: 3.75rem;
	line-height: 1;
	white-space: nowrap;
	z-index: 0;
}

.ella-stat-card > p {
	position: relative;
	z-index: 1;
	margin: 0;
}

.ella-stat-card--wide {
	padding-left: 7rem;
}

.ella-stat-card--wide .ella-stat-card__value {
	left: -0.75rem;
	font-size: 3.25rem;
}

@media (min-width: 992px) {
	.ella-stat-card {
		padding: 2.1rem 2.85rem 2.1rem 7.5rem;
	}

	.ella-stat-card__value {
		left: -0.5rem;
		font-size: 5rem;
	}

	.ella-stat-card--wide {
		padding-left: 9.5rem;
	}

	.ella-stat-card--wide .ella-stat-card__value {
		left: -1rem;
		font-size: 4.5rem;
	}
}

@media (min-width: 992px) {
	.ella-about-split--reverse .ella-about-split__stats {
		transform: scaleX(-1);
	}

	.ella-about-split--reverse .ella-about-split__stats > div > div > span,
	.ella-about-split--reverse .ella-about-split__stats p {
		transform: scaleX(-1);
	}
}

@media (max-width: 991.98px) {
	.ella-about-split--reverse .ella-about-split__copy {
		order: 1;
	}

	.ella-about-split--reverse .ella-about-split__media-column {
		order: 2;
	}
}

/* Admin plain-text → site paragraphs / emphasis */
.ella-prose p {
	margin: 0 0 1rem;
}

.ella-prose p:last-child {
	margin-bottom: 0;
}

.ella-prose strong {
	font-weight: 600;
	color: #191919;
}

/* Emphasized keyword in light body copy (e.g. ασφάλεια) */
.ella-word-emphasis {
	font-weight: 800 !important;
	color: #191919;
}

.text-white .ella-word-emphasis {
	color: #ffffff;
}

.ella-prose em {
	font-style: italic;
}

/* Branded preloader */
.dz-loader {
	position: fixed;
	inset: 0;
	z-index: 9999999;
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.dz-loader > svg {
	position: absolute;
	top: 0;
	width: 100%;
	height: 110%;
	fill: #fff;
}

.dz-loader-info {
	position: relative;
	z-index: 2;
}

.ella-loader-inner {
	text-align: center;
}

.ella-loader-mark {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(5.25rem, 8vw, 6.75rem);
	aspect-ratio: 1;
	margin: 0 auto;
	isolation: isolate;
	animation: ella-loader-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both,
		ella-loader-pulse 2.2s ease-in-out 0.85s infinite;
}

.ella-loader-mark::before,
.ella-loader-mark::after {
	position: absolute;
	content: "";
	border-radius: 50%;
	pointer-events: none;
}

.ella-loader-mark::before {
	inset: 0;
	z-index: -1;
	border: 1px solid rgb(190 153 70 / 40%);
	animation: ella-loader-halo 2.2s ease-out 0.85s infinite;
}

.ella-loader-mark::after {
	inset: 15%;
	z-index: -2;
	background: radial-gradient(circle, rgb(211 178 104 / 22%) 0%, rgb(211 178 104 / 0%) 72%);
	filter: blur(8px);
}

.ella-loader-logo {
	display: block;
	width: 72%;
	height: auto;
	filter: drop-shadow(0 8px 12px rgb(91 65 19 / 12%));
}

@keyframes ella-loader-reveal {
	0% {
		opacity: 0;
		transform: scale(0.88);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes ella-loader-halo {
	0% {
		opacity: 0.55;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.28);
	}
}

@keyframes ella-loader-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ella-loader-mark,
	.ella-loader-mark::before {
		animation: none;
	}
}

/* Desktop header booking CTA — after Contact */
.ella-header-book {
	display: none;
}

@media (min-width: 992px) {
	.ella-header-book {
		display: inline-flex;
		align-items: center;
		margin-left: 0.85rem;
	}
}

.ella-header-book__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.15rem;
	border-radius: 999px;
	background: var(--primary, #ceaf62);
	color: #1a1a1a !important;
	font-family: var(--font-base);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.ella-header-book__btn:hover {
	background: #1a1a1a;
	color: #ffffff !important;
	transform: translateY(-1px);
}

body.ella-hero-gold .site-header:not(.is-fixed) .ella-header-book__btn {
	background: #1a1a1a;
	color: #ffffff !important;
}

body.ella-hero-gold .site-header:not(.is-fixed) .ella-header-book__btn:hover {
	background: #ffffff;
	color: #1a1a1a !important;
}

/* Header logo: black on gold hero pages until sticky white bar */
.ella-header-logo__on-gold,
.ella-header-logo__on-photo {
	display: none;
}

.ella-header-logo__ico {
	display: none;
	width: 2.85rem;
	height: auto;
}

body.ella-hero-gold .site-header:not(.is-fixed) .ella-header-logo__default {
	display: none;
}

body.ella-hero-gold .site-header:not(.is-fixed) .ella-header-logo__on-gold {
	display: block;
}

/* Active language is brand gold — invisible on gold hero until sticky bar */
body.ella-hero-gold .site-header:not(.is-fixed) .ella-lang-switch button[aria-current="true"] {
	color: #1a1a1a !important;
}

/* Mobile header: brand ico + tapered gold hamburger (legacy Ella) */
@media (max-width: 991px) {
	.ella-header-logo__letters {
		display: none !important;
	}

	.ella-header-logo__ico {
		display: block;
	}

	body.ella-hero-gold .site-header:not(.is-fixed) .ella-header-logo__ico {
		filter: brightness(0);
	}

	body.ella-hero-photo .site-header:not(.is-fixed) .ella-header-logo__ico {
		filter: none;
	}
}

.ella-mobile-menu-btn {
	display: none;
}

@media (max-width: 991px) {
	.ella-mobile-menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		padding: 0;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}
}

.ella-mobile-menu-btn span {
	position: absolute;
	left: 50%;
	width: 1.55rem;
	height: 2.5px;
	margin-left: -0.775rem;
	background: var(--primary, #ceaf62);
	clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease,
		top 0.3s ease,
		width 0.3s ease,
		clip-path 0.3s ease;
}

.ella-mobile-menu-btn span:nth-child(1) {
	top: 0.9rem;
}

.ella-mobile-menu-btn span:nth-child(2) {
	top: 1.3rem;
}

.ella-mobile-menu-btn span:nth-child(3) {
	top: 1.7rem;
}

.ella-mobile-menu-btn.open span:nth-child(1) {
	top: 1.3rem;
	width: 1.55rem;
	transform: rotate(135deg);
	clip-path: none;
	border-radius: 1px;
}

.ella-mobile-menu-btn.open span:nth-child(2) {
	opacity: 0;
	left: 50%;
}

.ella-mobile-menu-btn.open span:nth-child(3) {
	top: 1.3rem;
	width: 1.55rem;
	transform: rotate(-135deg);
	clip-path: none;
	border-radius: 1px;
}

body.ella-hero-gold .site-header:not(.is-fixed) .ella-mobile-menu-btn span {
	background: #1a1a1a;
}

/* Home hero: white header text/logo while overlaying the photo.
   Keep this desktop-only so the white links do not disappear inside
   the mobile drawer, which has a white background. */
@media (min-width: 992px) {
	body.ella-home .site-header:not(.is-fixed) .navbar-nav > li > a,
	body.ella-home .site-header:not(.is-fixed) .navbar-nav > li > a > span {
		color: #ffffff !important;
	}

	body.ella-home .site-header:not(.is-fixed) .ella-services-root > a::after {
		filter: brightness(0) invert(1);
	}

	body.ella-home .site-header:not(.is-fixed) .ella-lang-switch button {
		color: rgba(255, 255, 255, 0.55) !important;
	}

	body.ella-home .site-header:not(.is-fixed) .ella-lang-switch button[aria-current="true"] {
		color: #ffffff !important;
	}

	body.ella-home .site-header:not(.is-fixed) .ella-lang-switch span {
		color: rgba(255, 255, 255, 0.35) !important;
	}

	body.ella-home .site-header:not(.is-fixed) .ella-header-book__btn {
		background: var(--primary, #ceaf62);
		color: #ffffff !important;
	}

	body.ella-home .site-header:not(.is-fixed) .ella-header-book__btn:hover {
		background: #ffffff;
		color: #1a1a1a !important;
	}
}

@media (max-width: 991px) {
	body.ella-home .site-header .header-nav .navbar-nav > li > a,
	body.ella-home .site-header .header-nav .navbar-nav > li > a > span {
		color: #1a1a1a !important;
	}

	.site-header .header-nav {
		left: 0 !important;
		transform: translate3d(-100%, 0, 0);
		transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
		will-change: transform;
		contain: layout paint style;
	}

	.site-header .header-nav.show {
		transform: translate3d(0, 0, 0);
	}
}

body.ella-home .site-header:not(.is-fixed) .ella-mobile-menu-btn span {
	background: #ffffff;
}

/* Photo service pages: solid white header bar above the hero (not overlay) */
body.ella-hero-photo .site-header {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 1px 0 rgba(25, 25, 25, 0.06);
}

body.ella-hero-photo .site-header .main-bar {
	background: #ffffff;
	color: #1a1a1a;
}

body.ella-hero-photo .site-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

/* Service detail hero — olive panel + photo split */
.ella-service-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	min-height: clamp(22rem, 58vh, 34rem);
	background: #5d5c51;
}

.ella-service-hero__panel {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
	background: #5d5c51;
}

.ella-service-hero__copy {
	width: 100%;
	max-width: 28rem;
}

.ella-service-hero__title {
	margin: 0 0 1rem;
	color: #ffffff;
	font-family: var(--font-title);
	font-size: clamp(2rem, 3.8vw, 3.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.ella-service-hero__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.45rem;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.78);
}

.ella-service-hero__crumbs a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ella-service-hero__crumbs a:hover {
	color: #ffffff;
}

.ella-service-hero__sep {
	opacity: 0.55;
}

.ella-service-hero__current {
	color: rgba(255, 255, 255, 0.65);
}

.ella-service-hero__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #3f3e38;
}

.ella-service-hero__media-el {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 899px) {
	.ella-service-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.ella-service-hero__panel {
		padding: 2.25rem 1.25rem 2rem;
		min-height: 14rem;
	}

	.ella-service-hero__media {
		min-height: 18rem;
		aspect-ratio: 4 / 3;
	}
}

.ella-service-book {
	position: sticky;
	top: 6.5rem;
	padding: 1.75rem 1.5rem;
	background: #f6f6f6;
	border-radius: 1.25rem;
}

.ella-service-book__name {
	margin: 0 0 1.25rem;
	font-family: var(--font-title);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1a1a1a;
}

.ella-service-share {
	margin-top: 1.15rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ella-service-share__label {
	margin: 0 0 0.65rem;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(0, 0, 0, 0.55);
}

.ella-service-share__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.ella-service-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.95rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ella-service-share__btn:hover {
	border-color: rgba(206, 175, 98, 0.7);
	background: #fffdf8;
	color: #1a1a1a;
}

.ella-service-share__btn i {
	font-size: 0.95rem;
	color: #8a7340;
}

.ella-service-share__status {
	margin: 0.55rem 0 0;
	font-size: 0.8rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 991px) {
	.ella-service-book {
		position: static;
		margin-top: 0.5rem;
	}
}

.ella-laser-areas {
	margin-top: 1.5rem;
}

.ella-laser-areas__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ella-laser-areas__item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ella-laser-areas__name {
	font-size: 1.05rem;
	font-weight: 500;
	color: #1a1a1a;
}

.ella-laser-areas__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	font-size: 0.95rem;
	color: rgba(0, 0, 0, 0.65);
}

.ella-laser-areas__price {
	font-weight: 600;
	color: #1a1a1a;
}

.ella-laser-areas__deposit {
	font-weight: 400;
}

.ella-laser-areas__note {
	margin: 0.85rem 0 0;
	font-size: 0.85rem;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.5);
}

.ella-laser-book__label {
	display: block;
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.7);
}

.ella-laser-book__select {
	display: block;
	width: 100%;
	margin: 0 0 0.85rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 0.75rem;
	background: #fff;
	font-size: 0.95rem;
	line-height: 1.4;
	color: #1a1a1a;
	appearance: auto;
}

.ella-laser-book__summary {
	min-height: 1.4em;
	margin: 0 0 1.15rem;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(0, 0, 0, 0.65);
}

/* Shared decorative background for public-page hero sections. */
.ella-page-hero-pattern {
	background-image: url("../img/background/pattern3.webp");
	background-size: cover;
	background-repeat: no-repeat;
}

/* Gold page hero — matches legacy Ella service/inner headers */
.ella-page-hero {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	background-color: var(--primary, #ceaf62);
	min-height: 18.75rem;
}

@media (min-width: 640px) {
	.ella-page-hero {
		min-height: 22.5rem;
	}
}

@media (min-width: 768px) {
	.ella-page-hero {
		min-height: 26rem;
	}
}

@media (min-width: 1024px) {
	.ella-page-hero {
		min-height: 28.5rem;
	}
}

@media (min-width: 1536px) {
	.ella-page-hero {
		min-height: 32rem;
	}
}

.ella-page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.25rem, 4vw, 3.5rem);
	min-height: inherit;
	padding-top: clamp(5.5rem, 10vw, 7rem);
	padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.ella-page-hero__title {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	max-width: 38rem;
}

.ella-page-hero__heading {
	margin: 0;
	color: #1a1a1a;
	font-family: var(--font-title);
	font-size: clamp(2rem, 4.8vw, 4.75rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.ella-page-hero__mark {
	flex: 0 0 auto;
	display: none;
	width: clamp(8.5rem, 16vw, 13.5rem);
}

@media (min-width: 768px) {
	.ella-page-hero__mark {
		display: block;
	}
}

.ella-page-hero__mark-img {
	display: block;
	width: 100%;
	height: auto;
	filter: brightness(0);
}


/* Keep benefit ticks optically centered inside their circular markers. */
.ella-service-benefits {
	height: 100%;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	border: 1px solid rgba(25, 25, 25, 0.06);
	border-radius: 1rem;
	background: #f6f6f6;
}

.ella-service-detail-video {
	display: block;
	background: #191919;
}

@media (min-width: 1280px) {
	.ella-service-details-grid {
		align-items: stretch;
	}

	.ella-service-details-column {
		display: flex;
	}

	.ella-service-details-media,
	.ella-service-benefits {
		flex: 1 1 auto;
		width: 100%;
		min-height: 31.25rem;
	}

	.ella-service-details-media {
		height: auto !important;
	}
}

.ella-service-benefits__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ella-service-benefits__item {
	position: relative;
	min-height: 4.5rem;
	padding: 1rem 0 1rem 3.5rem;
	border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.ella-service-benefits__item:last-child {
	border-bottom: 0;
}

.ella-service-benefits__icon {
	position: absolute;
	top: 1rem;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--primary, #ceaf62);
	color: #191919;
	box-shadow: 0 6px 16px rgba(25, 25, 25, 0.08);
}

.ella-benefit-check {
	line-height: 1 !important;
}

.ella-benefit-check::before {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 1;
	transform: translate(-50%, -50%);
}

/*
  Accordion arrows: theme CSS forces fa-chevron-down to display:block,
  so both gold circles show at once. Keep one icon visible at a time.
*/
.myAccordion .arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.myAccordion .arrow > .fa-chevron-right,
.myAccordion .arrow > .fa-chevron-down,
.myAccordion .arrow > .fa-chevron-up {
	display: none !important;
}

.myAccordion .arrow > .fa-chevron-right {
	display: inline-flex !important;
}

.myAccordion .arrow.active > .fa-chevron-right {
	display: none !important;
}

.myAccordion .arrow.active > .fa-chevron-down,
.myAccordion .arrow.active > .fa-chevron-up {
	display: inline-flex !important;
}

/* Footer brand mark — keep compact on all breakpoints */
.ella-footer-logo {
	display: block;
	width: 4.5rem;
	height: auto;
}

@media (min-width: 992px) {
	.ella-footer-logo {
		width: 5.5rem;
	}
}

.ella-footer-social {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 1.15rem 0 0;
	padding: 0;
	list-style: none;
}

.ella-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #ffffff !important;
	font-size: 1rem;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.ella-footer-social a:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #5d5c51 !important;
}

/* Footer: olive ground + white copy */
.ella-site-footer {
	background-color: #5d5c51;
}

.ella-site-footer,
.ella-site-footer h2,
.ella-site-footer h3,
.ella-site-footer p,
.ella-site-footer li,
.ella-site-footer a {
	color: #ffffff;
}

.ella-site-footer a:hover {
	color: var(--primary, #ceaf62);
}

.ella-site-footer .link-hover::after {
	background-color: #ffffff;
}

.ella-footer-contact-btn {
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.55) !important;
	color: #ffffff !important;
}

.ella-footer-contact-btn:hover {
	background: #ffffff !important;
	border-color: #ffffff !important;
	color: #5d5c51 !important;
}

.ella-footer-payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.85rem 1.15rem;
	margin: 1.35rem 0 0;
	padding: 0;
	list-style: none;
	opacity: 0.72;
}

@media (min-width: 1280px) {
	.ella-footer-payments {
		justify-content: flex-start;
	}
}

.ella-footer-payments li {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.ella-footer-payments img {
	display: block;
	height: 1.55rem;
	width: auto;
	max-width: 3.75rem;
	object-fit: contain;
	/* Force monochrome white marks on the olive footer */
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.ella-footer-payments img[alt="IRIS"] {
	height: 1.55rem;
	max-width: 4.25rem;
}
