/* =========================================================================
   Hotel Europa Art — design system
   Tutti i colori e i font arrivano dalle variabili --hea-* del pannello Brand.
   ========================================================================= */

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

:root {
	--ease: cubic-bezier(.22, .8, .3, 1);
	--ease-wipe: cubic-bezier(.2, .7, .25, 1);
	--radius: 4px;
	--container: 1240px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section: clamp(4rem, 9vw, 8rem);
	--header-h: 84px;
	/* Token di schema (positivo). Vengono rimappati da .hea-invert. */
	--c-bg: var(--hea-bg, #F7F4EF);
	--c-bg-alt: var(--hea-secondary, #CFC3B2);
	--c-text: var(--hea-text, #20161A);
	--c-muted-text: var(--hea-muted-text, #6B6259);
	--c-primary: var(--hea-primary, #A70038);
	--c-accent: var(--hea-primary, #A70038);
	--c-surface: var(--hea-surface, #FFFFFF);
	--c-line: var(--hea-line, #E6DFD3);
	--c-on-primary: var(--hea-dark-text, #F7F4EF);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-text);
	font-family: var(--hea-font-text, 'Barlow', system-ui, sans-serif);
	font-size: var(--hea-font-size, 17px);
	font-weight: var(--hea-weight, 400);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration-thickness: 1px; text-underline-offset: .18em; transition: color .25s var(--ease); }
a:hover, a:focus-visible { color: var(--c-text); }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

h1, h2, h3, h4 {
	margin: 0 0 .5em;
	font-family: var(--hea-font-display, 'Libre Baskerville', Georgia, serif);
	font-weight: var(--hea-display-weight, 400);
	line-height: 1.12;
	color: var(--c-text);
	letter-spacing: -.005em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; font-family: var(--hea-font-text); font-weight: var(--hea-weight-bold, 600); }
p { margin: 0 0 1em; }
strong, b { font-weight: var(--hea-weight-bold, 600); }
em { font-style: italic; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.screen-reader-text:focus { clip: auto; width: auto; height: auto; left: 1rem; top: 1rem; z-index: 1000; background: var(--c-surface); padding: .5rem 1rem; }

/* ---------- Layout ---------- */
.hea-container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.hea-narrow { max-width: 780px; }
.hea-section { position: relative; padding-block: var(--section); }
.hea-surface { background: var(--c-surface); }
.hea-tufo { background: var(--c-bg-alt); }

/* ---------- Schema negativo ---------- */
.hea-invert {
	--c-bg: var(--hea-dark-bg, #20161A);
	--c-bg-alt: var(--hea-dark-surface, #2B1F24);
	--c-text: var(--hea-dark-text, #F7F4EF);
	--c-muted-text: var(--hea-dark-accent, #CFC3B2);
	--c-primary: var(--hea-dark-primary, #A70038);
	--c-accent: var(--hea-dark-accent, #CFC3B2);
	--c-surface: var(--hea-dark-surface, #2B1F24);
	--c-line: var(--hea-dark-muted, #3D3035);
	--c-on-primary: var(--hea-dark-text, #F7F4EF);
	background: var(--c-bg);
	color: var(--c-text);
}
.hea-invert--alt {
	--c-bg: var(--hea-dark-bg-alt, #A70038);
	--c-primary: var(--hea-dark-text, #F7F4EF);
	--c-on-primary: var(--hea-dark-bg-alt, #A70038);
	--c-accent: var(--hea-dark-text, #F7F4EF);
	--c-muted-text: rgba(247, 244, 239, .78);
	--c-surface: rgba(32, 22, 26, .18);
	--c-line: rgba(247, 244, 239, .25);
}
.hea-invert h1, .hea-invert h2, .hea-invert h3, .hea-invert h4 { color: var(--c-text); }
.hea-invert a { color: var(--c-text); }
.hea-invert a:hover { color: var(--c-accent); }

/* ---------- Tipografia ---------- */
.hea-eyebrow {
	margin: 0 0 .9rem;
	font-family: var(--hea-font-condensed, 'Barlow Condensed', sans-serif);
	font-weight: var(--hea-weight-bold, 600);
	font-size: .85rem;
	letter-spacing: var(--hea-tracking-eyebrow, .18em);
	text-transform: uppercase;
	color: var(--c-accent);
}
.hea-eyebrow__sep { margin-inline: .5em; opacity: .6; }
.hea-stars { letter-spacing: .12em; color: var(--c-primary); }
.hea-invert .hea-stars { color: var(--c-accent); }
.hea-payoff {
	margin: .9rem 0 0;
	font-family: var(--hea-font-condensed);
	font-weight: var(--hea-weight-medium, 500);
	font-size: .85rem;
	letter-spacing: var(--hea-tracking-eyebrow, .18em);
	text-transform: uppercase;
	color: var(--c-accent);
}
.hea-title { margin-bottom: .4em; }
.hea-lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--c-muted-text); max-width: 60ch; line-height: 1.6; }
.hea-rule { display: block; width: 56px; height: 2px; background: var(--c-primary); margin: .2rem 0 1.4rem; }
.hea-invert .hea-rule { background: var(--c-accent); }
.hea-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 720px; }
.hea-head--center { margin-inline: auto; text-align: center; }
.hea-head--center .hea-rule { margin-inline: auto; }
.hea-head--center .hea-lead { margin-inline: auto; }
.hea-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.hea-head-row .hea-head { margin-bottom: 1.5rem; }
.hea-head-row__action { margin: 0 0 1.5rem; }

.hea-prose { font-size: clamp(1rem, 1.2vw, 1.1rem); }
.hea-prose > * + * { margin-top: 1.1em; }
.hea-prose h2, .hea-prose h3 { margin-top: 1.8em; }
.hea-prose ul, .hea-prose ol { padding-left: 1.3em; }
.hea-prose li + li { margin-top: .4em; }
.hea-prose blockquote { margin: 2em 0; padding: .2em 0 .2em 1.5em; border-left: 2px solid var(--c-primary); font-family: var(--hea-font-display); font-style: italic; font-size: 1.15em; color: var(--c-muted-text); }
.hea-prose figure { margin: 2em 0; }
.hea-prose figcaption, .wp-element-caption { font-size: .85rem; color: var(--c-muted-text); margin-top: .6em; font-family: var(--hea-font-condensed); letter-spacing: .04em; text-transform: uppercase; }
.hea-prose img { border-radius: var(--radius); }
.hea-prose hr { border: 0; height: 1px; background: var(--c-line); margin: 2.5em 0; }
.hea-prose .has-hea-primary-color { color: var(--hea-primary); }
.hea-prose .has-hea-text-color { color: var(--hea-text); }
.hea-prose .has-hea-muted-color { color: var(--hea-muted-text); }
.has-hea-primary-background-color { background: var(--hea-primary); color: var(--hea-dark-text); }
.has-hea-text-background-color, .has-hea-dark-bg-background-color { background: var(--hea-text); color: var(--hea-dark-text); }
.has-hea-bg-background-color, .has-hea-dark-text-background-color { background: var(--hea-bg); }
.has-hea-secondary-background-color { background: var(--hea-secondary); }
.has-hea-surface-background-color { background: var(--hea-surface); }
.has-small-font-size { font-size: 14px; } .has-medium-font-size { font-size: 22px; } .has-large-font-size { font-size: 32px; } .has-huge-font-size { font-size: 48px; }

/* ---------- Pulsanti ---------- */
.hea-btn {
	display: inline-flex; align-items: center; gap: .6em;
	padding: .85em 1.6em;
	font-family: var(--hea-font-condensed, 'Barlow Condensed', sans-serif);
	font-weight: var(--hea-weight-bold, 600);
	font-size: .95rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid var(--c-primary);
	border-radius: var(--radius);
	color: var(--c-on-primary);
	background: var(--c-primary);
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
	cursor: pointer;
}
.hea-btn:hover, .hea-btn:focus-visible { background: var(--c-text); border-color: var(--c-text); color: var(--c-bg); transform: translateY(-1px); }
.hea-invert .hea-btn--primary:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--hea-dark-bg, #20161A); }
.hea-btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-text); }
.hea-btn--ghost:hover { background: var(--c-text); color: var(--c-bg); }
.hea-invert .hea-btn--ghost { color: var(--c-text); border-color: var(--c-accent); }
.hea-invert .hea-btn--ghost:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--hea-dark-bg, #20161A); }
.hea-btn--link { background: none; border: 0; padding: 0; color: var(--c-primary); }
.hea-btn--link:hover { color: var(--c-text); background: none; transform: none; }
.hea-btn__arrow { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.hea-btn:hover .hea-btn__arrow { transform: translateX(4px); }

/* ---------- Cornici immagine ---------- */
.hea-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--c-bg-alt); }
.hea-frame::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(247, 244, 239, .55); pointer-events: none; }
.hea-frame__img, .hea-frame .hea-ph { width: 100%; height: 100%; object-fit: cover; }
.hea-frame--hero { aspect-ratio: 4 / 5; }
.hea-frame--wide { aspect-ratio: 16 / 8; }
.hea-ph { display: grid; place-items: center; background: var(--hea-secondary, #CFC3B2); }
.hea-ph img { width: 34%; max-width: 220px; opacity: .55; }

/* ---------- Header ---------- */
.hea-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--hea-bg, #F7F4EF) 92%, transparent);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.hea-header.is-scrolled { border-bottom-color: var(--hea-line, #E6DFD3); box-shadow: 0 8px 30px rgba(32, 22, 26, .06); }
.hea-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: var(--header-h); }
.hea-logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--c-text); }
.hea-logo--header { padding: .7rem 0; }
.hea-logo--overlay { display: none; }
.hea-nav__phone { display: none; }
.hea-logo__img { width: var(--hea-logo-max, 170px); max-width: 100%; height: auto; }
.hea-logo--footer .hea-logo__img { width: 220px; }
.hea-logo__text { font-family: var(--hea-font-display); font-size: 1.4rem; letter-spacing: .02em; }
.hea-logo__stars { color: var(--c-primary); font-size: .7em; letter-spacing: .12em; vertical-align: .15em; }

.hea-nav { display: flex; align-items: center; gap: 1.5rem; }
.hea-nav__list { display: flex; gap: clamp(.9rem, 1.6vw, 1.5rem); list-style: none; margin: 0; padding: 0; }
.hea-nav__list a {
	position: relative;
	white-space: nowrap;
	font-family: var(--hea-font-condensed, 'Barlow Condensed', sans-serif);
	font-weight: var(--hea-weight-medium, 500);
	font-size: .88rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--c-text);
	text-decoration: none;
	padding: .3em 0;
}
.hea-nav__list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--c-primary); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.hea-nav__list a:hover::after, .hea-nav__list .current-menu-item > a::after, .hea-nav__list .current-menu-ancestor > a::after { transform: scaleX(1); }
.hea-nav__list .sub-menu { display: none; position: absolute; list-style: none; margin: 0; padding: .6rem 0; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); min-width: 220px; box-shadow: 0 12px 40px rgba(32,22,26,.1); }
.hea-nav__list li { position: relative; }
.hea-nav__list li:hover > .sub-menu, .hea-nav__list li:focus-within > .sub-menu { display: block; }
.hea-nav__list .sub-menu a { display: block; padding: .45rem 1.2rem; font-size: .9rem; letter-spacing: .08em; }
.hea-nav__list .sub-menu a::after { display: none; }
.hea-nav__cta { display: flex; align-items: center; gap: 1.4rem; }
.hea-nav__phone { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-medium); letter-spacing: .06em; font-size: 1rem; color: var(--c-text); text-decoration: none; white-space: nowrap; }
.hea-nav__phone:hover { color: var(--c-primary); }

.hea-burger { display: none; width: 46px; height: 46px; padding: 0; background: none; border: 1px solid var(--c-line); border-radius: var(--radius); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.hea-burger__bar { width: 20px; height: 1.5px; background: var(--c-text); transition: transform .3s var(--ease), opacity .3s; }
.hea-burger[aria-expanded="true"] .hea-burger__bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.hea-burger[aria-expanded="true"] .hea-burger__bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 1000px) {
	:root { --header-h: 84px; }
	.hea-logo__img { width: min(var(--hea-logo-max, 170px), 150px); }
	.hea-burger { display: inline-flex; position: relative; z-index: 46; }
	/* Niente backdrop-filter su mobile: creerebbe un contenitore per l'overlay fixed del menu. */
	.hea-header { background: var(--hea-bg, #F7F4EF); backdrop-filter: none; -webkit-backdrop-filter: none; transition: background .4s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
	.hea-logo--header, .hea-logo--overlay { position: relative; z-index: 46; }
	body.nav-open .hea-header { background: var(--hea-dark-bg, #20161A); border-bottom-color: transparent; box-shadow: none; }
	body.nav-open .hea-logo--header { display: none; }
	body.nav-open .hea-logo--overlay { display: inline-flex; padding: .9rem 0; position: relative; z-index: 46; }
	body.nav-open .hea-burger { border-color: var(--hea-dark-muted, #3D3035); }
	body.nav-open .hea-burger__bar { background: var(--hea-dark-text, #F7F4EF); }
	.hea-nav {
		position: fixed; inset: 0; z-index: 45;
		display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 2rem;
		padding: calc(var(--header-h) + .75rem) var(--gutter) calc(1.1rem + env(safe-area-inset-bottom));
		gap: 1rem;
		background: var(--hea-dark-bg, #20161A);
		color: var(--hea-dark-text, #F7F4EF);
		overflow-y: auto;
		opacity: 0; visibility: hidden; transform: translateY(-2%);
		transition: opacity .45s var(--ease), transform .55s var(--ease), visibility .45s;
	}
	.hea-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.hea-nav::before { content: ""; position: absolute; right: -18%; bottom: 8%; width: 80vw; aspect-ratio: 570 / 443; background: var(--hea-mark-white) no-repeat center / contain; opacity: .06; pointer-events: none; }
	.hea-nav__list { position: relative; z-index: 1; flex-direction: column; gap: 0; margin: auto 0; }
	.hea-nav__list > li { border-bottom: 1px solid var(--hea-dark-muted, #3D3035); opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .6s var(--ease); }
	.hea-nav.is-open .hea-nav__list > li { opacity: 1; transform: none; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(1) { transition-delay: .08s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(2) { transition-delay: .14s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(3) { transition-delay: .2s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(4) { transition-delay: .26s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(5) { transition-delay: .32s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(6) { transition-delay: .38s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(7) { transition-delay: .44s; }
	.hea-nav.is-open .hea-nav__list > li:nth-child(n+8) { transition-delay: .5s; }
	.hea-nav__list a { display: block; padding: .55rem 0; font-family: var(--hea-font-display); font-weight: var(--hea-display-weight, 400); font-size: clamp(1.15rem, 4.4vw, 1.45rem); line-height: 1.25; letter-spacing: 0; text-transform: none; color: var(--hea-dark-text, #F7F4EF); }
	.hea-nav__list a::after { display: none; }
	.hea-nav__list .current-menu-item > a { color: var(--hea-dark-accent, #CFC3B2); }
	.hea-nav__list .sub-menu { display: block; position: static; border: 0; box-shadow: none; background: none; padding: 0 0 .8rem 1rem; }
	.hea-nav__list .sub-menu a { font-family: var(--hea-font-condensed); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem 0; color: var(--hea-dark-accent, #CFC3B2); }
	.hea-nav__cta { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "btn btn" "phone lang"; align-items: center; gap: .6rem .8rem; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease) .55s, transform .6s var(--ease) .55s; }
	.hea-nav__cta .hea-btn { grid-area: btn; padding: .7em 1.2em; }
	.hea-nav__cta .hea-nav__phone { grid-area: phone; }
	.hea-nav__cta .hea-lang { grid-area: lang; }
	.hea-nav.is-open .hea-nav__cta { opacity: 1; transform: none; }
	.hea-nav__cta .hea-btn { justify-content: center; }
	.hea-nav__cta .hea-btn--primary { background: var(--hea-dark-primary, #A70038); border-color: var(--hea-dark-primary, #A70038); color: var(--hea-dark-text, #F7F4EF); }
	.hea-nav__phone { display: block; text-align: left; font-family: var(--hea-font-display); font-size: 1.05rem; color: var(--hea-dark-accent, #CFC3B2); text-decoration: none; }
	body.nav-open { overflow: hidden; }
	body.nav-open .hea-bookbar { transform: translateY(100%); }
}

/* ---------- Hero ---------- */
.hea-hero { position: relative; overflow: hidden; }
.hea-hero__inner { position: relative; z-index: 1; }
.hea-hero__title { margin-bottom: .35em; }
.hea-hero__lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--c-muted-text); max-width: 56ch; margin-bottom: 1.6rem; line-height: 1.6; }
.hea-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hea-hero--split .hea-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); padding-block: clamp(3rem, 7vw, 6rem); }
.hea-hero__media { position: relative; }
.hea-hero__spiral {
	position: absolute; right: -10%; bottom: -8%; width: 52%; aspect-ratio: 570 / 443;
	background: var(--hea-mark-cremisi) no-repeat center / contain; opacity: .1; pointer-events: none;
}
@media (max-width: 860px) { .hea-hero--split .hea-hero__inner { grid-template-columns: 1fr; } .hea-hero__media { max-width: 520px; } }

.hea-hero--compact .hea-hero__inner { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem); }
.hea-hero--compact .hea-hero__title { font-size: clamp(2rem, 4vw, 3rem); }
.hea-hero--band .hea-hero__inner { padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hea-hero__band { margin-top: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 7; background: var(--c-bg-alt); }
.hea-hero__band-img { width: 100%; height: 100%; object-fit: cover; }

.hea-hero--cover { min-height: 70vh; min-height: 70svh; display: flex; align-items: flex-end; }
.tpl-home .hea-hero--cover { min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h)); }
.hea-hero__cover { position: absolute; inset: 0; }
.hea-hero__cover-img, .hea-hero__cover .hea-ph { width: 100%; height: 100%; object-fit: cover; }
.hea-hero__cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,22,26,.15) 0%, rgba(32,22,26,.35) 45%, rgba(32,22,26,.88) 100%); }
.hea-hero--cover .hea-hero__inner { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 5rem); }
.hea-hero--cover .hea-hero__text { max-width: 760px; }
.hea-hero--cover .hea-hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.hea-hero--cover .hea-hero__lead { color: var(--c-text); opacity: .9; }

/* ---------- Griglie e card ---------- */
.hea-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.hea-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.hea-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.hea-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.hea-card { display: flex; flex-direction: column; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.hea-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(32,22,26,.1); }
.hea-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--c-bg-alt); }
.hea-card__img, .hea-card__media .hea-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hea-card:hover .hea-card__img { transform: scale(1.04); }
.hea-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.hea-card__meta { display: flex; gap: .8em; margin: 0; font-family: var(--hea-font-condensed); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted-text); }
.hea-card__meta span { color: var(--c-primary); }
.hea-card__title { margin: 0; font-size: 1.3rem; }
.hea-card__title a { color: var(--c-text); text-decoration: none; }
.hea-card__title a:hover { color: var(--c-primary); }
.hea-card__text { margin: 0; color: var(--c-muted-text); font-size: .95rem; }
.hea-invert .hea-card { background: var(--c-surface); border-color: var(--c-line); }

/* ---------- Filtri, ricerca, paginazione ---------- */
.hea-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.hea-filter__btn { padding: .5em 1.1em; border: 1px solid var(--c-line); border-radius: 999px; font-family: var(--hea-font-condensed); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: var(--c-text); background: var(--c-surface); }
.hea-filter__btn:hover, .hea-filter__btn.is-active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-on-primary); }
.hea-search { display: flex; gap: .6rem; max-width: 560px; margin-bottom: 2.5rem; }
.hea-search input { flex: 1; padding: .8em 1em; font: inherit; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); color: var(--c-text); }
.hea-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; max-width: 780px; }
.hea-results__item { padding-bottom: 1.5rem; border-bottom: 1px solid var(--c-line); }
.hea-results__title { font-size: 1.4rem; margin: .2em 0 .3em; }
.hea-results__title a { color: var(--c-text); text-decoration: none; }
.hea-results__title a:hover { color: var(--c-primary); }
.hea-pagination { margin-top: 3rem; }
.hea-pagination .nav-links { display: flex; gap: .4rem; justify-content: center; }
.hea-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .6em; border: 1px solid var(--c-line); border-radius: var(--radius); font-family: var(--hea-font-condensed); letter-spacing: .06em; text-decoration: none; color: var(--c-text); background: var(--c-surface); }
.hea-pagination .page-numbers.current, .hea-pagination .page-numbers:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-on-primary); }

/* ---------- Articolo ---------- */
.hea-article__head { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem); }
.hea-article__media { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.hea-article .hea-prose { padding-bottom: var(--section); }

/* ---------- CTA ---------- */
.hea-cta { overflow: hidden; }
.hea-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hea-cta__action { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.hea-cta__phone { font-family: var(--hea-font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); text-decoration: none; color: var(--c-text); }
.hea-cta__phone:hover { color: var(--c-accent); }
@media (max-width: 800px) { .hea-cta__inner { grid-template-columns: 1fr; } }

/* Chiocciola ufficiale in filigrana (marchio bianco del kit, mai ruotato ne deformato). */
.hea-spiral-decor {
	position: absolute; right: -4%; top: 50%; width: clamp(280px, 34vw, 560px); aspect-ratio: 570 / 443;
	transform: translateY(-50%);
	background: var(--hea-mark-white) no-repeat center / contain; opacity: .07; pointer-events: none;
}
.hea-spiral-decor--footer { right: auto; left: -6%; top: auto; bottom: -14%; transform: none; opacity: .05; }
.hea-invert--alt .hea-spiral-decor { opacity: .12; }
.hea-tufo .hea-spiral-decor { background-image: var(--hea-mark-cremisi); opacity: .08; }

/* ---------- Footer ---------- */
.hea-footer { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem) 2rem; }
.hea-footer .hea-container { position: relative; z-index: 1; }
.hea-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--c-line); }
@media (max-width: 960px) { .hea-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hea-footer__grid { grid-template-columns: 1fr; } }
.hea-footer__title { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); font-size: .85rem; letter-spacing: var(--hea-tracking-eyebrow); text-transform: uppercase; color: var(--c-accent); margin-bottom: 1rem; }
.hea-footer__claim { color: var(--c-muted-text); max-width: 34ch; margin-top: .8rem; font-family: var(--hea-font-display); font-style: italic; }
.hea-footer__list, .hea-footer__legal-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.hea-footer__list a, .hea-footer__contacts a, .hea-footer__legal a { text-decoration: none; }
.hea-footer__list a:hover, .hea-footer__contacts a:hover { color: var(--c-accent); }
.hea-footer__contacts p { margin: 0 0 .4rem; }
.hea-footer__book p { color: var(--c-muted-text); }
.hea-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; font-size: .85rem; color: var(--c-muted-text); }
.hea-footer__bottom p { margin: 0; }
.hea-footer__legal-list { display: flex; gap: 1.2rem; }
.hea-social { display: flex; gap: 1.2rem; margin: 1rem 0 0; font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; }
.hea-social a { text-decoration: none; }
.hea-widget { margin-top: 1.5rem; }
.hea-widget h2, .hea-widget .wp-block-heading { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); font-size: .85rem; letter-spacing: var(--hea-tracking-eyebrow); text-transform: uppercase; color: var(--c-accent); margin-bottom: .8rem; }
.hea-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.hea-widget a { text-decoration: none; }

/* ---------- Animazioni di ingresso ---------- */
/* Nota: il wipe lascia uno 0,1% del box visibile: con area zero Chrome non fa scattare l'IntersectionObserver. */
[data-reveal] { --d: 0s; opacity: 0; will-change: transform, opacity, clip-path; }
[data-reveal="up"] { transform: translateY(24px); transition: opacity .9s var(--ease) var(--d), transform .9s var(--ease) var(--d); }
[data-reveal="fade"] { transition: opacity 1s ease-out var(--d); }
[data-reveal="scale"] { transform: scale(.85); transition: opacity .9s var(--ease) var(--d), transform .9s var(--ease) var(--d); }
[data-reveal="wipe"] { opacity: 1; clip-path: inset(-.3em 99.9% -.15em -.02em); transition: clip-path 1.15s var(--ease-wipe) var(--d); }
[data-reveal="rise"] { transform: translateY(40px); transition: opacity 1s var(--ease) var(--d), transform 1.2s var(--ease) var(--d); }
[data-reveal].is-visible { opacity: 1; transform: none; clip-path: inset(-.3em -.04em -.15em -.02em); }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
	.hea-card, .hea-btn { transition: none !important; }
}

/* ---------- Hero: dissolvenza immagini ---------- */
.hea-hero__slides { position: absolute; inset: 0; }
.hea-hero__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity 1.8s var(--ease), transform 7s linear; }
.hea-hero__slide img, .hea-hero__slide .hea-ph { width: 100%; height: 100%; object-fit: cover; }
.hea-hero__slide.is-active { opacity: 1; transform: scale(1); }
.hea-hero__dots { position: absolute; right: var(--gutter); bottom: 1.6rem; z-index: 2; display: flex; gap: .5rem; }
.hea-hero__dot { width: 34px; height: 2px; border: 0; padding: 0; background: rgba(247,244,239,.35); cursor: pointer; transition: background .3s; }
.hea-hero__dot.is-active { background: var(--hea-dark-text, #F7F4EF); }
.hea-hero__scroll { position: absolute; left: 50%; bottom: 1.2rem; z-index: 2; width: 1px; height: 44px; background: rgba(247,244,239,.5); overflow: hidden; }
.hea-hero__scroll::after { content: ""; position: absolute; inset: 0; background: var(--hea-dark-text); transform: translateY(-100%); animation: hea-scroll 2.2s var(--ease) infinite; }
@keyframes hea-scroll { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* ---------- Split ---------- */
.hea-split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.hea-split--reverse .hea-split__media { order: 2; }
.hea-split__text .hea-prose { max-width: 56ch; }
.hea-frame--portrait { aspect-ratio: 4 / 5; }
.hea-frame--landscape { aspect-ratio: 4 / 3; }
.hea-frame--room { display: block; aspect-ratio: 16 / 10; }
.hea-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; margin-top: 1.6rem; }
@media (max-width: 860px) { .hea-split { grid-template-columns: 1fr; } .hea-split--reverse .hea-split__media { order: 0; } }

/* ---------- Numeri ---------- */
.hea-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem 2rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(1.5rem, 3vw, 2.5rem); border-top: 1px solid var(--c-line); }
.hea-split__text .hea-numbers { margin-top: 2rem; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
.hea-number__value { display: block; font-family: var(--hea-font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--c-primary); }
.hea-invert .hea-number__value { color: var(--c-accent); }
.hea-number__label { display: block; margin-top: .5rem; font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; color: var(--c-muted-text); }

/* ---------- Chips ---------- */
.hea-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 1.2rem; }
.hea-chip { display: inline-flex; align-items: center; gap: .4em; padding: .4em .8em; border: 1px solid var(--c-line); border-radius: 999px; background: var(--c-surface); font-family: var(--hea-font-condensed); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-text); }
.hea-chip svg { width: 1.1em; height: 1.1em; color: var(--c-primary); }
.hea-chips--small .hea-chip { font-size: .75rem; padding: .3em .65em; }
.hea-invert .hea-chip { background: transparent; }
.hea-invert .hea-chip svg { color: var(--c-accent); }

/* ---------- Card: varianti ---------- */
.hea-card__media--tall { aspect-ratio: 4 / 5; }
.hea-card__badge { position: absolute; left: 1rem; top: 1rem; padding: .4em .8em; background: var(--hea-primary); color: var(--hea-dark-text); font-family: var(--hea-font-condensed); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius); }
.hea-card__media { position: relative; }
.hea-card__link { margin-top: auto; padding-top: .6rem; font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; text-decoration: none; color: var(--c-primary); }
.hea-card__link span { display: inline-block; transition: transform .3s var(--ease); }
.hea-card__link:hover span { transform: translateX(4px); }
.hea-card__meta time { color: var(--c-muted-text); }
.hea-card.is-hidden { display: none; }

/* ---------- Servizi ---------- */
.hea-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.hea-services--compact { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 1.5rem 1rem; text-align: center; margin-bottom: 2.5rem; }
.hea-service { display: flex; gap: 1.2rem; padding: 1.6rem; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.hea-service:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(32,22,26,.08); }
.hea-service__icon { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; overflow: hidden; background: var(--c-bg-alt); }
.hea-service__img, .hea-service__icon .hea-ph { width: 100%; height: 100%; object-fit: cover; }
.hea-service__title { margin: .2rem 0 .3rem; font-size: 1.15rem; }
.hea-service__text { margin: 0; color: var(--c-muted-text); font-size: .95rem; }
.hea-service__note { margin: .5rem 0 0; font-family: var(--hea-font-condensed); letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--c-primary); }
.hea-service--compact { flex-direction: column; align-items: center; background: transparent; border: 0; padding: .5rem; box-shadow: none !important; }
.hea-service--compact .hea-service__icon { width: 96px; height: 96px; flex-basis: auto; border: 1px solid var(--c-line); transition: transform .5s var(--ease), border-color .3s; }
.hea-service--compact:hover .hea-service__icon { transform: scale(1.06); border-color: var(--c-accent); }
.hea-service--compact .hea-service__title { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-medium); letter-spacing: .1em; text-transform: uppercase; font-size: .9rem; margin-top: .6rem; }
.hea-service--compact .hea-service__text { display: none; }
.hea-center { text-align: center; margin: 0; }

/* ---------- Camere (pagina) ---------- */
.hea-anchors { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.hea-anchors a { padding: .55em 1.1em; border: 1px solid var(--c-line); border-radius: 999px; background: var(--c-surface); font-family: var(--hea-font-condensed); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: var(--c-text); transition: all .3s var(--ease); }
.hea-anchors a:hover, .hea-anchors a.is-active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-on-primary); }
.hea-room { padding-block: clamp(2.5rem, 6vw, 5rem); scroll-margin-top: calc(var(--header-h) + 1rem); }
.hea-room:nth-of-type(even) { background: var(--c-surface); }
.hea-room__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hea-room--reverse .hea-room__media { order: 2; }
.hea-room__media { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.hea-room__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: .3em; }
.hea-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: .6rem; position: relative; }
.hea-thumbs__item { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--c-bg-alt); }
.hea-thumbs__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hea-thumbs__item:hover img { transform: scale(1.06); }
.hea-thumbs__more { position: absolute; right: .5rem; bottom: .5rem; padding: .2em .6em; background: rgba(32,22,26,.75); color: #F7F4EF; font-family: var(--hea-font-condensed); font-size: .8rem; border-radius: var(--radius); pointer-events: none; }
.hea-amenities { margin: 1.2rem 0 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.hea-amenities summary { display: flex; align-items: center; gap: .8rem; padding: .9rem 0; cursor: pointer; list-style: none; font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; }
.hea-amenities summary::-webkit-details-marker { display: none; }
.hea-amenities summary::after { content: "+"; margin-left: auto; font-family: var(--hea-font-display); font-size: 1.4rem; color: var(--c-primary); transition: transform .3s; }
.hea-amenities[open] summary::after { transform: rotate(45deg); }
.hea-amenities__n { padding: .1em .55em; border-radius: 999px; background: var(--c-bg-alt); font-size: .75rem; }
.hea-amenities .hea-checks { padding-bottom: 1rem; }
.hea-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem .5rem; }
.hea-checks--cols { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.hea-checks li { display: flex; align-items: flex-start; gap: .6em; font-size: .95rem; }
.hea-checks svg { flex: 0 0 1.1em; width: 1.1em; height: 1.1em; margin-top: .25em; color: var(--c-primary); }
.hea-invert .hea-checks svg { color: var(--c-accent); }
.hea-price { font-family: var(--hea-font-condensed); letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; color: var(--c-muted-text); }
.hea-price strong { font-family: var(--hea-font-display); font-size: 1.4rem; letter-spacing: 0; text-transform: none; color: var(--c-text); }
.hea-price--big strong { font-size: 2rem; }
@media (max-width: 900px) { .hea-room__inner, .hea-room--reverse .hea-room__inner { grid-template-columns: 1fr; } .hea-room--reverse .hea-room__media { order: 0; } .hea-room__media { position: static; } }

/* ---------- Sale meeting ---------- */
.hea-halls { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.hea-hall { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.hea-hall:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(32,22,26,.1); }
.hea-hall__media { display: block; min-height: 260px; background: var(--c-bg-alt); overflow: hidden; }
.hea-hall__img, .hea-hall__media .hea-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hea-hall:hover .hea-hall__img { transform: scale(1.04); }
.hea-hall__body { padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: .8rem; }
.hea-hall__head { display: flex; justify-content: space-between; gap: 1.5rem; align-items: flex-start; }
.hea-hall__title { margin: 0; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.hea-hall__title a { color: var(--c-text); text-decoration: none; }
.hea-hall__title a:hover { color: var(--c-primary); }
.hea-hall__cap { margin: 0; text-align: right; line-height: 1; white-space: nowrap; }
.hea-hall__cap strong { display: block; font-family: var(--hea-font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--c-primary); }
.hea-hall__cap span { font-family: var(--hea-font-condensed); letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; color: var(--c-muted-text); }
.hea-hall__text { margin: 0; color: var(--c-muted-text); }
.hea-hall__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; }
.hea-hall__tags span { padding: .25em .7em; border-radius: 999px; background: var(--c-bg-alt); font-family: var(--hea-font-condensed); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hea-hall .hea-actions { margin-top: auto; }
@media (max-width: 720px) { .hea-hall { grid-template-columns: 1fr; } .hea-hall__media { aspect-ratio: 16 / 10; min-height: 0; } }
.hea-halls-mini { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .6rem; }
.hea-halls-mini a { display: grid; padding: .9rem 1rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); text-decoration: none; color: var(--c-text); transition: border-color .3s; }
.hea-halls-mini a:hover { border-color: var(--c-primary); }
.hea-halls-mini span { font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; color: var(--c-muted-text); }
.hea-halls-mini strong { font-family: var(--hea-font-display); font-size: 1.6rem; color: var(--c-primary); line-height: 1.1; }
.hea-halls-mini small { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted-text); }
.hea-setups { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .8rem; margin-bottom: 1.5rem; }
.hea-setup { padding: 1rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); text-align: center; }
.hea-setup strong { display: block; font-family: var(--hea-font-display); font-size: 1.8rem; color: var(--c-primary); }
.hea-setup span { font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .75rem; color: var(--c-muted-text); }

/* ---------- Steps (servizi eventi, come raggiungerci) ---------- */
.hea-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.5rem 2.5rem; }
.hea-step { display: flex; gap: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--c-line); }
.hea-step__n { font-family: var(--hea-font-display); font-size: 1.6rem; color: var(--c-primary); line-height: 1; }
.hea-invert .hea-step__n { color: var(--c-accent); }
.hea-step__title { margin: .1rem 0 .4rem; font-size: 1.15rem; }
.hea-step p { margin: 0; color: var(--c-muted-text); font-size: .95rem; }

/* ---------- Galleria e lightbox ---------- */
.hea-gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: .8rem; }
.hea-gal--masonry { grid-auto-rows: 200px; grid-auto-flow: dense; }
.hea-gal--masonry .hea-gal__item:nth-child(6n+1) { grid-row: span 2; }
.hea-gal--masonry .hea-gal__item:nth-child(6n+4) { grid-column: span 2; }
@media (max-width: 600px) { .hea-gal--masonry { grid-auto-rows: 150px; } .hea-gal--masonry .hea-gal__item:nth-child(6n+4) { grid-column: span 1; } }
.hea-gal__item { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--c-bg-alt); }
.hea-gal__item.is-hidden { display: none; }
.hea-gal__img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hea-gal__item:hover .hea-gal__img { transform: scale(1.05); }
.hea-gal__zoom { position: absolute; right: .7rem; bottom: .7rem; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(247,244,239,.9); color: var(--hea-primary); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.hea-gal__zoom svg { width: 18px; height: 18px; }
.hea-gal__item:hover .hea-gal__zoom { opacity: 1; transform: none; }
.hea-lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(32,22,26,.96); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.hea-lb.is-open { opacity: 1; visibility: visible; }
.hea-lb__img { max-width: min(92vw, 1400px); max-height: 84vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5); opacity: 0; transform: scale(.97); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.hea-lb__img.is-in { opacity: 1; transform: none; }
.hea-lb__caption { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); color: #CFC3B2; font-family: var(--hea-font-condensed); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
.hea-lb__btn { position: absolute; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(207,195,178,.4); border-radius: 50%; background: transparent; color: #F7F4EF; cursor: pointer; transition: background .3s, border-color .3s; }
.hea-lb__btn:hover { background: var(--hea-primary); border-color: var(--hea-primary); }
.hea-lb__btn svg { width: 20px; height: 20px; }
.hea-lb__close { top: 1.2rem; right: 1.2rem; }
.hea-lb__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.hea-lb__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.hea-lb__count { position: absolute; top: 1.9rem; left: 1.6rem; color: #CFC3B2; font-family: var(--hea-font-condensed); letter-spacing: .12em; font-size: .8rem; }
body.lb-open { overflow: hidden; }
.hea-filter__btn small { opacity: .6; margin-left: .3em; }

/* ---------- Contatti ---------- */
.hea-contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1rem; }
.hea-contact { display: grid; gap: .3rem; padding: 1.6rem; align-content: start; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); text-decoration: none; color: var(--c-text); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
a.hea-contact:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(32,22,26,.08); border-color: var(--c-primary); }
.hea-contact__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: .7rem; border-radius: 50%; background: var(--c-primary); color: var(--c-on-primary); transition: transform .4s var(--ease), background .3s; }
.hea-contact__icon svg { width: 22px; height: 22px; }
a.hea-contact:hover .hea-contact__icon { transform: scale(1.08) rotate(-6deg); background: var(--c-text); }
.hea-contact__label { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); letter-spacing: var(--hea-tracking-eyebrow); text-transform: uppercase; font-size: .78rem; color: var(--c-primary); }
.hea-contact__value { font-family: var(--hea-font-display); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.2; word-break: break-word; }
.hea-contact__value--small { font-size: 1.1rem; }
.hea-contact__note { font-size: .9rem; color: var(--c-muted-text); }
.hea-contact-line { font-family: var(--hea-font-display); font-size: 1.25rem; margin: .4rem 0; }
.hea-contact-line a { text-decoration: none; color: var(--c-text); }
.hea-contact-line a:hover { color: var(--c-primary); }
.hea-map { width: 100%; max-width: 100%; aspect-ratio: 21 / 9; min-height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-bg-alt); }
.hea-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.75); }
.hea-section--flush { padding-top: 0; }
.hea-form-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .hea-form-layout { grid-template-columns: 1fr; } }

