@font-face {
	font-family: "Bernard MT Condensed";
	src: url("fonts/BERNHC.TTF") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--epv-header-bg: #2f5a3f;
	--epv-header-utility-bg: #202020;
	--epv-header-text: #ffffff;
	--epv-header-border: rgba(255, 255, 255, 0.24);
}

.epv-header {
	position: relative;
	z-index: 20;
	color: var(--epv-header-text);
}

.epv-header a {
	color: inherit;
	text-decoration: none;
}

.epv-header__utility {
	background: var(--epv-header-utility-bg);
	font-size: 12px;
	letter-spacing: 0.02em;
}

.epv-header__main {
	background: var(--epv-header-bg);
}

.epv-header__inner {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.epv-header__inner--utility {
	padding: 8px 0;
}

.epv-header__inner--main {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 18px 0;
}

.epv-header__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin: 0;
	text-align: center;
}

.epv-header__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.epv-header__utility-link {
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.epv-header__utility-link:hover,
.epv-header__utility-link:focus-visible {
	background: #2f5a3f;
	border-color: #2f5a3f;
	color: #ffffff;
}

.epv-header__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 13px;
	height: 13px;
	flex: 0 0 auto;
}

.epv-header__branding {
	flex: 0 0 auto;
}

.epv-header__mobile-nav-wrap,
.epv-header__mobile-actions {
	display: none;
}

.epv-header__mobile-toggle {
	list-style: none;
	cursor: pointer;
}

.epv-header__mobile-toggle::-webkit-details-marker {
	display: none;
}

.epv-header__branding .custom-logo-link,
.epv-header__branding .custom-logo-link img,
.epv-header__logo-link,
.epv-header__logo-image {
	display: block;
}

.epv-header__branding .custom-logo-link img,
.epv-header__logo-image {
	max-height: 86px;
	width: auto;
}