/* ---------- Form ---------- */
.hea-form-wrap { scroll-margin-top: calc(var(--header-h) + 1rem); }
.hea-form { padding: clamp(1.5rem, 3vw, 2.4rem); background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); }
.hea-form__hp { position: absolute; left: -9999px; }
.hea-form__legend { font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--c-muted-text); margin-bottom: .6rem; }
.hea-switch { border: 0; padding: 0; margin: 0 0 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.hea-switch__opt { position: relative; }
.hea-switch__opt input { position: absolute; opacity: 0; inset: 0; }
.hea-switch__opt span { display: inline-block; padding: .55em 1.1em; border: 1px solid var(--c-line); border-radius: 999px; font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; cursor: pointer; transition: all .25s; }
.hea-switch__opt input:checked + span { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-on-primary); }
.hea-switch__opt input:focus-visible + span { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.hea-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.hea-form .hea-field { display: grid; gap: .35rem; margin: 0; }
.hea-form .hea-field--full { grid-column: 1 / -1; }
.hea-form label { font-family: var(--hea-font-condensed); letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--c-muted-text); }
.hea-form .req { color: var(--c-primary); }
.hea-form input:not([type="checkbox"]):not([type="radio"]), .hea-form textarea { width: 100%; padding: .8em .9em; font: inherit; color: var(--c-text); background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius); transition: border-color .25s, box-shadow .25s; }
.hea-form input:focus, .hea-form textarea:focus { outline: 0; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(167,0,56,.12); }
.hea-form .hea-field--check label { display: flex; gap: .7em; align-items: flex-start; text-transform: none; letter-spacing: 0; font-family: var(--hea-font-text); font-size: .9rem; color: var(--c-text); }
.hea-form .hea-field--check input { margin-top: .25em; accent-color: var(--c-primary); }
.hea-form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin: 1.5rem 0 0; }
.hea-form__alt { font-size: .9rem; color: var(--c-muted-text); }
.hea-notice { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-weight: var(--hea-weight-medium); }
.hea-notice--ok { background: #E6F0E4; color: #234D2B; border: 1px solid #BFD9BC; }
.hea-notice--err { background: #F6DCE4; color: #A70038; border: 1px solid #ECB6C7; }
@media (max-width: 560px) { .hea-form__grid { grid-template-columns: 1fr; } }

/* ---------- Single (camera, sala, offerta, luogo) ---------- */
.hea-single { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hea-single__side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.hea-infobox { padding: 1.8rem; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); display: grid; gap: .8rem; }
.hea-infobox p { margin: 0; }
.hea-infobox__big { font-family: var(--hea-font-display); font-size: 3rem; line-height: 1; color: var(--c-primary); }
.hea-infobox__big small { margin-left: .3em; font-family: var(--hea-font-condensed); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted-text); }
.hea-infobox__big--text { font-size: 1.8rem; }
.hea-infobox__list { margin: 0; display: grid; gap: .2rem; }
.hea-infobox__list dt { font-family: var(--hea-font-condensed); letter-spacing: .1em; text-transform: uppercase; font-size: .75rem; color: var(--c-muted-text); margin-top: .5rem; }
.hea-infobox__list dd { margin: 0; }
.hea-h3 { font-size: 1.3rem; margin: 2rem 0 .8rem; }
@media (max-width: 860px) { .hea-single { grid-template-columns: 1fr; } .hea-single__side { position: static; } }

/* ---------- Menu ristorante ---------- */
.hea-menu-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; position: relative; z-index: 1; }
.hea-menu { margin: 0; display: grid; gap: .6rem; }
.hea-menu__row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; padding: .7rem 0; border-bottom: 1px solid var(--c-line); }
.hea-menu dt { font-family: var(--hea-font-condensed); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--c-accent); }
.hea-menu dd { margin: 0; font-family: var(--hea-font-display); font-size: 1.1rem; }
@media (max-width: 800px) { .hea-menu-layout { grid-template-columns: 1fr; } }