.epv-header__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.epv-header__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.epv-header__site-name {
	display: inline-block;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.epv-header__nav {
	flex: 1 1 auto;
	min-width: 0;
}

.epv-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.epv-header__menu-link {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.epv-header__menu-item {
	position: relative;
}

.epv-header__submenu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	z-index: 30;
	width: max-content;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(18, 31, 24, 0.16);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, -8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.epv-header__submenu::before {
	position: absolute;
	top: -14px;
	left: 0;
	width: 100%;
	height: 14px;
	content: "";
}

.epv-header__menu-item--has-children:hover .epv-header__submenu,
.epv-header__menu-item--has-children:focus-within .epv-header__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.epv-header__submenu-link {
	display: block;
	padding: 11px 14px;
	color: #214732 !important;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color 160ms ease, color 160ms ease;
}

.epv-header__submenu-link:hover,
.epv-header__submenu-link:focus-visible {
	background: rgba(33, 71, 50, 0.08);
	color: #214732 !important;
}

.epv-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}

.epv-header__languages {
	display: flex;
	align-items: center;
	gap: 10px;
}

.epv-header__languages img {
	display: block;
}

.epv-header__language {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	border: 1px solid var(--epv-header-border);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.epv-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 22px;
	border: 1px solid #f4efe7;
	border-radius: 999px;
	background: #f4efe7;
	color: #214732 !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.epv-header__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.epv-header__cta:hover,
.epv-header__cta:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: #214732 !important;
}

.epv-header__mobile-panel {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.epv-footer {
	background: #f4f1ea;
	color: #214732;
	margin-top: 0;
}

.epv-footer a {
	color: inherit;
	text-decoration: none;
}

.epv-footer__inner {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.epv-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(33, 71, 50, 0.24);
	border-radius: 999px;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.epv-footer__social-link svg {
	width: 18px;
	height: 18px;
}

.epv-footer__icon--inline {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.epv-footer__partners {
	background: #ffffff;
	padding: 10px 0 12px;
}

.epv-footer__proposal {
	background: #fbfaf7;
	padding: 22px 0;
}

.epv-footer__proposal-inner {
	display: block;
}

.epv-footer__proposal-copy {
	display: grid;
	grid-template-columns: minmax(480px, auto) max-content;
	gap: 24px 40px;
	justify-content: center;
	align-items: start;
	padding: 24px 28px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.epv-footer__proposal-main {
	display: grid;
	grid-template-columns: 126px minmax(340px, 430px);
	gap: 20px 26px;
	align-items: start;
}

.epv-footer__proposal-brand img {
	display: block;
	width: 104px;
	height: auto;
}

.epv-footer__proposal-aside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	align-self: start;
}

.epv-footer__proposal-column {
	min-width: 0;
}

.epv-footer__proposal-column--address {
	display: grid;
	gap: 2px;
	align-content: start;
}

.epv-footer__proposal-address,
.epv-footer__proposal-link {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.35;
}

.epv-footer__proposal-links {
	display: grid;
	gap: 1px;
	margin-top: 2px;
}

.epv-footer__proposal-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.epv-footer__proposal-address,
.epv-footer__proposal-link {
	padding: 4px 0;
	background: transparent;
	border: 0;
	font-size: 14px;
	transition: color 160ms ease, background-color 160ms ease;
}

.epv-footer__proposal-address-text {
	display: grid;
	gap: 2px;
}

.epv-footer__proposal-address:hover,
.epv-footer__proposal-address:focus-visible,
.epv-footer__proposal-link:hover,
.epv-footer__proposal-link:focus-visible {
	color: #466b54;
}

.epv-footer__social-link--proposal {
	width: 36px;
	height: 36px;
	background: transparent;
	border-color: rgba(33, 71, 50, 0.18);
}

.epv-footer__jobs--proposal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 16px;
	min-height: 36px;
	background: transparent;
	color: #214732;
	border: 1px solid rgba(33, 71, 50, 0.18);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.epv-footer__jobs-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
}

.epv-footer a.epv-footer__jobs--proposal {
	color: #214732 !important;
}

.epv-footer__social-link--proposal:hover,
.epv-footer__social-link--proposal:focus-visible,
.epv-footer__jobs--proposal:hover,
.epv-footer__jobs--proposal:focus-visible {
	background: rgba(33, 71, 50, 0.08);
	border-color: rgba(33, 71, 50, 0.28);
	color: #214732;
}

.epv-footer a.epv-footer__jobs--proposal {
	color: #ffffff;
}

.epv-footer__partners img {
	display: block;
	width: 100%;
	max-width: 984px;
	height: auto;
	margin: 0 auto;
}

.epv-footer__legal {
	background: #234b35;
	color: rgba(214, 225, 214, 0.58);
	padding: 18px 0;
}

.epv-footer__legal-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 12px;
	line-height: 1.4;
}

.epv-footer__legal-links a,
.epv-footer__legal-credit span,
.epv-footer__legal-separator {
	color: inherit;
}

.epv-footer__legal-credit {
	display: inline;
	color: rgba(92, 121, 92, 0.82);
}

.epv-footer__legal-links > a,
.epv-footer__legal-credit a {
	transition: color 160ms ease;
}

.epv-footer__legal-links > a:hover,
.epv-footer__legal-links > a:focus-visible,
.epv-footer__legal-credit a:hover,
.epv-footer__legal-credit a:focus-visible {
	color: rgba(240, 246, 240, 0.9);
}

@media (max-width: 1080px) {
	.epv-header__inner--main {
		flex-wrap: wrap;
		justify-content: center;
	}

	.epv-header__nav {
		order: 3;
		width: 100%;
	}
}

@media (max-width: 782px) {
	.epv-footer__inner {
		width: min(100%, calc(100% - 32px));
	}

	.epv-footer__proposal {
		padding: 18px 0;
	}

	.epv-footer__proposal-copy {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px 20px;
	}

	.epv-footer__proposal-main {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.epv-footer__proposal-column--address,
	.epv-footer__proposal-column--contact {
		display: block;
	}

	.epv-footer__proposal-links {
		flex-direction: column;
		align-items: flex-start;
	}

	.epv-footer__proposal-socials {
		flex-wrap: wrap;
	}

	.epv-footer__legal-links {
		flex-wrap: wrap;
		gap: 8px 12px;
		justify-content: flex-start;
	}

	.epv-header__inner {
		width: min(100%, calc(100% - 28px));
	}

	.epv-header__utility {
		display: none;
	}

	.epv-header__inner--main {
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		align-items: center;
		gap: 14px;
		padding: 10px 0;
		position: relative;
	}

	.epv-header__branding .custom-logo-link img,
	.epv-header__logo-image {
		max-height: 78px;
		margin: 0 auto;
	}

	.epv-header__branding {
		display: flex;
		justify-content: center;
		min-width: 0;
	}

	.epv-header__nav,
	.epv-header__actions {
		display: none;
	}

	.epv-header__mobile-nav-wrap,
	.epv-header__mobile-actions {
		display: block;
	}

	.epv-header__mobile-nav-wrap {
		position: static;
		align-self: center;
	}

	.epv-header__mobile-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		color: #c7c1ba;
		border-radius: 6px;
	}

	.epv-header__mobile-toggle:focus-visible {
		outline: 2px solid rgba(255, 255, 255, 0.6);
		outline-offset: 2px;
	}

	.epv-header__icon--menu {
		width: 30px;
		height: 30px;
	}

	.epv-header__mobile-panel {
		position: absolute;
		top: 100%;
		left: -14px;
		right: -14px;
		width: auto;
		padding: 12px 18px;
		background: #234b35;
		border-radius: 0;
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
		box-sizing: border-box;
		z-index: 30;
	}

	.epv-header__mobile-nav-wrap[open] .epv-header__mobile-panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.epv-header__mobile-menu {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.epv-header__mobile-menu-item--languages {
		padding: 6px 0 10px;
	}

	.epv-header__mobile-languages {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		padding: 0 2px;
	}

	.epv-header__mobile-languages .gtranslate_wrapper,
	.epv-header__mobile-languages .gt_wrapper,
	.epv-header__mobile-languages [id^="gt-wrapper-"] {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.epv-header__mobile-languages img {
		display: block;
	}

	.epv-header__mobile-menu-item + .epv-header__mobile-menu-item {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.epv-header__mobile-menu-link {
		display: block;
		padding: 11px 2px;
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	.epv-header__mobile-menu-link--cta {
		color: #dfeadf;
	}

	.epv-header__mobile-submenu-wrap {
		margin: 0;
		padding: 0;
	}

	.epv-header__mobile-submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		cursor: pointer;
	}

	.epv-header__mobile-submenu-toggle::-webkit-details-marker {
		display: none;
	}

	.epv-header__mobile-submenu-toggle::marker {
		content: "";
	}

	.epv-header__mobile-submenu-icon {
		position: relative;
		width: 22px;
		height: 22px;
		flex: 0 0 22px;
		color: currentColor;
		transition: transform 180ms ease;
	}

	.epv-header__mobile-submenu-icon::before {
		position: absolute;
		top: 6px;
		left: 7px;
		width: 8px;
		height: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		content: "";
		transform: rotate(45deg);
	}

	.epv-header__mobile-submenu-wrap[open] .epv-header__mobile-submenu-icon {
		transform: rotate(180deg);
	}

	.epv-header__mobile-submenu {
		margin: -2px 0 8px;
		padding: 0 0 0 14px;
		list-style: none;
	}

	.epv-header__mobile-submenu-link {
		display: block;
		padding: 7px 2px;
		color: rgba(255, 255, 255, 0.78);
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 0.04em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.epv-header__mobile-actions {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 8px;
	}

	.epv-header__mobile-action {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		color: rgba(255, 255, 255, 0.96);
	}

	.epv-header__mobile-action--phone {
		width: 22px;
		height: 22px;
		padding: 2px;
		background: #ffffff;
		color: var(--epv-header-bg);
		border-radius: 4px;
		box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	}

	.epv-header a.epv-header__mobile-action--phone {
		color: var(--epv-header-bg);
	}

	.epv-header a.epv-header__mobile-action--calendar {
		color: rgba(255, 255, 255, 0.96);
	}

	.epv-header__mobile-action--calendar {
		width: 28px;
		height: 28px;
		padding: 1px;
	}

	.epv-header__icon--phone {
		width: 17px;
		height: 17px;
	}

	.epv-header__icon--calendar {
		width: 21px;
		height: 21px;
	}
}

.page .entry-header {
	display: none;
}

.single-epv_space .entry-header {
	display: none;
}

.single-epv_space #primary,
.single-epv_space .site-main,
.single-epv_space article,
.single-epv_space .entry-content {
	margin-bottom: 0;
	padding-bottom: 0;
}

.single-epv_space.ast-separate-container #primary {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.single-epv_space .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 !important;
	background: #ffffff;
}

.single-epv_space #content,
.single-epv_space #primary,
.single-epv_space .site-main,
.single-epv_space article,
.single-epv_space .entry-content {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.single-epv_space #content {
	padding: 0 !important;
}

.single-epv_space.ast-separate-container .ast-article-single {
	padding: 0 !important;
	background: transparent;
}

.single-epv_space .post-navigation {
	display: none;
}

.entry-content p:not([style*="text-transform:uppercase"]) {
	font-size: 16px !important;
	line-height: 1.7 !important;
}

.entry-content h1.wp-block-heading,
.entry-content h1:not(.site-title) {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
}

.entry-content h2.wp-block-heading,
.entry-content h2:not(.site-title) {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
}

.entry-content h3.wp-block-heading,
.entry-content h3 {
	font-family: "Ms Madi", cursive !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.single-post .entry-title {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: clamp(36px, 4vw, 56px) !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #25322a !important;
}

.single-post .entry-meta.epv-single-post__meta,
.single-post .entry-meta.epv-single-post__meta * {
	color: #6b836f !important;
}

.single-post .epv-single-post__date {
	display: inline-block;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	line-height: 1.4 !important;
	text-transform: uppercase;
}

.single-post .entry-content p:not([style*="text-transform:uppercase"]) {
	color: #25322a !important;
}

body.category-noticies-esdeveniments-gastronomics .ast-archive-description {
	padding-bottom: 34px;
}

body.category-noticies-esdeveniments-gastronomics .ast-archive-description .page-title {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: clamp(36px, 4vw, 56px) !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #25322a !important;
}

body.category-noticies-esdeveniments-gastronomics .site-main > .ast-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post {
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .ast-article-inner {
	height: 100%;
	background: transparent;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .post-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .ast-blog-featured-section {
	margin-bottom: 0;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .post-thumb {
	aspect-ratio: 1.08 / 1;
	background: #d7ddd1;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .post-thumb a,
body.category-noticies-esdeveniments-gastronomics .ast-article-post .post-thumb-img-content {
	display: block;
	width: 100%;
	height: 100%;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.32s ease;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post:hover .post-thumb img,
body.category-noticies-esdeveniments-gastronomics .ast-article-post:focus-within .post-thumb img {
	transform: scale(1.03);
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .entry-title {
	order: 2;
	margin: 0 !important;
	padding: 0 20px;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #25322a !important;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .entry-title a {
	color: #25322a !important;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .entry-header {
	order: 1;
	display: flex;
	flex-direction: column;
	padding: 0 20px;
}

body.category-noticies-esdeveniments-gastronomics .entry-meta.epv-archive-post__meta,
body.category-noticies-esdeveniments-gastronomics .entry-meta.epv-archive-post__meta * {
	color: #6b836f !important;
}

body.category-noticies-esdeveniments-gastronomics .entry-meta .epv-archive-post__date {
	display: inline-block;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	line-height: 1.4 !important;
	text-transform: uppercase;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .entry-meta {
	margin: 20px 0 10px;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .ast-excerpt-container {
	order: 3;
	padding: 0 20px 24px;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .ast-excerpt-container p {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: #25322a !important;
}

body.category-noticies-esdeveniments-gastronomics .ast-article-post .ast-read-more-container,
body.category-noticies-esdeveniments-gastronomics .ast-article-post .entry-content {
	display: none;
}

body.category-noticies-esdeveniments-gastronomics nav.navigation.pagination {
	margin-top: 38px;
}

@media (max-width: 1120px) {
	body.category-noticies-esdeveniments-gastronomics .site-main > .ast-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	body.category-noticies-esdeveniments-gastronomics .site-main > .ast-row {
		grid-template-columns: 1fr;
	}
}

.page-id-3061 .epv-page-title {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif;
	font-size: 72px !important;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.96 !important;
	text-transform: none;
}

.page-id-3061 .epv-page-heading {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif;
	font-size: 46px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.02;
	text-transform: none;
}

.page-id-3061 .epv-page-hero {
	background: transparent !important;
}

.epv-page-buttons {
	gap: 12px;
}

.epv-page-button .wp-block-button__link,
.epv-styleguide__form-demo button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 14px 22px;
	border: 1px solid rgba(33, 71, 50, 0.18);
	border-radius: 999px;
	background: transparent;
	color: #214732 !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.epv-page-button--solid .wp-block-button__link {
	background: #214732;
	border-color: #214732;
	color: #ffffff !important;
}

.epv-page-button--ghost .wp-block-button__link {
	background: transparent;
	border-color: rgba(33, 71, 50, 0.18);
	color: #214732 !important;
}

.epv-page-button--solid .wp-block-button__link:hover,
.epv-page-button--solid .wp-block-button__link:focus-visible,
.epv-styleguide__form-demo button:hover,
.epv-styleguide__form-demo button:focus-visible {
	background: #2b5a41;
	border-color: #2b5a41;
	color: #ffffff !important;
}

.epv-page-button--ghost .wp-block-button__link:hover,
.epv-page-button--ghost .wp-block-button__link:focus-visible {
	background: rgba(33, 71, 50, 0.08);
	border-color: rgba(33, 71, 50, 0.28);
	color: #214732 !important;
}

.epv-page-button--light .wp-block-button__link {
	background: #ffffff;
	border-color: #ffffff;
	color: #214732 !important;
}

.epv-page-button--outline-light .wp-block-button__link {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.82);
	color: #ffffff !important;
}

.epv-page-button--light .wp-block-button__link:hover,
.epv-page-button--light .wp-block-button__link:focus-visible {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.9);
	color: #214732 !important;
}

.epv-page-button--outline-light .wp-block-button__link:hover,
.epv-page-button--outline-light .wp-block-button__link:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
	color: #ffffff !important;
}

.page #primary,
.page .site-main,
.page article,
.page .entry-content {
	margin-bottom: 0;
	padding-bottom: 0;
}

.page.ast-separate-container #primary {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.page.ast-separate-container .ast-article-single {
	padding-top: 0;
	padding-bottom: 0;
}

.page-id-368 .uagb-block-b0c210fa {
	display: none;
}

.page-id-3061 .entry-content > .wp-block-group:last-child,
.page-id-3061 .epv-page-cta-band {
	margin-bottom: 0 !important;
}

.page-id-3061 .epv-page-cta-band {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

.page-id-3061 .epv-page-cta-band > .alignwide {
	width: min(1100px, calc(100% - 88px));
	max-width: 1100px;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
	margin-left: auto !important;
	margin-right: auto !important;
}

.page-id-3061 .epv-page-cta-band .epv-page-heading--center {
	max-width: 15ch;
	margin-left: auto;
	margin-right: auto;
}

.page-id-3061 .epv-page-cta-band .epv-page-heading-script {
	display: inline-block;
	font-family: "Ms Madi", cursive;
	font-size: 1.16em;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: none;
}

.page-id-3061 .epv-page-cta-band p.has-text-align-center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.page-id-3061 .epv-footer__proposal {
	padding-top: 22px;
}

.epv-page-layout,
.epv-palau-proposal {
	margin-top: 0;
	margin-bottom: 0;
	overflow: hidden;
}

.epv-page-row,
.epv-palau-proposal__row {
	padding: 86px 24px;
}

.epv-page-row--white,
.epv-palau-proposal__row--linen {
	background: #ffffff;
}

.epv-page-row--cream,
.epv-palau-proposal__row--sage {
	background: #f4efe7;
}

.epv-palau-proposal__row--sand {
	background: #ffffff;
}

.epv-palau-proposal__row--mist {
	background: #f4efe7;
}

.epv-page-inner,
.epv-palau-proposal__inner {
	width: min(1290px, 100%);
	max-width: 1290px;
	margin-right: auto;
	margin-left: auto;
	gap: clamp(34px, 5vw, 76px);
}

.epv-page-split {
	display: flex;
	align-items: center;
	flex-wrap: nowrap !important;
	gap: clamp(34px, 5vw, 76px);
}

.epv-page-split > .wp-block-column {
	flex: 1 1 0;
	min-width: 0;
}

.epv-page-title,
.epv-palau-proposal__title {
	margin-top: 10px;
	margin-bottom: 22px;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #214732 !important;
	font-size: clamp(50px, 5.4vw, 78px) !important;
	line-height: 0.92 !important;
}

.epv-page-heading,
.epv-palau-proposal__heading {
	margin-top: 10px;
	margin-bottom: 20px;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #214732 !important;
	font-size: clamp(36px, 3.5vw, 52px) !important;
	line-height: 1 !important;
}

.epv-page-eyebrow,
.epv-palau-proposal__eyebrow {
	margin-bottom: 0;
	color: #63775d;
	font-size: 13px !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.epv-weekend-menu .epv-page-eyebrow {
	font-family: "Montserrat", sans-serif !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.16em !important;
	line-height: 1.2 !important;
}

.epv-page-layout p:not(.epv-page-eyebrow),
.epv-palau-proposal p:not(.epv-palau-proposal__eyebrow) {
	max-width: 660px;
	color: #25322a;
}

.epv-weekend-menu {
	background: #ffffff;
}

.epv-weekend-menu__hero {
	background: linear-gradient(135deg, #ffffff 0%, #f4efe7 100%);
}

.epv-weekend-menu__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
	align-items: end;
	gap: clamp(30px, 5vw, 72px);
}

.epv-weekend-menu__intro {
	text-align: left;
}

.epv-weekend-menu__lead {
	max-width: 760px !important;
	margin-top: 0;
	margin-bottom: 22px;
	color: #25322a !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
}

.epv-weekend-menu .epv-page-title {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	color: #214732 !important;
}

.epv-bilingual-text {
	display: flex;
	flex-direction: column;
	gap: 0.14em;
}

.epv-bilingual-text__ca,
.epv-bilingual-text__es {
	display: block;
}

.epv-bilingual-text__es {
	opacity: 0.88;
	font-size: 0.84em;
	line-height: 1.2;
}

.epv-weekend-menu__season {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 0;
	margin-bottom: 14px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #51674e;
	font-size: 13px !important;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.epv-weekend-menu__season::before {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2.5' y='4.5' width='15' height='13' rx='3' stroke='%2363775d' stroke-width='1.6'/%3E%3Cpath d='M6 2.8v3.4M14 2.8v3.4M2.8 8.2h14.4' stroke='%2363775d' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.epv-weekend-menu__buttons {
	margin-top: 0;
}

.epv-weekend-menu__buttons--related {
	margin-top: 0;
	margin-bottom: 10px;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	width: auto;
	max-width: 100%;
}

.epv-weekend-menu__buttons--related .wp-block-button,
.epv-weekend-menu__buttons--related .epv-page-button {
	flex: 0 0 auto;
	width: auto !important;
	min-width: 0;
}

.epv-weekend-menu__buttons--related .wp-block-button__link {
	display: inline-flex;
	width: auto;
	white-space: normal;
}

.epv-weekend-menu__buttons--actions {
	margin-top: 0;
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center;
	gap: 12px;
	width: auto;
	max-width: 100%;
}

.epv-weekend-menu__buttons--actions .wp-block-button,
.epv-weekend-menu__buttons--actions .epv-page-button {
	flex: 0 0 auto;
	width: auto !important;
	min-width: 0;
}

.epv-weekend-menu__buttons--actions .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	width: auto;
	white-space: normal;
	text-align: left;
}

.epv-weekend-menu__action-button .wp-block-button__link {
	gap: 10px;
	padding-right: 24px;
	padding-left: 24px;
}

.epv-weekend-menu__action-button .wp-block-button__link .epv-bilingual-text {
	gap: 0.08em;
}

.epv-weekend-menu__action-button .wp-block-button__link::before {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.epv-weekend-menu__action-button--reserve .wp-block-button__link::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2.5' y='4.5' width='15' height='13' rx='3' stroke='white' stroke-width='1.7'/%3E%3Cpath d='M6 2.8v3.4M14 2.8v3.4M2.8 8.2h14.4' stroke='white' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M7 11.1l2 2 4-4' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.epv-weekend-menu__action-button--takeaway .wp-block-button__link {
	background: rgba(107, 131, 111, 0.14);
	border-color: rgba(107, 131, 111, 0.32);
	color: #214732 !important;
}

.epv-weekend-menu__action-button--takeaway .wp-block-button__link::before {
	background-image: url("/captures/per-emportar.svg");
}

.epv-weekend-menu__action-button--takeaway .wp-block-button__link:hover,
.epv-weekend-menu__action-button--takeaway .wp-block-button__link:focus-visible {
	background: rgba(107, 131, 111, 0.22);
	border-color: rgba(107, 131, 111, 0.42);
	color: #214732 !important;
}

.epv-weekend-menu__price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-self: end;
	overflow: hidden;
	width: min(230px, 100%);
	aspect-ratio: 1 / 1;
	padding: 22px;
	gap: 8px;
	border-radius: 999px;
	background: #2f5a3f;
	color: #ffffff;
	text-align: center;
	box-shadow: 0 22px 54px rgba(33, 71, 50, 0.2);
}

.epv-weekend-menu__price-card::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 42%);
	content: "";
	pointer-events: none;
}

.epv-weekend-menu__price-label {
	display: none;
}

.epv-weekend-menu .epv-weekend-menu__price-note,
.epv-weekend-menu__price-card .epv-weekend-menu__price-note,
.entry-content .epv-weekend-menu .epv-weekend-menu__price-note,
.entry-content .epv-weekend-menu__price-card .epv-weekend-menu__price-note {
	position: relative;
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1 !important;
	text-transform: uppercase;
}

.epv-weekend-menu .epv-weekend-menu__price,
.epv-weekend-menu__price-card .epv-weekend-menu__price,
.entry-content .epv-weekend-menu .epv-weekend-menu__price,
.entry-content .epv-weekend-menu__price-card .epv-weekend-menu__price {
	position: relative;
	display: block;
	margin: 0 !important;
	color: #ffffff !important;
	font-family: "Montserrat", sans-serif !important;
	font-size: 54px !important;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.84;
}

.epv-weekend-menu__menu-row {
	background:
		linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
		repeating-linear-gradient(90deg, rgba(33, 71, 50, 0.035) 0 1px, transparent 1px 34px);
}

.epv-weekend-menu__grid {
	display: grid;
	width: min(920px, 100%);
	margin-right: auto;
	margin-left: auto;
	padding: clamp(42px, 5vw, 70px) clamp(24px, 5vw, 72px);
	border: 0;
	background: transparent;
	box-shadow: none;
	gap: 0;
}

.epv-weekend-menu__grid--with-image {
	width: min(1120px, 100%);
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: start;
}

.epv-weekend-menu__grid--feature-sections {
	width: min(1240px, 100%);
	padding-right: clamp(24px, 4vw, 32px);
	padding-left: clamp(24px, 4vw, 32px);
}

.epv-weekend-menu__featured-image {
	align-self: start;
}

.epv-weekend-menu__section {
	position: relative;
	padding: 0 0 clamp(34px, 4vw, 48px);
	border: 0;
	background: transparent;
	text-align: center;
	box-shadow: none;
}

.epv-weekend-menu__section--feature {
	padding-bottom: clamp(52px, 5vw, 72px);
	text-align: left;
}

.epv-weekend-menu__section--feature + .epv-weekend-menu__section--feature::before {
	left: 0;
	width: 100%;
	transform: none;
}

.epv-weekend-menu__section-feature {
	display: grid;
	grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(34px, 4vw, 76px);
	align-items: center;
}

.epv-weekend-menu__section-feature--reverse {
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.epv-weekend-menu__section-feature--reverse .epv-weekend-menu__section-image {
	order: 2;
}

.epv-weekend-menu__section-image {
	width: 100%;
	max-width: 100%;
}

.epv-weekend-menu__section-copy {
	display: grid;
	align-content: center;
	padding-top: 0;
	gap: 20px;
}

.epv-weekend-menu__section--feature .epv-weekend-menu__section-title {
	margin-bottom: 0 !important;
	text-align: left;
}

.epv-weekend-menu__section-price {
	display: inline-grid;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #214732;
	justify-self: start;
}

.epv-weekend-menu__section-price-value {
	margin: 0 !important;
	color: #214732 !important;
	font-family: "Montserrat", sans-serif !important;
	font-size: clamp(22px, 2.2vw, 30px) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.01em;
}

.epv-weekend-menu__section-price-note {
	margin: 0 !important;
	color: #51674e !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.epv-weekend-menu__section--feature .epv-weekend-menu__dish-list {
	margin: 0 !important;
}

.epv-weekend-menu__section--feature .epv-weekend-menu__dish-list li {
	max-width: none;
	margin: 0;
	padding: 7px 0;
	text-align: left;
}

.epv-weekend-menu__section + .epv-weekend-menu__section {
	padding-top: clamp(30px, 4vw, 44px);
}

.epv-weekend-menu__section + .epv-weekend-menu__section::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(420px, 76%);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(33, 71, 50, 0.34), transparent);
	content: "";
	transform: translateX(-50%);
}

.epv-weekend-menu__section:last-child {
	padding-bottom: 0;
}

.epv-weekend-menu__section-title {
	display: block;
	margin-top: 0 !important;
	margin-bottom: 18px !important;
	padding-bottom: 0;
	border-bottom: 0;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	font-size: clamp(30px, 3vw, 42px) !important;
	letter-spacing: 0.01em;
	line-height: 0.92 !important;
	text-align: center;
}

.epv-weekend-menu__dish-list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.epv-weekend-menu__dish-list li {
	max-width: 680px;
	margin: 0 auto;
	padding: 5px 0;
	border-bottom: 0;
	color: #25322a;
	font-size: 16px;
	line-height: 1.42;
	text-align: center;
}

.epv-weekend-menu__dish-list li:last-child {
	border-bottom: 0;
}

.epv-weekend-menu__reserve-buttons {
	display: flex;
	width: 100%;
	margin-top: 60px;
	justify-content: center;
}

.epv-weekend-menu__info-row {
	background: #f4efe7;
}

.epv-weekend-menu__info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 22px;
}

.epv-weekend-menu__info-grid > .epv-weekend-menu__info-card {
	margin: 0 !important;
}

.epv-weekend-menu__info-grid > .epv-weekend-menu__info-card:only-child {
	grid-column: 1 / -1;
}

.epv-weekend-menu__info-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: clamp(28px, 3.3vw, 42px);
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.06);
}

.epv-weekend-menu__info-card:not(.epv-weekend-menu__info-card--takeaway) {
	position: relative;
	overflow: hidden;
	padding-top: clamp(72px, 6.8vw, 92px);
}

.epv-weekend-menu__info-card:not(.epv-weekend-menu__info-card--takeaway)::before {
	position: absolute;
	top: 26px;
	right: clamp(28px, 3.3vw, 42px);
	width: clamp(54px, 5vw, 74px);
	height: clamp(56px, 5.2vw, 76px);
	background-image: url("/captures/info.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	pointer-events: none;
}

.epv-weekend-menu__info-card--takeaway {
	position: relative;
	overflow: hidden;
	padding-right: clamp(28px, 3.3vw, 42px);
	padding-top: clamp(72px, 6.8vw, 92px);
	border: 0;
	background: #29523d;
	color: #ffffff;
}

.epv-weekend-menu__info-card--takeaway::before {
	position: absolute;
	top: 26px;
	right: clamp(28px, 3.3vw, 42px);
	width: clamp(54px, 5vw, 74px);
	height: clamp(56px, 5.2vw, 76px);
	background-image: url("/captures/per-emportar2.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	pointer-events: none;
}

.epv-weekend-menu__info-title {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	font-size: clamp(32px, 3vw, 44px) !important;
	line-height: 0.95 !important;
}

.epv-weekend-menu__info-card--takeaway .epv-weekend-menu__info-title,
.epv-weekend-menu__info-card--takeaway p {
	color: #ffffff !important;
}

.epv-weekend-menu__notice-list {
	margin: 18px 0 0 !important;
	padding-left: 20px !important;
}

.epv-menu-takeaway__body {
	margin-top: 18px;
}

.epv-menu-takeaway__copy--es {
	margin-top: 12px;
}

.epv-menu-takeaway__body > :first-child {
	margin-top: 0 !important;
}

.epv-weekend-menu__notice-list li {
	margin-bottom: 8px;
	color: #25322a;
	font-size: 16px;
	line-height: 1.6;
}

.epv-weekend-menu__takeaway-text {
	max-width: 520px !important;
	margin-top: 10px !important;
	margin-bottom: 26px !important;
	font-size: 18px !important;
	line-height: 1.55 !important;
}

.epv-weekend-menu__takeaway-text--secondary {
	margin-top: -6px !important;
	margin-bottom: 26px !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
}

.epv-weekend-menu__takeaway-price {
	font-weight: 700;
}

.epv-weekend-menu__grid--rich {
	width: min(1120px, 100%);
	padding: clamp(38px, 4vw, 56px) clamp(20px, 4vw, 48px);
}

.epv-menu-body--rich {
	width: 100%;
}

.epv-carta {
	display: grid;
	gap: 40px;
	color: #25322a;
}

.epv-carta__legend {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 22px;
	border-top: 1px solid rgba(33, 71, 50, 0.2);
	border-bottom: 1px solid rgba(33, 71, 50, 0.2);
	background: rgba(244, 239, 231, 0.7);
}

.epv-carta__legend-copy {
	display: grid;
	gap: 6px;
}

.epv-carta__legend-label {
	margin: 0;
	color: #51674e;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.epv-carta__legend-note {
	margin: 0;
	color: #51674e;
	font-size: 14px;
	line-height: 1.5;
}

.epv-carta__legend-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 18px;
}

.epv-carta__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #214732;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.epv-carta__section {
	display: grid;
	gap: 18px;
}

.epv-carta__section + .epv-carta__section {
	padding-top: 36px;
	border-top: 1px solid rgba(33, 71, 50, 0.12);
}

.epv-carta__heading {
	margin: 0 !important;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: clamp(28px, 2.8vw, 40px) !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em;
	line-height: 0.94 !important;
	text-align: left;
}

.epv-carta__table {
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.06);
}

.epv-carta__head,
.epv-carta__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 90px 90px 84px;
	gap: 16px;
	align-items: center;
	padding: 16px 20px;
}

.epv-carta__head {
	background: #f4efe7;
	color: #51674e;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.epv-carta__head > span:first-child {
	text-align: left;
}

.epv-carta__head > span:not(:first-child) {
	text-align: right;
}

.epv-carta__row + .epv-carta__row {
	border-top: 1px solid rgba(33, 71, 50, 0.1);
}

.epv-carta__dish {
	color: #25322a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
}

.epv-carta__price {
	color: #214732;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: right;
	white-space: nowrap;
}

.epv-carta__price--empty {
	color: rgba(33, 71, 50, 0.28);
	font-weight: 500;
}

.epv-carta__flags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.epv-carta__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(33, 71, 50, 0.2);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(32, 43, 35, 0.05);
	position: relative;
}

.epv-carta__badge::before {
	display: block;
	width: 18px;
	height: 18px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.epv-carta__badge::after {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 12px);
	padding: 7px 10px;
	border-radius: 999px;
	background: #214732;
	box-shadow: 0 10px 24px rgba(32, 43, 35, 0.18);
	color: #ffffff;
	content: attr(aria-label);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	text-transform: uppercase;
	transform: translate(-50%, 6px);
	transition: opacity 180ms ease, transform 180ms ease;
	white-space: nowrap;
	z-index: 2;
}

.epv-carta__badge:hover::after {
	opacity: 1;
	transform: translate(-50%, 0);
}

.epv-carta__badge--gf::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4v16M8.6 7.4c1.8 1.1 2.7 2.7 2.7 4.6 0 1.9-.9 3.4-2.7 4.6M15.4 7.4c-1.8 1.1-2.7 2.7-2.7 4.6 0 1.9.9 3.4 2.7 4.6M6.1 9.2c1.1.7 1.7 1.6 1.7 2.8 0 1.2-.6 2.1-1.7 2.8M17.9 9.2c-1.1.7-1.7 1.6-1.7 2.8 0 1.2.6 2.1 1.7 2.8' stroke='%23214732' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M5 19 19 5' stroke='%236b836f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.epv-carta__badge--veg::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.3 4.7c-5.9.2-9.8 2.2-11.8 5.8-1.5 2.8-1.3 5.7-.7 8.8 3.1.6 6 .8 8.8-.7 3.6-2 5.6-5.9 5.8-11.8-.7-.2-1.4-.2-2.1-.2Z' stroke='%23214732' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M8.2 15.8c2.1-2.6 4.8-4.8 8.2-6.6' stroke='%236b836f' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.epv-carta__logos {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.epv-carta__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	padding: 18px 16px;
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.05);
}

.epv-carta__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 50px;
}

.epv-carta__logo--square img {
	max-height: 72px;
}

@media (max-width: 921px) {
	.epv-weekend-menu__hero-inner,
	.epv-weekend-menu__info-grid {
		grid-template-columns: 1fr;
	}

	.epv-weekend-menu__hero-inner {
		max-width: 620px;
		gap: 0;
	}

	.epv-weekend-menu__intro,
	.epv-weekend-menu__price-card {
		text-align: center;
	}

	.epv-weekend-menu__intro {
		position: relative;
		padding: 34px clamp(22px, 5vw, 34px) 92px;
		border: 1px solid rgba(33, 71, 50, 0.12);
		border-radius: 30px;
		background: rgba(255, 255, 255, 0.84);
		box-shadow: 0 18px 44px rgba(32, 43, 35, 0.08);
	}

	.epv-weekend-menu__season {
		margin-bottom: 20px;
	}

	.epv-weekend-menu__intro .epv-page-buttons {
		justify-content: center;
		gap: 12px;
	}

	.epv-weekend-menu__buttons--related {
		margin-bottom: 12px;
	}

	.epv-weekend-menu__buttons--related,
	.epv-weekend-menu__buttons--actions {
		display: grid !important;
		width: min(100%, 420px);
		margin-right: auto;
		margin-left: auto;
	}

	.epv-weekend-menu__buttons--related .wp-block-button,
	.epv-weekend-menu__buttons--related .epv-page-button,
	.epv-weekend-menu__buttons--actions .wp-block-button,
	.epv-weekend-menu__buttons--actions .epv-page-button {
		width: 100% !important;
	}

	.epv-weekend-menu__buttons--related .wp-block-button__link,
	.epv-weekend-menu__buttons--actions .wp-block-button__link {
		display: flex;
		width: 100%;
		justify-content: center;
		white-space: normal;
		text-align: center;
		line-height: 1.35;
	}

	.epv-weekend-menu__price-card {
		z-index: 1;
		justify-self: center;
		width: min(188px, 100%);
		margin-top: -56px;
		padding: 18px;
		border: 6px solid #f4efe7;
	}

	.epv-weekend-menu__lead {
		margin-right: auto;
		margin-left: auto;
	}

	.epv-weekend-menu__grid {
		grid-template-columns: 1fr;
	}

	.epv-weekend-menu__grid--with-image {
		gap: 28px;
	}

	.epv-weekend-menu__grid--feature-sections {
		width: min(1120px, 100%);
	}

	.epv-weekend-menu__section-feature,
	.epv-weekend-menu__section-feature--reverse {
		grid-template-columns: 1fr;
	}

	.epv-weekend-menu__section-feature--reverse .epv-weekend-menu__section-image {
		order: 0;
	}

	.epv-weekend-menu__section--feature .epv-weekend-menu__section-title,
	.epv-weekend-menu__section--feature .epv-weekend-menu__dish-list li {
		text-align: center;
	}

	.epv-weekend-menu__section-price {
		justify-self: center;
	}

	.epv-weekend-menu__section-copy {
		align-content: start;
		padding-top: 0;
	}

	.epv-weekend-menu__grid--rich {
		padding: 34px 24px;
	}

	.epv-carta__legend {
		flex-direction: column;
		align-items: flex-start;
	}

	.epv-carta__legend-copy {
		width: 100%;
	}

	.epv-carta__legend-badges {
		justify-content: flex-start;
	}

	.epv-carta__head,
	.epv-carta__row {
		grid-template-columns: minmax(0, 1fr) 74px 74px 78px;
		gap: 12px;
		padding: 15px 16px;
	}

	.epv-carta__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.epv-menu-family__hero-copy {
		max-width: 100%;
		text-align: center;
	}

	.epv-menu-family__hero-inner--with-media {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.epv-menu-family__hero-media {
		max-width: 560px;
		width: 100%;
		margin: 0 auto;
	}

	.epv-menu-family__hero-intro {
		margin-right: auto;
		margin-left: auto;
	}

	.epv-menu-family-list__item {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.epv-menu-family-list__meta {
		justify-items: start;
	}
}

@media (max-width: 544px) {
	.epv-weekend-menu__section,
	.epv-weekend-menu__info-card {
		padding: 24px 20px;
	}

	.epv-weekend-menu__info-card:not(.epv-weekend-menu__info-card--takeaway) {
		padding-top: 86px;
	}

	.epv-weekend-menu__info-card:not(.epv-weekend-menu__info-card--takeaway)::before {
		top: 20px;
		right: 20px;
		width: 56px;
		height: 58px;
	}

	.epv-weekend-menu__info-card--takeaway {
		padding-right: 20px;
		padding-top: 86px;
	}

	.epv-weekend-menu__info-card--takeaway::before {
		top: 20px;
		right: 20px;
		width: 56px;
		height: 58px;
	}

	.epv-weekend-menu__intro {
		padding: 28px 18px 82px;
		border-radius: 24px;
	}

	.epv-weekend-menu__season {
		gap: 8px;
		padding: 9px 12px;
		font-size: 13px !important;
		letter-spacing: 0.15em;
	}

	.epv-weekend-menu__season::before {
		width: 14px;
		height: 14px;
		flex-basis: 14px;
	}

	.epv-weekend-menu__intro .epv-page-buttons {
		display: grid;
		justify-items: center;
	}

	.epv-weekend-menu__buttons--actions {
		width: 100%;
	}

	.epv-weekend-menu__intro .epv-page-button {
		width: min(100%, 290px);
	}

	.epv-weekend-menu__buttons--related,
	.epv-weekend-menu__buttons--actions {
		width: 100%;
		max-width: 290px;
	}

	.epv-weekend-menu__intro .epv-page-button .wp-block-button__link {
		display: block;
		width: 100%;
	}

	.epv-weekend-menu__buttons--actions .epv-page-button .wp-block-button__link,
	.epv-weekend-menu__buttons--related .epv-page-button .wp-block-button__link {
		display: flex;
		width: 100%;
	}

	.epv-weekend-menu__price-card {
		width: 156px;
		margin-top: -48px;
		padding: 16px;
	}

	.epv-weekend-menu__grid {
		padding: 34px 20px;
	}

	.epv-weekend-menu__grid--rich {
		padding: 30px 18px;
	}

	.epv-weekend-menu .epv-weekend-menu__price,
	.epv-weekend-menu__price-card .epv-weekend-menu__price,
	.entry-content .epv-weekend-menu .epv-weekend-menu__price,
	.entry-content .epv-weekend-menu__price-card .epv-weekend-menu__price {
		font-size: 38px !important;
	}

	.epv-weekend-menu .epv-weekend-menu__price-note,
	.epv-weekend-menu__price-card .epv-weekend-menu__price-note,
	.entry-content .epv-weekend-menu .epv-weekend-menu__price-note,
	.entry-content .epv-weekend-menu__price-card .epv-weekend-menu__price-note {
		font-size: 11px !important;
	}

	.epv-weekend-menu__section-title {
		font-size: 30px !important;
	}

	.epv-weekend-menu__dish-list li {
		font-size: 16px;
	}

	.epv-carta {
		gap: 30px;
	}

	.epv-carta__legend {
		padding: 16px;
	}

	.epv-carta__head {
		display: none;
	}

	.epv-carta__table {
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.epv-carta__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"dish dish"
			"half full"
			"flags flags";
		padding: 16px 0;
	}

	.epv-carta__dish {
		grid-area: dish;
	}

	.epv-carta__price {
		display: flex;
		flex-direction: column;
		gap: 3px;
		font-size: 15px;
	}

	.epv-carta__price::before {
		color: #51674e;
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.16em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.epv-carta__price--half {
		grid-area: half;
		text-align: left;
	}

	.epv-carta__price--half::before {
		content: "1/2 ració";
	}

	.epv-carta__price--full {
		grid-area: full;
		text-align: right;
	}

	.epv-carta__price--full::before {
		content: "Ració";
	}

	.epv-carta__flags {
		grid-area: flags;
		justify-content: flex-start;
		padding-top: 4px;
	}

	.epv-carta__logos {
		gap: 14px;
	}

	.epv-carta__logo {
		min-height: 72px;
		padding: 14px 12px;
	}

	.epv-carta__logo img {
		max-height: 42px;
	}

	.epv-carta__logo--square img {
		max-height: 60px;
	}

	.epv-weekend-menu__lead,
	.epv-weekend-menu__takeaway-text {
		font-size: 16px !important;
	}

	.epv-weekend-menu__takeaway-text--secondary {
		font-size: 15px !important;
	}

	.epv-menu-family__hero-intro {
		font-size: 16px !important;
	}
}

.epv-page-layout .epv-page-buttons,
.epv-palau-proposal .epv-page-buttons {
	margin-top: 28px;
}

.epv-menu-family__hero {
	background: linear-gradient(135deg, #ffffff 0%, #f4efe7 100%);
}

.epv-menu-family__hero-inner {
	display: block;
}

.epv-menu-family__hero-inner--with-media {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 44px;
	align-items: center;
}

.epv-menu-family__hero-copy {
	max-width: 860px;
}

.epv-menu-family__hero-media {
	margin: 0;
}

.epv-menu-family__hero-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 58px rgba(32, 43, 35, 0.14);
}

.epv-menu-family__hero-intro {
	max-width: 760px;
	margin: 0;
	color: #25322a !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
}

.epv-menu-family .epv-page-buttons {
	margin-top: 30px;
}

.epv-menu-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.epv-menu-family-list {
	display: grid;
	gap: 18px;
}

.epv-menu-family-list__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 26px;
	align-items: center;
	padding: 28px 30px;
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.06);
}

.epv-menu-family-list__copy {
	min-width: 0;
}

.epv-menu-family-list__title {
	margin: 0 0 10px !important;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: 34px !important;
	font-weight: 400 !important;
	line-height: 0.98 !important;
	letter-spacing: 0.02em !important;
}

.epv-menu-family-list__title a {
	color: inherit;
	text-decoration: none;
}

.epv-menu-family-list__title a:hover,
.epv-menu-family-list__title a:focus-visible {
	color: #51674e;
}

.epv-menu-family-list__summary {
	max-width: 760px;
	margin: 0 !important;
	color: #25322a !important;
	font-size: 15px !important;
	line-height: 1.7 !important;
}

.epv-menu-family-list__meta {
	display: grid;
	justify-items: end;
	gap: 14px;
}

.epv-menu-family-list__price {
	margin: 0 !important;
	color: #51674e !important;
	font-size: 14px !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.epv-menu-family-list__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid #214732;
	background: #214732;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.epv-menu-family-list__link:hover,
.epv-menu-family-list__link:focus-visible {
	transform: translateY(-1px);
	border-color: #51674e;
	background: #51674e;
	color: #ffffff;
}

.epv-menu-card {
	height: 100%;
}

.epv-menu-card__link {
	display: block;
	height: 100%;
	padding: 24px 24px 22px;
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.06);
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.epv-menu-card__link:hover,
.epv-menu-card__link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(33, 71, 50, 0.26);
	box-shadow: 0 20px 44px rgba(32, 43, 35, 0.12);
}

.epv-menu-card__body {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.epv-menu-card__title {
	margin: 6px 0 10px !important;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
	font-size: 28px !important;
	line-height: 0.98 !important;
}

.epv-menu-card__summary {
	margin: 0 0 14px !important;
	color: #25322a !important;
	font-size: 15px !important;
	line-height: 1.65 !important;
}

.epv-menu-card__price {
	margin: auto 0 0 !important;
	color: #51674e !important;
	font-size: 14px !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.epv-menu-related .epv-page-heading {
	margin-bottom: 22px !important;
}

.epv-maridatges__shell {
	gap: clamp(30px, 4vw, 52px);
	max-width: 980px;
}

.epv-maridatges__intro {
	display: grid;
	justify-items: center;
}

.epv-maridatges__intro-text {
	max-width: 860px !important;
	margin: 0 !important;
	color: #25322a !important;
	font-size: clamp(18px, 1.75vw, 22px) !important;
	line-height: 1.72 !important;
	text-align: center;
}

.epv-maridatges__menu {
	display: grid;
	gap: 18px;
	width: min(860px, 100%);
	margin: 0 auto;
}

.epv-maridatges__item {
	border: 1px solid rgba(33, 71, 50, 0.12);
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(32, 43, 35, 0.06);
}

.epv-maridatges__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: start;
	padding: clamp(22px, 2.6vw, 30px);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(244, 239, 231, 0.36), rgba(255, 255, 255, 0) 42%),
		#ffffff;
}

.epv-maridatges__item--final {
	background:
		linear-gradient(180deg, rgba(81, 103, 78, 0.08), rgba(255, 255, 255, 0) 45%),
		#ffffff;
}

.epv-maridatges__item-meta {
	display: grid;
	gap: 10px;
	justify-items: center;
	text-align: center;
}

.epv-maridatges__step {
	margin: 0 !important;
	color: #51674e !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.16em;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.epv-maridatges__dish {
	margin: 0 !important;
	color: #214732 !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: clamp(28px, 2.8vw, 40px) !important;
	font-weight: 400 !important;
	letter-spacing: 0.01em !important;
	line-height: 0.95 !important;
	text-transform: none !important;
}

.epv-maridatges__wine {
	margin: 0 !important;
	color: #51674e !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	line-height: 1.45 !important;
	text-transform: uppercase;
}

.epv-maridatges__description {
	margin: 0 !important;
	padding-top: 6px;
	color: #25322a !important;
	font-size: 16px !important;
	line-height: 1.65 !important;
	text-align: center;
	max-width: 620px;
	justify-self: center;
}

.epv-maridatges__item--final .epv-maridatges__wine {
	color: #214732 !important;
	letter-spacing: 0.06em;
}

@media (max-width: 921px) {
	.epv-maridatges__item {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 544px) {
	.epv-maridatges__intro-text {
		font-size: 16px !important;
	}

	.epv-maridatges__description {
		font-size: 15px !important;
		max-width: 100%;
	}
}

.epv-menu-takeaway__body p {
	max-width: 520px !important;
}

.epv-page-layout .epv-weekend-menu__reserve-buttons {
	margin-top: 60px;
}

.epv-page-image,
.epv-palau-proposal__image {
	margin: 0;
}

.epv-page-image img,
.epv-palau-proposal__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 0 !important;
	box-shadow: 0 26px 60px rgba(32, 43, 35, 0.14);
}

.epv-page-quote,
.epv-palau-proposal__quote {
	max-width: 690px;
	margin: 0 0 24px;
	padding-left: 28px;
	border-left: 4px solid #6b836f;
	color: #25322a;
}

.epv-page-quote p,
.epv-palau-proposal__quote p {
	max-width: none !important;
	margin-bottom: 12px;
	font-size: clamp(22px, 2.4vw, 34px) !important;
	line-height: 1.18 !important;
}

.epv-page-quote cite,
.epv-palau-proposal__quote cite {
	color: #63775d;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.epv-page-signature,
.epv-palau-proposal__signature {
	margin-top: 24px;
}

.epv-page-quote-band {
	--epv-quote-band-bg: url("https://elpalauvell.com/wp-content/uploads/2023/06/historia_0000_2T0A3630.jpg");
	position: relative;
	display: flex;
	align-items: center;
	min-height: 660px;
	background-image: linear-gradient(120deg, rgba(13, 26, 17, 0.86), rgba(47, 90, 63, 0.78)), var(--epv-quote-band-bg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	color: #ffffff;
	text-align: center;
}

.epv-page-quote-band__inner {
	width: min(1480px, calc(100% - 48px));
	max-width: 1480px;
	margin-right: auto;
	margin-left: auto;
}

.entry-content .epv-page-quote-band .epv-page-quote-band__script,
.entry-content .epv-palau-proposal .epv-page-quote-band .epv-page-quote-band__script {
	max-width: 1420px !important;
	margin: 0 auto 38px !important;
	color: #ffffff !important;
	font-family: "Ms Madi", cursive !important;
	font-size: 50px !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	line-height: 0.92 !important;
	text-shadow: 0 5px 18px rgba(0, 0, 0, 0.74), 0 1px 0 rgba(0, 0, 0, 0.42);
	text-wrap: balance;
	text-transform: none !important;
}

.epv-page-quote-band__portrait {
	margin: 0 auto 28px !important;
}

.epv-page-quote-band__portrait img {
	display: block;
	width: 170px !important;
	height: 170px !important;
	margin-right: auto;
	margin-left: auto;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 999px !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.epv-page-quote-band__cite {
	margin: 0 auto 18px !important;
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: 13px !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.4 !important;
	text-transform: uppercase;
}

.epv-page-quote-band__text {
	max-width: 880px !important;
	margin: 0 auto !important;
	color: rgba(255, 255, 255, 0.92) !important;
}

.epv-page-cta-band,
.epv-palau-proposal__cta {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw) !important;
	margin-bottom: 0 !important;
	margin-left: calc(50% - 50vw) !important;
	padding: 56px 24px;
	background: linear-gradient(135deg, #6b836f 0%, #4f7258 48%, #2f5a3f 100%);
	color: #ffffff;
}

.epv-page-cta-inner,
.epv-palau-proposal__cta-inner {
	width: min(1290px, calc(100% - 88px));
	max-width: 1290px;
	padding-right: 24px;
	padding-left: 24px;
	box-sizing: border-box;
	margin-right: auto;
	margin-left: auto;
}

.epv-page-cta-band .epv-page-heading--center,
.epv-palau-proposal__cta .epv-page-heading--center {
	max-width: 820px;
	margin: 10px auto 14px;
	color: #ffffff !important;
}

.epv-page-cta-band .epv-page-buttons--cta,
.epv-palau-proposal__cta .epv-page-buttons--cta {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
}

.page-id-3214 .epv-page-cta-band .epv-page-buttons--cta {
	display: flex;
	width: fit-content;
	max-width: 100%;
	justify-content: center !important;
	margin-right: auto !important;
	margin-left: auto !important;
	text-align: center;
}

.epv-page-heading-script,
.epv-palau-proposal__cta .epv-page-heading-script {
	display: inline-block;
	font-family: "Ms Madi", cursive;
	font-size: 1.16em;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: none;
}

.epv-page-cta-band .epv-page-heading-script,
.epv-palau-proposal__cta .epv-page-heading-script {
	color: #ffffff !important;
}

.epv-page-cta-band p:not(.epv-page-eyebrow),
.epv-palau-proposal__cta p:not(.epv-palau-proposal__eyebrow) {
	max-width: 1180px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: #ffffff;
}

.epv-page-eyebrow--light,
.epv-palau-proposal__eyebrow--light {
	color: rgba(255, 255, 255, 0.82);
}

.page-id-3137 .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 !important;
}

.page-id-3137 #content,
.page-id-3137 #primary,
.page-id-3137 .site-main,
.page-id-3137 article,
.page-id-3137 .entry-content {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.page-id-3137 #content {
	padding: 0 !important;
}

.page-id-3137.ast-separate-container .ast-article-single {
	padding: 0 !important;
	background: transparent;
}

.page-id-3081,
.page-id-3081 body,
.page-id-3081 #content,
.page-id-3081 .site-content,
.page-id-3081 .site-content > .ast-container {
	background: #ffffff !important;
}

.page-id-3081 .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 !important;
}

.page-id-3081 #primary,
.page-id-3081 .site-main,
.page-id-3081 article,
.page-id-3081 .entry-content {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.page-id-3081.ast-separate-container .ast-article-single {
	padding: 0 !important;
	background: transparent;
}

body.single-epv_menu .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 !important;
}

body.tax-epv_menu_family .site-content > .ast-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0 !important;
}

body.single-epv_menu #content,
body.single-epv_menu #primary,
body.single-epv_menu .site-main,
body.single-epv_menu .epv-menu-single {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

body.single-epv_menu #content {
	padding: 0 !important;
}

body.tax-epv_menu_family #content,
body.tax-epv_menu_family #primary,
body.tax-epv_menu_family .site-main,
body.tax-epv_menu_family .epv-menu-family {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

body.tax-epv_menu_family #content {
	padding: 0 !important;
}

body.tax-epv_menu_family .epv-page-layout.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: 0 !important;
}