/* ---------- Stato vuoto ---------- */
.hea-empty { max-width: 560px; margin: 0 auto; padding: 3rem 2rem; text-align: center; background: var(--c-surface); border: 1px dashed var(--c-line); border-radius: var(--radius); }
.hea-empty__title { font-family: var(--hea-font-display); font-size: 1.5rem; margin-bottom: .4rem; }

/* ---------- Barra prenotazione mobile ---------- */
.hea-bookbar { display: none; }
@media (max-width: 720px) {
	.hea-bookbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom)); background: rgba(247,244,239,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--hea-line); transform: translateY(100%); transition: transform .4s var(--ease); }
	.hea-bookbar.is-visible { transform: none; }
	.hea-bookbar .hea-btn { justify-content: center; }
	body { padding-bottom: 0; }
	body.bookbar-open .hea-footer { padding-bottom: 5.5rem; }
}

/* ---------- Varie WP ---------- */
.alignwide { width: min(100% - 2 * var(--gutter), 1100px); margin-inline: auto; }
.alignfull { width: 100vw; margin-inline: calc(50% - 50vw); }
.wp-block-image img { border-radius: var(--radius); }
.wp-block-button__link { border-radius: var(--radius); font-family: var(--hea-font-condensed); letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Ritocchi ---------- */
.hea-hero--compact + .hea-section, .hea-hero--band + .hea-section { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.hea-hero--compact .hea-hero__inner { padding-bottom: clamp(1rem, 2vw, 1.5rem); }
.hea-contact__value--small { font-size: .95rem; overflow-wrap: anywhere; letter-spacing: -.01em; }
.hea-form .hea-field[hidden] { display: none; }
.hea-services--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .hea-services--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .hea-services--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- WhatsApp flottante ---------- */
.hea-wa {
	position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 55;
	display: inline-flex; align-items: center; gap: .6rem;
	width: 60px; height: 60px; padding: 0; justify-content: center;
	border-radius: 50%;
	background: #161215; color: #F7F4EF;
	text-decoration: none;
	font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-bold); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
	box-shadow: 0 10px 30px rgba(32,22,26,.28);
	transition: transform .35s var(--ease), background .3s var(--ease), bottom .4s var(--ease), opacity .3s;
}
.hea-wa svg { width: 28px; height: 28px; flex: 0 0 28px; }
.hea-wa:hover, .hea-wa:focus-visible { background: #000; color: #F7F4EF; transform: translateY(-3px); }
.hea-wa__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@media (max-width: 720px) {
	.hea-wa { width: 56px; height: 56px; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); }
	body.bookbar-open .hea-wa { bottom: calc(5.4rem + env(safe-area-inset-bottom)); }
}
body.nav-open .hea-wa, body.lb-open .hea-wa { opacity: 0; pointer-events: none; }

/* ---------- Carosello servizi (home) ---------- */
.hea-carousel-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; position: relative; z-index: 1; }
.hea-carousel-layout .hea-head { margin-bottom: 1.6rem; }
.hea-carousel-index { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .1rem; }
.hea-carousel-index__btn { display: flex; align-items: center; gap: .9rem; width: 100%; padding: .55rem 0; background: none; border: 0; border-bottom: 1px solid var(--c-line); text-align: left; cursor: pointer; color: var(--c-muted-text); font-family: var(--hea-font-condensed); font-weight: var(--hea-weight-medium); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; transition: color .3s, padding-left .35s var(--ease); }
.hea-carousel-index__n { font-family: var(--hea-font-display); font-size: .9rem; letter-spacing: 0; color: var(--c-accent); opacity: .6; transition: opacity .3s; }
.hea-carousel-index__btn:hover { color: var(--c-text); }
.hea-carousel-index__btn.is-active { color: var(--c-text); padding-left: .5rem; }
.hea-carousel-index__btn.is-active .hea-carousel-index__n { opacity: 1; }
.hea-carousel-layout__action { margin: 0; }
.hea-carousel { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--c-surface); }
.hea-carousel__track { position: relative; aspect-ratio: 4 / 3; }
.hea-carousel__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.hea-carousel__slide.is-active { opacity: 1; visibility: visible; }
.hea-carousel__media { position: absolute; inset: 0; }
.hea-carousel__img, .hea-carousel__media .hea-ph { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6s linear; }
.hea-carousel__slide.is-active .hea-carousel__img { transform: scale(1); }
.hea-carousel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,22,26,0) 35%, rgba(32,22,26,.88) 100%); }
.hea-carousel__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem) clamp(4rem, 6vw, 5rem); color: var(--hea-dark-text, #F7F4EF); }
.hea-carousel__caption > * { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease) .25s, transform .7s var(--ease) .25s; }
.hea-carousel__caption > * + * { transition-delay: .4s; }
.hea-carousel__caption > * + * + * { transition-delay: .55s; }
.hea-carousel__slide.is-active .hea-carousel__caption > * { opacity: 1; transform: none; }
.hea-carousel__caption .hea-eyebrow { margin-bottom: .5rem; color: var(--hea-dark-accent, #CFC3B2); }
.hea-carousel__title { margin: 0 0 .4rem; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--hea-dark-text, #F7F4EF); }
.hea-carousel__text { margin: 0; max-width: 46ch; color: rgba(247,244,239,.82); font-size: .98rem; }
.hea-carousel__controls { position: absolute; left: clamp(1.4rem, 3vw, 2.4rem); right: clamp(1.4rem, 3vw, 2.4rem); bottom: clamp(1.2rem, 2.5vw, 1.8rem); display: flex; align-items: center; gap: 1rem; z-index: 2; }
.hea-carousel__btn { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(247,244,239,.35); border-radius: 50%; background: rgba(32,22,26,.35); color: #F7F4EF; cursor: pointer; transition: background .3s, border-color .3s; }
.hea-carousel__btn:hover { background: var(--hea-primary); border-color: var(--hea-primary); }
.hea-carousel__btn svg { width: 18px; height: 18px; }
.hea-carousel__progress { flex: 1; height: 2px; background: rgba(247,244,239,.25); overflow: hidden; }
.hea-carousel__progress span { display: block; height: 100%; width: 100%; background: var(--hea-dark-accent, #CFC3B2); transform-origin: left; transform: scaleX(0); }
.hea-carousel__progress span.is-running { animation: hea-progress var(--dur, 4500ms) linear forwards; }
.hea-carousel.is-paused .hea-carousel__progress span { animation-play-state: paused; }
@keyframes hea-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (max-width: 900px) { .hea-carousel-layout { grid-template-columns: 1fr; } .hea-carousel-index { grid-template-columns: 1fr 1fr; gap: 0 1.5rem; } .hea-carousel-index__btn { font-size: .85rem; } }
@media (max-width: 560px) { .hea-carousel-index { grid-template-columns: 1fr; } .hea-carousel__track { aspect-ratio: 4 / 5; } }

/* ---------- Servizi: righe ampie ---------- */
.hea-room--service .hea-room__inner { align-items: center; }
.hea-room--service .hea-room__media { position: static; }
.hea-room--service .hea-frame--room { aspect-ratio: 4 / 3; }
.hea-room__n { font-family: var(--hea-font-display); font-size: 1.1rem; letter-spacing: 0; margin-right: .4rem; }

/* ---------- Slider dentro un frame ---------- */
.hea-frame { position: relative; }
.hea-slider { position: absolute; inset: 0; z-index: 0; }
.hea-frame::after { z-index: 1; }
.hea-slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hea-slider__slide.is-active { opacity: 1; }
.hea-slider__slide .hea-frame__img { width: 100%; height: 100%; object-fit: cover; }
.hea-slider__dots { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2; display: flex; gap: .5rem; padding: .55rem .8rem; border-radius: 999px; background: rgba(32,22,26,.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hea-slider__dot { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 2px; background: rgba(247,244,239,.45); cursor: pointer; transition: background .3s, width .3s; }
.hea-slider__dot.is-active { background: #F7F4EF; width: 40px; }

/* ---------- Ristorante partner (home) ---------- */
.hea-partner { overflow: hidden; }
.hea-partner .hea-split { position: relative; z-index: 1; }
.hea-partner__info { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .5rem; }
.hea-partner__info li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.hea-partner__info a { text-decoration: none; color: var(--c-text); }
.hea-partner__info a:hover { color: var(--c-primary); }
.hea-partner__ico { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--c-surface); color: var(--c-primary); flex: 0 0 32px; }
.hea-partner__ico svg { width: 16px; height: 16px; }
.hea-partner__thumbs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 1.6rem; max-width: 380px; }
.hea-partner__thumb { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--c-surface); }
.hea-partner__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hea-partner__thumb:hover img { transform: scale(1.05); }
.hea-footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.hea-footer__credits a { text-decoration: none; color: var(--c-text); }
.hea-footer__credits a:hover { color: var(--c-accent); }

/* ---------- CTA preventivo sale (WhatsApp / email) ---------- */
.hea-contacts--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.hea-cta-meeting { scroll-margin-top: calc(var(--header-h) + 1rem); }
.hea-cta-meeting__phone { grid-column: 1 / -1; margin: .4rem 0 0; color: var(--c-muted-text); }
.hea-cta-meeting__phone a { font-family: var(--hea-font-display); font-size: 1.15rem; color: var(--c-text); text-decoration: none; }
.hea-cta-meeting__phone a:hover { color: var(--c-primary); }

/* ---------- Titolo con logo (partner) ---------- */
.hea-title--logo { margin: 0 0 1.2rem; }
.hea-title__logo { width: min(190px, 55%); height: auto; }
.hea-title--logo + .hea-rule { display: none; }

/* ---------- Switch lingua (GTranslate, bandierine) ---------- */
.hea-lang { display: inline-flex; align-items: center; gap: .5rem; }
.hea-lang a { display: inline-flex; width: 24px; height: 24px; border-radius: 50%; overflow: hidden; opacity: .45; filter: saturate(.7); box-shadow: 0 0 0 1px var(--c-line); transition: opacity .25s, transform .25s, box-shadow .25s; }
.hea-lang a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hea-lang a:hover { opacity: 1; filter: none; transform: scale(1.08); }
.hea-lang a.gt-current-lang { opacity: 1; filter: none; box-shadow: 0 0 0 2px var(--c-primary); }
@media (max-width: 1000px) {
	.hea-lang { justify-content: flex-end; gap: .7rem; margin-top: 0; }
	.hea-lang a { width: 26px; height: 26px; box-shadow: 0 0 0 1px var(--hea-dark-muted, #3D3035); }
	.hea-lang a.gt-current-lang { box-shadow: 0 0 0 2px var(--hea-dark-accent, #CFC3B2); }
}
/* Nasconde la barra e i tooltip di Google Translate */
body { top: 0 !important; }
.goog-te-banner-frame, .skiptranslate iframe, #goog-gt-tt, .goog-tooltip, .goog-te-balloon-frame { display: none !important; }
font[style] { background: none !important; box-shadow: none !important; }

/* ---------- Filigrana: mai oltre il bordo dello schermo ---------- */
.hea-section:has(> .hea-spiral-decor), .hea-cta, .hea-footer, .hea-partner, .hea-services-band { overflow: hidden; }
.hea-spiral-decor { max-width: 90vw; }
@media (max-width: 720px) {
	.hea-spiral-decor { width: 70vw; right: -25%; opacity: .06; }
	.hea-spiral-decor--footer { left: -30%; right: auto; }
	.hea-hero__spiral { width: 60%; right: -20%; }
}
@media (max-width: 1000px) { .hea-nav { overflow-x: hidden; } }