.page-id-3137 .entry-content > .epv-palau-proposal.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: 0 !important;
}

.page-id-3137 .epv-palau-proposal.is-layout-flow > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.page-id-3137 .epv-palau-proposal > .epv-palau-proposal__row.alignfull {
	width: 100%;
	max-width: none;
	margin: 0 !important;
}

.page-id-3137 .epv-page-quote-band .epv-page-quote-band__script,
.page-id-3137 .epv-palau-proposal__cta .epv-page-heading-script {
	font-size: clamp(28px, 2.9vw, 44px) !important;
}

.entry-content > .epv-page-layout.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: 0 !important;
}

.epv-page-layout.is-layout-flow > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.epv-page-layout > .epv-page-row.alignfull {
	width: 100%;
	max-width: none;
	margin: 0 !important;
}

@media (min-width: 922px) {
	body.tax-epv_menu_family #primary {
		max-width: none;
	}

	.page-id-3137 #primary {
		max-width: none;
	}

	.epv-page-row,
	.page-id-3137 .epv-palau-proposal__row {
		padding-right: 0;
		padding-left: 0;
	}

	.page-id-3137.ast-separate-container .ast-article-single {
		padding-right: 0;
		padding-left: 0;
		background: transparent;
	}

	.page-id-3137 .entry-content > .epv-palau-proposal.alignfull {
		width: 100vw;
		max-width: 100vw;
		margin-right: calc(50% - 50vw) !important;
		margin-left: calc(50% - 50vw) !important;
	}

	.page-id-3137 .epv-palau-proposal__inner {
		width: min(1290px, 100vw);
		max-width: 1290px;
	}

		.epv-page-layout .epv-page-inner {
			width: min(1290px, 100vw);
			max-width: 1290px;
		}
	}

@media (max-width: 921px) {
	.epv-menu-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.epv-menu-family-list__item {
		padding: 24px 24px;
	}

		.page-id-3061 .epv-page-title {
			font-size: 60px !important;
		}

	.page-id-3061 .epv-page-heading {
		font-size: 40px !important;
	}

	.epv-page-row,
	.epv-palau-proposal__row {
		padding: 66px 22px;
	}

	.epv-page-split,
	.epv-palau-proposal__split {
		flex-direction: column;
		gap: 34px;
	}

	.epv-page-quote-band {
		min-height: auto;
		background-attachment: scroll;
	}
}

@media (max-width: 544px) {
	.epv-menu-cards {
		grid-template-columns: 1fr;
	}

	.page-id-3214 .epv-page-cta-band {
		padding-right: 16px;
		padding-left: 16px;
	}

	.page-id-3214 .epv-page-cta-inner {
		width: 100%;
		padding-right: 8px;
		padding-left: 8px;
	}

	.page-id-3214 .epv-page-cta-band .epv-page-heading--center,
	.page-id-3214 .epv-page-cta-band p.has-text-align-center {
		max-width: none;
	}

	.page-id-3214 .epv-page-cta-band .epv-page-buttons--cta {
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}

	.page-id-3214 .epv-page-cta-band .epv-page-buttons--cta .wp-block-button {
		width: 100%;
		max-width: 290px;
		margin-right: auto;
		margin-left: auto;
	}

	.page-id-3214 .epv-page-cta-band .epv-page-buttons--cta .wp-block-button__link {
		width: 100%;
	}

	.epv-menu-family-list__title {
		font-size: 30px !important;
	}

	.epv-menu-family-list__link {
		width: 100%;
	}

	.page-id-3061 .epv-page-title {
		font-size: 46px !important;
	}

	.page-id-3061 .epv-page-heading {
		font-size: 32px !important;
	}

	.epv-page-row,
	.epv-palau-proposal__row {
		padding: 52px 20px;
	}

	.epv-page-split--reverse,
	.epv-palau-proposal__split--reverse {
		flex-direction: column-reverse;
	}

	.epv-page-image img,
	.epv-palau-proposal__image img {
		box-shadow: 0 18px 42px rgba(32, 43, 35, 0.12);
	}

	.epv-page-quote,
	.epv-palau-proposal__quote {
		padding-left: 20px;
	}

	.entry-content .epv-page-quote-band .epv-page-quote-band__script,
	.entry-content .epv-palau-proposal .epv-page-quote-band .epv-page-quote-band__script {
		font-size: 50px !important;
		line-height: 0.94 !important;
	}

	.epv-page-quote-band__portrait img {
		width: 128px !important;
		height: 128px !important;
	}
}

.epv-styleguide {
	background: #f5f1ea;
	color: #214732;
}

.epv-styleguide__hero {
	padding: 72px 24px 28px;
}

.epv-styleguide__hero-inner,
.epv-styleguide__panel,
.epv-styleguide__note {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.epv-styleguide__panel,
.epv-styleguide__note {
	background: #ffffff;
	border: 1px solid rgba(33, 71, 50, 0.08);
	border-radius: 26px;
	padding: 34px 34px 30px;
	box-shadow: 0 20px 40px rgba(33, 71, 50, 0.06);
}

.epv-styleguide__section {
	padding: 0 24px 24px;
}

.epv-styleguide__section--note {
	padding-bottom: 72px;
}

.epv-styleguide__eyebrow,
.epv-styleguide__section-id {
	font-size: 13px !important;
	line-height: 1.4 !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b836f;
}

.epv-styleguide__hero .wp-block-heading {
	margin-bottom: 16px;
}

.epv-styleguide__heading-sample--h1 {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: 78px !important;
	font-weight: 400 !important;
	line-height: 0.92 !important;
	letter-spacing: 0.02em !important;
	text-transform: none !important;
}

.epv-styleguide__heading-sample--h2 {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
	line-height: 1.02 !important;
	text-transform: none !important;
}

.epv-styleguide__heading-sample--h2 {
	font-size: 52px !important;
}

.epv-styleguide__heading-sample--h3 {
	font-family: "Ms Madi", cursive !important;
	font-size: 52px !important;
	font-weight: 400 !important;
	line-height: 0.92 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.epv-styleguide__color-card {
	height: 100%;
	padding: 14px;
	background: #fbfaf7;
	border: 1px solid rgba(33, 71, 50, 0.08);
	border-radius: 18px;
}

.epv-styleguide__token-card {
	height: 100%;
	padding: 18px;
	background: #fbfaf7;
	border: 1px solid rgba(33, 71, 50, 0.08);
	border-radius: 18px;
}

.epv-styleguide__token-card code {
	display: inline-block;
	margin-bottom: 10px;
	color: #214732;
	font-size: 13px;
}

.epv-styleguide__layout-preview {
	margin-top: 28px;
	overflow: hidden;
	border: 1px solid rgba(33, 71, 50, 0.08);
	border-radius: 18px;
}

.epv-styleguide__layout-preview .epv-page-row {
	padding: 34px 28px;
}

.epv-styleguide__layout-preview .epv-page-inner {
	width: 100%;
	max-width: 100%;
}

.epv-styleguide__swatch {
	min-height: 88px;
	border-radius: 12px;
	border: 1px solid rgba(33, 71, 50, 0.08);
}

.epv-styleguide__color-name {
	margin: 14px 0 4px !important;
	font-weight: 600;
}

.epv-styleguide__color-code {
	margin: 0 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: #6f7e67;
}

.epv-styleguide__heading-meta {
	margin: -8px 0 18px !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	color: #6f7e67;
}

.epv-styleguide__form-demo {
	margin-top: 28px;
}

.epv-styleguide__form-demo p:last-child {
	margin-bottom: 0;
}

.epv-styleguide__note {
	background: #214732;
	color: #ffffff;
}

.epv-styleguide__note p {
	margin-bottom: 0;
}

@media (max-width: 921px) {
	.epv-styleguide__hero {
		padding-top: 56px;
	}

	.epv-styleguide__panel,
	.epv-styleguide__note {
		padding: 28px 24px 24px;
	}

	.epv-styleguide__heading-sample--h1 {
		font-size: 58px !important;
	}

	.epv-styleguide__heading-sample--h2 {
		font-size: 40px !important;
	}

	.epv-styleguide__heading-sample--h3 {
		font-size: 42px !important;
	}
}

@media (max-width: 544px) {
	.epv-styleguide__hero,
	.epv-styleguide__section {
		padding-left: 14px;
		padding-right: 14px;
	}

	.epv-styleguide__hero-inner,
	.epv-styleguide__panel,
	.epv-styleguide__note {
		width: 100%;
	}

	.epv-styleguide__heading-sample--h1 {
		font-size: 44px !important;
	}

	.epv-styleguide__heading-sample--h2 {
		font-size: 34px !important;
	}

	.epv-styleguide__heading-sample--h3 {
		font-size: 34px !important;
	}
}

.epv-spaces,
.epv-space-detail {
	background: #ffffff;
	color: #214732;
	max-width: 100%;
	overflow-x: clip;
	box-sizing: border-box;
}

.entry-content > .wp-block-group.alignfull.epv-spaces,
.entry-content > .wp-block-group.alignfull.epv-space-detail {
	width: auto !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	box-sizing: border-box;
}

.epv-spaces__hero,
.epv-space-detail__hero {
	background: #ffffff;
	padding: 30px 24px 12px;
}

.epv-spaces__hero-inner,
.epv-spaces__section-inner,
.epv-space-detail__hero-inner,
.epv-space-detail__section-inner {
	width: min(1290px, 100%);
	max-width: 1290px;
	margin: 0 auto;
}

.epv-spaces__eyebrow,
.epv-space-detail__eyebrow {
	font-size: 13px !important;
	line-height: 1.4 !important;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b836f;
}

.epv-spaces__hero .wp-block-heading,
.epv-space-detail__hero .wp-block-heading {
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: none;
}

.epv-spaces__hero h1,
.epv-space-detail__hero h1 {
	color: #214732 !important;
	font-size: 68px !important;
	line-height: 0.96 !important;
}

.epv-spaces__hero p,
.epv-space-detail__hero p {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.epv-spaces__section,
.epv-space-detail__section {
	background: #ffffff;
	padding: 0 24px 48px;
}

.epv-spaces__filter-bar {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 18px 0 22px;
	backdrop-filter: blur(14px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.epv-spaces__filter-scroll {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: none;
}

.epv-spaces__filter-scroll::-webkit-scrollbar {
	display: none;
}

.epv-spaces__filter {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 16px;
	border: 1px solid rgba(33, 71, 50, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	color: #214732;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.epv-spaces__filter:hover,
.epv-spaces__filter:focus-visible {
	background: rgba(33, 71, 50, 0.08);
	border-color: rgba(33, 71, 50, 0.28);
	color: #214732;
	transform: translateY(-1px);
}

.epv-spaces__filter.is-active {
	background: #214732;
	border-color: #214732;
	color: #ffffff;
}

.epv-spaces__filter.is-disabled,
.epv-spaces__filter:disabled {
	opacity: 0.45;
	cursor: default;
}

.epv-spaces__filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(33, 71, 50, 0.08);
	font-size: 11px;
	line-height: 1;
}

.epv-spaces__filter.is-active .epv-spaces__filter-count {
	background: rgba(255, 255, 255, 0.16);
}

.epv-spaces__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.epv-space-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(33, 71, 50, 0.08);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 18px 34px rgba(33, 71, 50, 0.06);
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 360ms ease,
		transform 360ms ease,
		box-shadow 220ms ease,
		border-color 220ms ease;
	transition-delay: var(--epv-space-delay, 0ms);
}

.epv-space-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.epv-space-card.is-hidden {
	display: none;
}

.epv-space-card:hover,
.epv-space-card:focus-within {
	border-color: rgba(33, 71, 50, 0.16);
	box-shadow: 0 24px 46px rgba(33, 71, 50, 0.12);
}

.epv-space-card__link {
	color: inherit;
	text-decoration: none;
}

.epv-space-card__media {
	position: relative;
	aspect-ratio: 4 / 4.6;
	overflow: hidden;
}

.epv-space-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 520ms ease;
}

.epv-space-card:hover .epv-space-card__media img,
.epv-space-card:focus-within .epv-space-card__media img {
	transform: scale(1.06);
}

.epv-space-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(20, 39, 28, 0.7) 100%);
	pointer-events: none;
}

.epv-space-card__tags {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	z-index: 1;
}

.epv-space-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(8px);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #214732;
}

.epv-space-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 22px 20px;
	z-index: 1;
}

.epv-space-card__title {
	margin: 0 !important;
	color: #ffffff !important;
	font-family: "Bernard MT Condensed", "Bowlby One SC", "Arial Narrow", "Helvetica Neue", serif !important;
	font-size: 32px !important;
	line-height: 1 !important;
	letter-spacing: 0.02em !important;
}

.epv-space-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: #214732;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.epv-space-card__meta svg,
.epv-space-detail__capacity svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.epv-space-detail__hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}

.epv-space-detail__hero-grid > div:first-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.epv-space-detail__back {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-bottom: 18px;
	color: #466b54;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.epv-space-detail__back:hover,
.epv-space-detail__back:focus-visible {
	color: #214732;
}

.epv-space-detail__capacity {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 4px 0 20px;
	padding: 10px 14px;
	border: 1px solid rgba(33, 71, 50, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 600;
	color: #214732;
	margin-left: auto;
	margin-right: auto;
}

.epv-space-detail__visual {
	position: relative;
	width: 100%;
	max-width: none;
	aspect-ratio: 16 / 7;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(33, 71, 50, 0.12);
}

.epv-space-detail__visual-button {
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.epv-space-detail__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 520ms ease;
}

.epv-space-detail__visual-button:hover img,
.epv-space-detail__visual-button:focus-visible img {
	transform: scale(1.04);
}

.epv-space-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.epv-space-detail__gallery-item {
	position: relative;
	grid-column: auto / span 1;
	grid-row: auto / span 1;
	aspect-ratio: 1 / 1;
	border-radius: 0;
	overflow: hidden;
	border: 0;
	padding: 0;
	background: transparent;
	box-shadow: 0 18px 34px rgba(33, 71, 50, 0.08);
	cursor: pointer;
}

.epv-space-detail__gallery-item.is-featured {
	display: block !important;
	width: 100%;
	max-width: none;
	margin: 0;
	grid-column: auto / span 1;
	grid-row: auto / span 1;
	aspect-ratio: 1 / 1;
	height: auto;
	min-height: 0;
}

.epv-space-detail__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 520ms ease;
}

.epv-space-detail__gallery-item:hover img,
.epv-space-detail__gallery-item:focus-visible img {
	transform: scale(1.04);
}

.epv-space-detail__gallery-item::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(180deg, transparent 0%, rgba(20, 39, 28, 0.65) 100%);
}

.epv-space-detail__gallery-caption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	z-index: 1;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}

.epv-space-detail__description {
	max-width: 760px;
}

.epv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	justify-content: center;
	align-items: center;
	padding: 16px;
	display: none;
}

.epv-lightbox.is-open {
	display: flex;
}

.epv-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(19, 33, 24, 0.82);
	backdrop-filter: blur(8px);
}

.epv-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	max-height: calc(100vh - 32px);
	margin: 0 auto;
	padding: 24px;
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
}

.epv-lightbox__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 4;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(33, 71, 50, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #214732;
	font-size: 28px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.10);
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
	appearance: none;
}

.epv-lightbox__close:hover,
.epv-lightbox__close:focus-visible {
	background: #214732 !important;
	color: #ffffff !important;
	border-color: #214732 !important;
}

.epv-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(33, 71, 50, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #214732;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
	appearance: none;
}

.epv-lightbox__nav span {
	display: block;
	color: currentColor;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-2px);
}

.epv-lightbox__nav:hover,
.epv-lightbox__nav:focus-visible {
	background: rgba(33, 71, 50, 0.10) !important;
	color: #214732 !important;
	border-color: rgba(33, 71, 50, 0.28) !important;
	transform: translateY(-50%) scale(1.04);
}

.epv-lightbox__nav:disabled {
	opacity: 0.45;
	cursor: default;
}

.epv-lightbox__nav svg {
	width: 22px;
	height: 22px;
	display: block;
}

.epv-lightbox__nav svg path {
	stroke: currentColor;
}

.epv-lightbox__nav--prev {
	left: 18px;
}

.epv-lightbox__nav--next {
	right: 18px;
}

.epv-lightbox__image {
	display: block;
	width: auto;
	max-width: min(100%, 1040px);
	height: auto;
	max-height: min(72vh, 760px);
	border-radius: 18px;
}

.epv-lightbox__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.epv-lightbox__status {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #214732;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transform: translate(-50%, -50%);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.epv-lightbox__status::before {
	width: 14px;
	height: 14px;
	border: 2px solid rgba(33, 71, 50, 0.18);
	border-top-color: #214732;
	border-radius: 999px;
	content: "";
	animation: epv-lightbox-spin 0.8s linear infinite;
}

.epv-lightbox:not(.is-loading) .epv-lightbox__status {
	display: none;
}

.epv-lightbox__caption {
	margin: 14px 0 0 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: #466b54;
	text-align: center;
}

.epv-lightbox-open {
	overflow: hidden;
}

@keyframes epv-lightbox-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1100px) {
	.epv-spaces__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.epv-space-detail__hero-grid {
		grid-template-columns: 1fr;
	}

	.epv-space-detail__gallery-item,
	.epv-space-detail__gallery-item.is-featured {
		grid-column: auto / span 1;
		min-height: 0;
	}
}

@media (max-width: 921px) {
	.epv-spaces__hero,
	.epv-space-detail__hero {
		padding-top: 26px;
	}

	.epv-spaces__hero h1,
	.epv-space-detail__hero h1 {
		font-size: 56px !important;
	}

	.epv-space-card__title {
		font-size: 28px !important;
	}
}

@media (max-width: 544px) {
	.epv-spaces__hero,
	.epv-spaces__section,
	.epv-space-detail__hero,
	.epv-space-detail__section {
		padding-left: 14px;
		padding-right: 14px;
	}

	.epv-spaces__hero-inner,
	.epv-spaces__section-inner,
	.epv-space-detail__hero-inner,
	.epv-space-detail__section-inner {
		width: 100%;
	}

	.epv-spaces__hero h1,
	.epv-space-detail__hero h1 {
		font-size: 42px !important;
	}

	.epv-spaces__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.epv-space-card__body {
		padding: 18px;
	}

	.epv-space-card__title {
		font-size: 24px !important;
	}

	.epv-space-detail__gallery {
		grid-template-columns: 1fr;
	}

	.epv-space-detail__gallery-item,
	.epv-space-detail__gallery-item.is-featured {
		grid-column: auto;
		min-height: 0;
	}

	.epv-space-detail__visual {
		width: 100%;
		aspect-ratio: 1 / 1;
		margin-right: auto;
	}

	.epv-lightbox__dialog {
		width: 100%;
		margin: 0 auto;
		padding: 20px 14px 14px;
	}

	.epv-lightbox__nav {
		width: 44px;
		height: 44px;
	}

	.epv-lightbox__nav--prev {
		left: 10px;
	}

	.epv-lightbox__nav--next {
		right: 10px;
	}

	.epv-lightbox__close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.epv-lightbox__media {
		min-height: 220px;
	}

	.epv-lightbox__image {
		max-width: 100%;
		max-height: min(56vh, 460px);
	}
}
