:root {
	--eo-ink: #11141b;
	--eo-night: #24153a;
	--eo-paper: #f7f3ed;
	--eo-white: #fffefd;
	--eo-teal: #0d6f78;
	--eo-teal-soft: #dceff0;
	--eo-gold: #c79a51;
	--eo-coral: #cf6759;
	--eo-muted: #6a6572;
	--eo-line: rgba(17, 20, 27, 0.13);
}

html {
	max-width: 100%;
	overflow-x: hidden;
	overscroll-behavior-x: none;
	scroll-behavior: smooth;
}

body {
	max-width: 100%;
	overflow-x: hidden;
	overscroll-behavior-x: none;
	touch-action: pan-y;
}

.eo-page section {
	scroll-margin-top: 126px;
}

.eo-premium-body {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
	background: var(--eo-paper);
	color: var(--eo-ink);
	touch-action: pan-y;
}

.eo-page,
.eo-page * {
	box-sizing: border-box;
}

.eo-page {
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-x: clip;
	overscroll-behavior-x: none;
	background: var(--eo-paper);
	color: var(--eo-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	touch-action: pan-y;
}

.eo-page a {
	color: inherit;
	text-decoration: none;
}

.eo-page img {
	display: block;
	max-width: 100%;
}

.eo-header {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 72px;
	padding: 12px max(20px, calc((100vw - 1180px) / 2 + 14px)) 12px max(20px, calc((100vw - 1180px) / 2 + 22px));
	border-bottom: 1px solid rgba(17, 20, 27, 0.1);
	background: var(--eo-white);
	box-shadow: 0 18px 46px rgba(17, 20, 27, 0.12);
	transform: translateX(-50%);
	backdrop-filter: blur(18px);
}

.eo-logo-link {
	display: inline-flex;
	align-items: center;
	width: 190px;
}

.eo-logo {
	width: 100%;
	height: auto;
}

.eo-nav {
	display: flex;
	align-items: center;
}

.eo-nav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.eo-nav-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	color: var(--eo-ink);
	font-size: 0.86rem;
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.eo-nav-menu a:hover,
.eo-nav-menu a:focus-visible {
	background: var(--eo-teal-soft);
	color: var(--eo-night);
	transform: translateY(-1px);
}

.eo-nav-menu a.is-current {
	background: rgba(199, 154, 81, 0.18);
	color: var(--eo-night);
	box-shadow: inset 0 0 0 1px rgba(199, 154, 81, 0.42);
}

.eo-nav-menu a.is-cta,
.eo-nav-menu a:last-child {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-nav-menu a.is-cta:hover,
.eo-nav-menu a.is-cta:focus-visible,
.eo-nav-menu a:last-child:hover,
.eo-nav-menu a:last-child:focus-visible {
	background: var(--eo-teal);
	color: var(--eo-white);
}

.eo-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--eo-ink);
}

.eo-hero {
	position: relative;
	min-height: 86svh;
	overflow: hidden;
	background: var(--eo-ink);
}

.eo-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.08) brightness(0.9);
}

.eo-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 20, 27, 0.88) 0%, rgba(17, 20, 27, 0.56) 45%, rgba(17, 20, 27, 0.18) 100%),
		linear-gradient(0deg, rgba(17, 20, 27, 0.48), rgba(17, 20, 27, 0.02) 46%);
}

.eo-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	width: min(1180px, calc(100% - 40px));
	min-height: 86svh;
	margin: 0 auto;
	padding: 136px 0 92px;
	color: var(--eo-white);
}

.eo-kicker {
	margin: 0 0 14px;
	color: var(--eo-gold);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.eo-hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: 5.7rem;
	line-height: 0.94;
	font-weight: 850;
}

.eo-hero-copy {
	max-width: 620px;
	margin: 24px 0 0;
	color: rgba(255, 254, 253, 0.88);
	font-size: 1.2rem;
	line-height: 1.6;
}

.eo-hero-actions,
.eo-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.eo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 850;
}

.eo-button-primary {
	background: var(--eo-gold);
	color: var(--eo-ink);
}

.eo-button-secondary {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.08);
	color: var(--eo-white);
}

.eo-hero-panel {
	position: absolute;
	right: 40px;
	bottom: 28px;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(110px, 1fr));
	width: min(640px, calc(100% - 80px));
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	background: rgba(255, 254, 253, 0.12);
	color: var(--eo-white);
	backdrop-filter: blur(18px);
}

.eo-hero-panel span,
.eo-hero-panel a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.8rem;
	font-weight: 800;
}

.eo-hero-panel span:last-child,
.eo-hero-panel a:last-child {
	border-right: 0;
}

.eo-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: rgba(255, 254, 253, 0.78);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.eo-breadcrumb a {
	color: var(--eo-gold);
}

.eo-breadcrumb span:last-child {
	color: var(--eo-white);
}

.eo-wayfinder {
	position: relative;
	z-index: 4;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto 72px;
	padding-top: 74px;
}

.eo-wayfinder-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	gap: 24px;
	padding-top: 28px;
	border-top: 1px solid var(--eo-line);
}

.eo-wayfinder-heading {
	display: grid;
	align-content: center;
	gap: 10px;
	padding-right: 6px;
}

.eo-wayfinder-heading h2 {
	margin: 0;
	color: var(--eo-night);
	font-size: 1.72rem;
	line-height: 1.08;
	font-weight: 850;
}

.eo-wayfinder-heading p:not(.eo-kicker) {
	margin: 0;
	color: var(--eo-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.eo-wayfinder-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.eo-wayfinder-link {
	display: grid;
	grid-template-rows: 140px 1fr;
	align-content: start;
	min-height: 0;
	overflow: hidden;
	overflow-wrap: anywhere;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 16px 42px rgba(17, 20, 27, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.eo-wayfinder-link:hover,
.eo-wayfinder-link:focus-visible {
	border-color: rgba(13, 111, 120, 0.45);
	box-shadow: 0 20px 52px rgba(17, 20, 27, 0.1);
	transform: translateY(-2px);
}

.eo-wayfinder-link-media {
	overflow: hidden;
	background: var(--eo-night);
}

.eo-wayfinder-link-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.04) brightness(0.96);
	transition: transform 260ms ease;
}

.eo-wayfinder-link:hover .eo-wayfinder-link-media img,
.eo-wayfinder-link:focus-visible .eo-wayfinder-link-media img {
	transform: scale(1.04);
}

.eo-wayfinder-link-copy {
	display: grid;
	align-content: start;
	gap: 7px;
	padding: 14px;
}

.eo-wayfinder-eyebrow {
	color: var(--eo-gold);
	font-size: 0.64rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.eo-wayfinder-link strong {
	color: var(--eo-night);
	font-size: 1rem;
	line-height: 1.08;
}

.eo-wayfinder-link small {
	color: var(--eo-muted);
	font-size: 0.76rem;
	font-weight: 750;
	line-height: 1.35;
}

.eo-wayfinder-link--quote {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-wayfinder-link--quote .eo-wayfinder-link-copy {
	background: var(--eo-night);
}

.eo-wayfinder-link--quote .eo-wayfinder-eyebrow,
.eo-wayfinder-link--quote strong,
.eo-wayfinder-link--quote small {
	color: var(--eo-white);
}

.eo-intro,
.eo-event-types,
.eo-tiers,
.eo-gallery-section,
.eo-proof,
.eo-testimonials,
.eo-social,
.eo-services,
.eo-logistics,
.eo-process,
.eo-inquiry,
.eo-faq {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 96px 0;
}

.eo-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
	gap: 72px;
	align-items: end;
	padding-top: 112px;
	padding-bottom: 48px;
}

.eo-event-types.eo-immediate-cards,
.eo-immediate-gallery {
	padding-top: 42px;
}

.eo-event-types.eo-immediate-cards,
.eo-immediate-gallery,
.eo-experience-gallery.eo-immediate-gallery,
.eo-salon-gallery.eo-immediate-gallery,
.eo-menu-gallery.eo-immediate-gallery,
.eo-legacy-gallery.eo-immediate-gallery {
	border-top: 0;
}

.eo-immediate-cards + .eo-intro,
.eo-immediate-gallery + .eo-experience-intro,
.eo-immediate-gallery + .eo-salon-video-feature,
.eo-immediate-gallery + .eo-menu-intro,
.eo-immediate-gallery + .eo-legacy-feature,
.eo-immediate-gallery + .eo-legacy-section {
	padding-top: 48px;
}

.eo-immediate-gallery .eo-section-heading {
	max-width: 760px;
}

.eo-immediate-gallery .eo-section-heading h2 {
	font-size: 2.35rem;
	line-height: 1.08;
}

.eo-immediate-gallery .eo-gallery-grid {
	margin-top: 24px;
}

.eo-section-heading h2 {
	max-width: 820px;
	margin: 0;
	color: var(--eo-ink);
	font-size: 3rem;
	line-height: 1.05;
	font-weight: 850;
}

.eo-intro-copy p,
.eo-event-card p,
.eo-catering-content p,
.eo-process-grid p,
.eo-service-card p,
.eo-tier-card p,
.eo-social-copy p,
.eo-proof-card p,
.eo-testimonial-card blockquote,
.eo-logistics-card p,
.eo-inquiry-copy p,
.eo-testimonial-feature blockquote,
.eo-faq-list p {
	margin: 0;
	color: var(--eo-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.eo-page .eo-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.eo-page .eo-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.eo-page .eo-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.eo-intro-copy {
	display: grid;
	gap: 26px;
	padding-bottom: 6px;
}

.eo-intro-promise {
	display: grid;
	gap: 10px;
}

.eo-intro-promise span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 46px;
	padding-left: 22px;
	border-bottom: 1px solid var(--eo-line);
	color: var(--eo-night);
	font-size: 0.9rem;
	font-weight: 850;
}

.eo-intro-promise span::before {
	position: absolute;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--eo-gold);
	content: "";
}

.eo-feature-row {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2px;
}

.eo-feature {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: rgba(255, 254, 253, 0.64);
	color: var(--eo-night);
	font-size: 0.78rem;
	font-weight: 850;
}

.eo-event-types {
	padding-top: 72px;
	padding-bottom: 72px;
	border-top: 1px solid var(--eo-line);
}

.eo-event-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 36px;
}

.eo-event-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 60px rgba(17, 20, 27, 0.07);
}

.eo-event-card-media {
	display: grid;
	grid-template-rows: 250px auto;
	background: var(--eo-night);
}

.eo-event-card-media img,
.eo-testimonial-feature img,
.eo-inquiry-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.06) contrast(1.04);
}

.eo-event-card-copy {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.eo-event-card h3 {
	margin: 0;
	color: var(--eo-night);
	font-size: 1.25rem;
	line-height: 1.16;
}

.eo-event-card span {
	color: var(--eo-gold);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-event-card:hover .eo-event-card-media img {
	transform: scale(1.035);
}

.eo-event-card-media img {
	transition: transform 260ms ease;
}

.eo-photo-placeholder {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 100%;
	padding: 28px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(13, 111, 120, 0.1), rgba(199, 154, 81, 0.18)),
		repeating-linear-gradient(135deg, rgba(17, 20, 27, 0.08) 0 1px, transparent 1px 14px),
		var(--eo-white);
	color: var(--eo-night);
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}

.eo-tiers {
	padding-top: 56px;
	padding-bottom: 86px;
}

.eo-tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-tier-card {
	display: grid;
	align-content: start;
	min-height: 420px;
	padding: 30px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 70px rgba(17, 20, 27, 0.07);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.eo-tier-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 80px rgba(17, 20, 27, 0.11);
}

.eo-tier-card h3 {
	margin: 18px 0 18px;
	color: var(--eo-night);
	font-size: 1.55rem;
	line-height: 1.08;
}

.eo-tier-card ul {
	display: grid;
	gap: 10px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.eo-tier-card li {
	position: relative;
	padding-left: 22px;
	color: var(--eo-ink);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
}

.eo-tier-card li::before {
	position: absolute;
	top: 0.64em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--eo-gold);
	content: "";
}

.eo-tier-card a {
	align-self: end;
	justify-self: start;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--eo-teal);
	border-radius: 8px;
	color: var(--eo-teal);
	font-size: 0.85rem;
	font-weight: 850;
}

.eo-tier-card:nth-child(3) {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-tier-card:nth-child(3) h3,
.eo-tier-card:nth-child(3) li,
.eo-tier-card:nth-child(3) p {
	color: var(--eo-white);
}

.eo-tier-card:nth-child(3) .eo-tier-boundary {
	border-top-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 254, 253, 0.76);
}

.eo-tier-card:nth-child(3) a {
	border-color: var(--eo-gold);
	background: var(--eo-gold);
	color: var(--eo-ink);
}

.eo-tier-boundary {
	margin: 0 0 22px;
	padding-top: 18px;
	border-top: 1px solid var(--eo-line);
	font-size: 0.92rem;
}

.eo-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 34px 0 24px;
}

.eo-gallery-section {
	padding-top: 86px;
	border-top: 1px solid var(--eo-line);
}

.eo-filter-bar button {
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	color: var(--eo-muted);
	font-weight: 850;
	cursor: pointer;
}

.eo-filter-bar button.is-active {
	border-color: var(--eo-teal);
	background: var(--eo-teal);
	color: var(--eo-white);
}

.eo-gallery-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.eo-gallery-item {
	position: relative;
	min-height: 290px;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: var(--eo-ink);
}

.eo-gallery-trigger {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: zoom-in;
	text-align: left;
}

.eo-gallery-trigger:focus-visible {
	outline: 3px solid var(--eo-gold);
	outline-offset: -6px;
}

.eo-gallery-large {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 594px;
}

.eo-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.06);
	transition: transform 360ms ease, filter 360ms ease;
}

.eo-gallery-item:hover img {
	transform: scale(1.035);
	filter: saturate(1.16) contrast(1.08);
}

.eo-gallery-item figcaption {
	position: absolute;
	right: 14px;
	bottom: 14px;
	left: 14px;
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 8px;
	background: rgba(17, 20, 27, 0.66);
	color: var(--eo-white);
	backdrop-filter: blur(14px);
	pointer-events: none;
}

.eo-gallery-item figcaption span {
	color: var(--eo-gold);
	font-size: 0.7rem;
	font-weight: 850;
	text-transform: uppercase;
}

.eo-gallery-item figcaption strong {
	font-size: 1rem;
}

.eo-gallery-item[hidden] {
	display: none;
}

.eo-gallery-curated {
	display: block;
	columns: 2 420px;
	column-gap: 18px;
}

.eo-gallery-curated .eo-gallery-item,
.eo-gallery-curated .eo-gallery-large {
	display: block;
	min-height: 0;
	margin: 0 0 18px;
	break-inside: avoid;
	background: var(--eo-white);
	box-shadow: 0 20px 54px rgba(17, 20, 27, 0.1);
}

.eo-gallery-curated .eo-gallery-trigger {
	overflow: hidden;
	border-radius: 8px;
}

.eo-gallery-curated .eo-gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.eo-gallery-curated .eo-gallery-item:hover img {
	transform: none;
	filter: saturate(1.08) contrast(1.06);
}

.eo-gallery-curated .eo-gallery-item figcaption {
	display: none;
}

.eo-gallery-item.is-placeholder {
	background: var(--eo-white);
}

.eo-gallery-item.is-placeholder .eo-photo-placeholder {
	min-height: 100%;
}

body.eo-lightbox-open {
	overflow: hidden;
	touch-action: none;
}

body.eo-lightbox-open .eo-page {
	touch-action: none;
}

.eo-lightbox[hidden] {
	display: none;
}

.eo-lightbox {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: block;
	padding: 0;
	background: #05080e;
	color: var(--eo-white);
	isolation: isolate;
	opacity: 0;
	transition: opacity 180ms ease;
}

.eo-lightbox.is-open {
	opacity: 1;
}

.eo-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 8, 14, 0.95) 0%, rgba(5, 8, 14, 0.46) 24%, rgba(5, 8, 14, 0.9) 100%),
		radial-gradient(circle at 50% 12%, rgba(201, 164, 91, 0.13), transparent 42%);
}

.eo-lightbox-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100svh;
	height: 100dvh;
	margin: 0;
	overflow: hidden;
	background: transparent;
}

.eo-lightbox-dialog:focus {
	outline: none;
}

.eo-lightbox-toolbar {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	min-height: 74px;
	padding: calc(env(safe-area-inset-top) + 14px) calc(env(safe-area-inset-right) + 18px) 18px calc(env(safe-area-inset-left) + 18px);
	background: linear-gradient(180deg, rgba(5, 8, 14, 0.92), rgba(5, 8, 14, 0));
	pointer-events: none;
}

.eo-lightbox-meta {
	display: grid;
	gap: 5px;
	min-width: 0;
	pointer-events: none;
}

.eo-lightbox-meta span {
	color: var(--eo-gold);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.eo-lightbox-meta strong {
	max-width: min(58vw, 820px);
	overflow: hidden;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eo-lightbox-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex: 0 0 auto;
	pointer-events: auto;
}

.eo-lightbox-actions [data-eo-lightbox-count] {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 2px 0 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
	font-weight: 800;
	white-space: nowrap;
}

.eo-lightbox-zoom {
	width: 38px;
	height: 38px;
	font-size: 1.2rem;
	font-weight: 900;
}

.eo-lightbox button {
	box-sizing: border-box;
	display: inline-grid;
	place-items: center;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(5, 8, 14, 0.5);
	color: var(--eo-white);
	cursor: pointer;
	line-height: 1;
	backdrop-filter: blur(14px);
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.eo-lightbox button:hover,
.eo-lightbox button:focus-visible {
	border-color: rgba(201, 164, 91, 0.72);
	background: rgba(201, 164, 91, 0.2);
	outline: none;
	transform: translateY(-1px);
}

.eo-lightbox-close {
	width: 42px;
	height: 42px;
	font-size: 1.24rem;
	font-weight: 800;
}

.eo-lightbox-stage {
	box-sizing: border-box;
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	min-height: 0;
	padding: calc(env(safe-area-inset-top) + 76px) clamp(10px, 2vw, 24px) calc(env(safe-area-inset-bottom) + 16px);
	overflow: hidden;
	cursor: grab;
	overscroll-behavior: contain;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
}

.eo-lightbox-stage.is-dragging {
	cursor: grabbing;
}

.eo-lightbox.is-zoomed .eo-lightbox-stage {
	cursor: move;
}

.eo-lightbox-stage img {
	display: block;
	max-width: calc(100vw - clamp(20px, 4vw, 48px));
	max-height: calc(100svh - 102px);
	max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 102px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 3px;
	box-shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
	cursor: inherit;
	pointer-events: none;
	transition: transform 180ms ease;
	user-select: none;
	-webkit-user-drag: none;
}

.eo-lightbox-stage.is-dragging img {
	transition: none;
}

@keyframes eo-lightbox-slide-next {
	from {
		opacity: 0.65;
		transform: translateX(22px) scale(0.992);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes eo-lightbox-slide-prev {
	from {
		opacity: 0.65;
		transform: translateX(-22px) scale(0.992);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

.eo-lightbox.is-sliding-next .eo-lightbox-stage img {
	animation: eo-lightbox-slide-next 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.eo-lightbox.is-sliding-prev .eo-lightbox-stage img {
	animation: eo-lightbox-slide-prev 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.eo-lightbox-nav {
	display: none;
}

@media (max-width: 760px) {
	.eo-lightbox-toolbar {
		align-items: flex-start;
		gap: 10px;
		min-height: 56px;
		padding: calc(env(safe-area-inset-top) + 8px) calc(env(safe-area-inset-right) + 10px) 12px calc(env(safe-area-inset-left) + 10px);
	}

	.eo-lightbox-meta span {
		font-size: 0.6rem;
	}

	.eo-lightbox-meta strong {
		max-width: 56vw;
		font-size: 0.82rem;
	}

	.eo-lightbox-actions {
		gap: 8px;
	}

	.eo-lightbox-actions [data-eo-lightbox-count] {
		min-height: 30px;
		padding: 0 2px 0 6px;
		font-size: 0.8rem;
	}

	.eo-lightbox-close {
		width: 40px;
		height: 40px;
	}

	.eo-lightbox-zoom {
		width: 38px;
		height: 38px;
		font-size: 1.12rem;
	}

	.eo-lightbox-stage {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding: calc(env(safe-area-inset-top) + 68px) calc(env(safe-area-inset-right) + 10px) calc(env(safe-area-inset-bottom) + 18px) calc(env(safe-area-inset-left) + 10px);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		touch-action: none;
	}

	.eo-lightbox-stage img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		border-radius: 0;
		box-shadow: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eo-lightbox-stage img {
		transition: none;
	}

	.eo-lightbox.is-sliding-next .eo-lightbox-stage img,
	.eo-lightbox.is-sliding-prev .eo-lightbox-stage img {
		animation: none;
	}
}

.eo-menu-hero {
	position: relative;
	min-height: 74svh;
	overflow: hidden;
	background: var(--eo-ink);
}

.eo-menu-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.06) brightness(0.84);
}

.eo-menu-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 20, 27, 0.9), rgba(17, 20, 27, 0.58) 48%, rgba(17, 20, 27, 0.18)),
		linear-gradient(0deg, rgba(17, 20, 27, 0.56), rgba(17, 20, 27, 0.04) 52%);
}

.eo-menu-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	width: min(1180px, calc(100% - 40px));
	min-height: 74svh;
	margin: 0 auto;
	padding: 136px 0 84px;
	color: var(--eo-white);
}

.eo-menu-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: 4.7rem;
	line-height: 0.98;
	font-weight: 850;
}

.eo-menu-hero p:not(.eo-kicker) {
	max-width: 620px;
	margin: 22px 0 0;
	color: rgba(255, 254, 253, 0.86);
	font-size: 1.12rem;
	line-height: 1.62;
}

.eo-menu-intro,
.eo-menu-modes,
.eo-menu-gallery,
.eo-menu-cta {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 90px 0;
}

.eo-menu-intro {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.eo-menu-intro article {
	min-height: 214px;
	padding: 28px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	color: var(--eo-ink);
}

.eo-menu-intro h2 {
	margin: 0 0 14px;
	color: var(--eo-night);
	font-size: 1.35rem;
}

.eo-menu-page .eo-menu-intro h2 {
	color: var(--eo-night);
}

.eo-menu-intro p {
	margin: 0;
	color: #4f4a57;
	line-height: 1.62;
}

.eo-menu-page .eo-menu-intro p {
	color: #4f4a57;
}

.eo-menu-modes {
	padding-top: 34px;
	border-top: 1px solid var(--eo-line);
}

.eo-menu-mode-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-menu-mode-card {
	display: grid;
	align-content: start;
	min-height: 330px;
	padding: 26px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 64px rgba(17, 20, 27, 0.07);
}

.eo-menu-mode-card h3 {
	margin: 0 0 14px;
	color: var(--eo-night);
	font-size: 1.28rem;
	line-height: 1.16;
}

.eo-menu-mode-card p {
	margin: 0;
	color: #4f4a57;
	line-height: 1.65;
}

.eo-menu-mode-card ul {
	display: grid;
	gap: 8px;
	margin: 24px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--eo-line);
	list-style: none;
}

.eo-menu-mode-card li {
	position: relative;
	padding-left: 20px;
	color: var(--eo-ink);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.4;
}

.eo-menu-mode-card li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--eo-coral);
	content: "";
}

.eo-menu-gallery {
	padding-top: 84px;
	border-top: 1px solid var(--eo-line);
}

.eo-menu-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 48px;
	padding: 40px;
	border-radius: 8px;
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-menu-cta h2 {
	max-width: 720px;
	margin: 0;
	font-size: 2.2rem;
	line-height: 1.08;
}

.eo-menu-cta .eo-button-secondary {
	border-color: rgba(255, 255, 255, 0.36);
}

.eo-salon-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 74svh;
	overflow: hidden;
	background: var(--eo-ink);
	color: var(--eo-white);
}

.eo-salon-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.06) brightness(0.84);
}

.eo-salon-hero::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(17, 20, 27, 0.88), rgba(17, 20, 27, 0.56) 46%, rgba(17, 20, 27, 0.16)),
		linear-gradient(0deg, rgba(17, 20, 27, 0.64), rgba(17, 20, 27, 0.04) 56%);
	content: "";
	pointer-events: none;
}

.eo-salon-video-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(280px, 420px);
	gap: 44px;
	align-items: center;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 72px 0 36px;
}

.eo-salon-video-feature .eo-section-heading {
	max-width: 620px;
}

.eo-salon-video-copy p:not(.eo-kicker) {
	max-width: 560px;
	margin: 18px 0 0;
	color: var(--eo-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.eo-salon-video-points {
	display: grid;
	gap: 10px;
	max-width: 520px;
	margin-top: 28px;
}

.eo-salon-video-points span {
	min-height: 42px;
	padding: 11px 14px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	color: var(--eo-night);
	font-size: 0.92rem;
	font-weight: 850;
}

.eo-salon-video-shell {
	justify-self: center;
	width: min(100%, 420px);
	padding: 10px;
	border: 1px solid rgba(199, 154, 81, 0.28);
	border-radius: 8px;
	background: var(--eo-ink);
	box-shadow: 0 28px 76px rgba(17, 20, 27, 0.18);
}

.eo-salon-video {
	display: block;
	width: 100%;
	max-height: min(74svh, 720px);
	aspect-ratio: 9 / 16;
	border-radius: 6px;
	background: var(--eo-ink);
	object-fit: contain;
	filter: saturate(1.08) contrast(1.08) brightness(0.94);
}

.eo-salon-hero-copy {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: end;
	width: min(1180px, calc(100% - 40px));
	min-height: 74svh;
	margin: 0 auto;
	padding: 138px 0 82px;
}

.eo-salon-hero-copy h1 {
	max-width: 850px;
	margin: 0;
	font-size: 4.85rem;
	line-height: 0.98;
	font-weight: 850;
}

.eo-salon-hero-copy p:not(.eo-kicker) {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(255, 254, 253, 0.86);
	font-size: 1.15rem;
	line-height: 1.65;
}

.eo-salon-proof {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: min(1180px, calc(100% - 40px));
	margin: 28px auto 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 28px 76px rgba(17, 20, 27, 0.16);
	overflow: hidden;
}

.eo-salon-proof div {
	display: grid;
	gap: 8px;
	padding: 24px;
	border-right: 1px solid var(--eo-line);
}

.eo-salon-proof div:last-child {
	border-right: 0;
}

.eo-salon-proof strong {
	color: var(--eo-night);
	font-size: 1rem;
}

.eo-salon-proof span {
	color: var(--eo-muted);
	font-size: 0.92rem;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.eo-salon-intro,
.eo-salon-gallery,
.eo-salon-options,
.eo-salon-logistics {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 96px 0;
}

.eo-salon-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
	gap: 72px;
	align-items: end;
	padding-top: 112px;
	padding-bottom: 48px;
}

.eo-salon-intro-copy {
	display: grid;
	gap: 20px;
}

.eo-salon-intro-copy p,
.eo-salon-option-card p,
.eo-salon-capacity-note p {
	margin: 0;
	color: var(--eo-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.eo-salon-gallery,
.eo-salon-options,
.eo-salon-logistics {
	border-top: 1px solid var(--eo-line);
}

.eo-salon-gallery .eo-gallery-grid,
.eo-salon-option-grid {
	margin-top: 36px;
}

.eo-salon-option-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.eo-salon-option-card {
	display: grid;
	align-content: start;
	min-height: 420px;
	padding: 34px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 70px rgba(17, 20, 27, 0.07);
}

.eo-salon-option-card:nth-child(1) {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-salon-option-card h3 {
	margin: 0 0 18px;
	color: var(--eo-night);
	font-size: 2rem;
	line-height: 1.05;
}

.eo-salon-option-card:nth-child(1) h3,
.eo-salon-option-card:nth-child(1) p,
.eo-salon-option-card:nth-child(1) .eo-salon-capacity,
.eo-salon-option-card:nth-child(1) li {
	color: var(--eo-white);
}

.eo-salon-capacity {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-height: 42px;
	margin: 0 0 18px;
	padding: 0 14px;
	border: 1px solid rgba(199, 154, 81, 0.46);
	border-radius: 8px;
	background: rgba(199, 154, 81, 0.14);
	color: var(--eo-night);
	font-size: 0.95rem;
	font-weight: 900;
}

.eo-salon-option-card ul {
	display: grid;
	gap: 12px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.eo-salon-option-card li {
	position: relative;
	padding-left: 24px;
	color: var(--eo-ink);
	font-size: 0.96rem;
	font-weight: 750;
	line-height: 1.5;
}

.eo-salon-option-card li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--eo-gold);
	content: "";
}

.eo-salon-capacity-note {
	display: grid;
	gap: 10px;
	margin-top: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(13, 111, 120, 0.24);
	border-radius: 8px;
	background: var(--eo-teal-soft);
}

.eo-salon-capacity-note strong {
	color: var(--eo-night);
	font-size: 1rem;
}

.eo-experience-hero {
	position: relative;
	min-height: 74svh;
	overflow: hidden;
	background: var(--eo-ink);
	color: var(--eo-white);
}

.eo-experience-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.04) brightness(0.96);
}

.eo-experience-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 20, 27, 0.74), rgba(17, 20, 27, 0.42) 34%, rgba(17, 20, 27, 0.08) 64%),
		linear-gradient(0deg, rgba(17, 20, 27, 0.48), rgba(17, 20, 27, 0.03) 58%);
}

.eo-experience-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	width: min(1180px, calc(100% - 40px));
	min-height: 74svh;
	margin: 0 auto;
	padding: 132px 0 96px;
}

.eo-experience-hero h1 {
	max-width: 560px;
	margin: 0;
	color: var(--eo-white);
	font-size: 3.08rem;
	line-height: 1.05;
	font-weight: 850;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.eo-experience-hero-content p:not(.eo-kicker) {
	max-width: 470px;
	margin: 18px 0 0;
	color: rgba(255, 254, 253, 0.88);
	font-size: 1rem;
	line-height: 1.5;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.44);
}

.eo-experience-proof {
	position: absolute;
	z-index: 3;
	right: max(20px, calc((100vw - 1180px) / 2));
	bottom: 34px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	max-width: 520px;
}

.eo-experience-proof span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	background: rgba(17, 20, 27, 0.5);
	color: var(--eo-white);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.eo-experience-intro,
.eo-experience-gallery,
.eo-experience-services,
.eo-experience-more {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 92px 0;
}

.eo-experience-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
	gap: 72px;
	align-items: end;
}

.eo-experience-intro-copy {
	display: grid;
	gap: 20px;
}

.eo-experience-intro-copy p {
	margin: 0;
	color: var(--eo-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.eo-experience-gallery,
.eo-experience-services,
.eo-experience-more {
	border-top: 1px solid var(--eo-line);
}

.eo-experience-gallery .eo-gallery-grid {
	margin-top: 36px;
}

.eo-experience-photo-gallery {
	width: min(1320px, calc(100% - 40px));
}

.eo-page .eo-experience-photo-gallery.eo-reveal {
	opacity: 1;
	transform: none;
}

.eo-page .eo-immediate-gallery.eo-reveal,
.eo-page .eo-immediate-cards.eo-reveal {
	opacity: 1;
	transform: none;
}

.eo-experience-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 36px;
}

.eo-experience-service-grid div {
	min-height: 172px;
	padding: 24px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 64px rgba(17, 20, 27, 0.06);
}

.eo-experience-service-grid span {
	display: block;
	width: 38px;
	height: 3px;
	margin-bottom: 34px;
	border-radius: 999px;
	background: var(--eo-coral);
}

.eo-experience-service-grid strong {
	color: var(--eo-night);
	font-size: 1.06rem;
	line-height: 1.25;
}

.eo-experience-more-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-top: 36px;
}

.eo-experience-more-grid a {
	display: grid;
	grid-template-rows: 150px 1fr;
	min-height: 0;
	overflow: hidden;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	color: var(--eo-ink);
	box-shadow: 0 20px 54px rgba(17, 20, 27, 0.08);
}

.eo-experience-more-media {
	overflow: hidden;
	background: var(--eo-ink);
}

.eo-experience-more-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.06) contrast(1.04) brightness(0.96);
	transition: transform 260ms ease;
}

.eo-experience-more-grid a:hover img {
	transform: scale(1.04);
}

.eo-experience-more-copy {
	display: grid;
	align-content: start;
	gap: 6px;
	padding: 14px;
}

.eo-experience-more-copy span {
	color: var(--eo-gold);
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.eo-experience-more-grid strong {
	color: var(--eo-night);
	font-size: 1rem;
	line-height: 1.15;
}

.eo-experience-more-copy small {
	color: var(--eo-teal);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.eo-proof {
	display: grid;
	grid-template-columns: 0.76fr 1.24fr;
	gap: 48px;
	align-items: start;
	padding-top: 84px;
	padding-bottom: 48px;
	border-top: 1px solid var(--eo-line);
}

.eo-proof-story {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: 14px;
}

.eo-proof-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.eo-proof-card {
	min-height: 196px;
	padding: 24px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-proof-card strong {
	display: block;
	margin-bottom: 28px;
	color: var(--eo-coral);
	font-size: 0.86rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-proof-card h3,
.eo-logistics-card h3 {
	margin: 0 0 12px;
	color: var(--eo-night);
	font-size: 1.18rem;
	line-height: 1.18;
}

.eo-testimonials {
	padding-top: 36px;
	padding-bottom: 72px;
}

.eo-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-testimonial-card {
	display: grid;
	align-content: space-between;
	min-height: 230px;
	margin: 0;
	padding: 28px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 60px rgba(17, 20, 27, 0.08);
}

.eo-testimonial-card blockquote {
	margin: 0;
	color: var(--eo-ink);
	font-size: 1.28rem;
	line-height: 1.35;
	font-weight: 850;
}

.eo-testimonial-card figcaption {
	display: grid;
	gap: 4px;
	margin-top: 32px;
	color: var(--eo-muted);
	font-size: 0.86rem;
}

.eo-testimonial-card figcaption strong {
	color: var(--eo-night);
	font-size: 0.96rem;
}

.eo-proof-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.eo-proof-links a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: #fbfaf7;
	color: var(--eo-teal);
	font-size: 0.84rem;
	font-weight: 850;
}

.eo-testimonial-feature {
	display: grid;
	min-height: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 26px 72px rgba(17, 20, 27, 0.09);
}

.eo-testimonial-feature img {
	height: 360px;
}

.eo-testimonial-feature figcaption {
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 30px;
}

.eo-testimonial-feature blockquote {
	color: var(--eo-ink);
	font-size: 1.48rem;
	line-height: 1.32;
	font-weight: 850;
}

.eo-testimonial-feature span {
	color: var(--eo-muted);
	font-size: 0.88rem;
	font-weight: 800;
}

.eo-social {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 42px;
	align-items: center;
	padding-top: 84px;
	padding-bottom: 86px;
	border-top: 1px solid var(--eo-line);
}

.eo-social-copy h2 {
	margin: 0;
	color: var(--eo-ink);
	font-size: 3rem;
	line-height: 1.04;
	font-weight: 850;
}

.eo-social-copy p {
	margin-top: 22px;
}

.eo-social-copy a {
	color: var(--eo-teal);
	font-weight: 850;
}

.eo-social-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.eo-social-actions .eo-button-primary {
	color: var(--eo-ink);
}

.eo-social-actions .eo-button-secondary {
	border-color: var(--eo-line);
	background: var(--eo-white);
	color: var(--eo-ink);
}

.eo-social-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.eo-social-card {
	position: relative;
	min-height: 210px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--eo-ink);
	box-shadow: 0 24px 60px rgba(17, 20, 27, 0.08);
}

.eo-social-card-large {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 432px;
}

.eo-social-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.05);
	transition: transform 360ms ease, filter 360ms ease;
}

.eo-social-card:hover img {
	transform: scale(1.035);
	filter: saturate(1.16) contrast(1.08);
}

.eo-social-card span {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(255, 254, 253, 0.9);
	color: var(--eo-night);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-services {
	padding-top: 86px;
	padding-bottom: 48px;
	border-top: 1px solid var(--eo-line);
}

.eo-services .eo-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
	gap: 32px;
	align-items: end;
}

.eo-services .eo-section-heading::after {
	display: block;
	max-width: 300px;
	color: var(--eo-muted);
	font-size: 0.96rem;
	font-weight: 650;
	line-height: 1.7;
	content: "Una sola coordinación permite que salón, comida y decoración se sientan como parte del mismo evento.";
}

.eo-service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-service-card {
	display: grid;
	align-content: space-between;
	min-height: 260px;
	padding: 28px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-service-card::before {
	display: block;
	width: 42px;
	height: 3px;
	margin-bottom: 34px;
	border-radius: 999px;
	background: var(--eo-coral);
	content: "";
}

.eo-service-card h3,
.eo-process-grid h3 {
	margin: 0 0 14px;
	color: var(--eo-night);
	font-size: 1.4rem;
	line-height: 1.18;
}

.eo-logistics {
	padding-top: 48px;
	padding-bottom: 96px;
}

.eo-logistics-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-logistics-card {
	min-height: 232px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-logistics-card h3 {
	color: var(--eo-white);
}

.eo-logistics-card p {
	color: rgba(255, 254, 253, 0.72);
}

.eo-catering {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 0;
	margin: 0;
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-catering-media {
	min-height: 620px;
}

.eo-catering-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.08);
}

.eo-catering-content {
	display: grid;
	align-content: center;
	padding: 72px;
}

.eo-catering-content h2 {
	max-width: 540px;
	margin: 0;
	color: var(--eo-white);
	font-size: 3rem;
	line-height: 1.04;
}

.eo-catering-content p {
	max-width: 560px;
	margin-top: 22px;
	color: rgba(255, 254, 253, 0.78);
}

.eo-menu-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 28px;
}

.eo-menu-list span {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--eo-white);
	font-weight: 800;
}

.eo-catering .eo-button-primary {
	justify-self: start;
	margin-top: 30px;
}

.eo-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.eo-process-grid > div {
	min-height: 260px;
	padding: 28px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-process-grid span {
	display: block;
	margin-bottom: 36px;
	color: var(--eo-coral);
	font-size: 0.82rem;
	font-weight: 900;
}

.eo-inquiry {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 34px;
	align-items: start;
	padding-top: 110px;
	padding-bottom: 110px;
	border-top: 1px solid var(--eo-line);
}

.eo-inquiry-premium {
	grid-template-columns: 0.72fr 0.82fr 1.16fr;
	gap: 18px;
	align-items: stretch;
}

.eo-inquiry-media {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--eo-ink);
	color: var(--eo-white);
	box-shadow: 0 30px 80px rgba(17, 20, 27, 0.12);
}

.eo-inquiry-media img {
	position: absolute;
	inset: 0;
	filter: saturate(1.08) contrast(1.06) brightness(0.88);
}

.eo-inquiry-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 20, 27, 0.02), rgba(17, 20, 27, 0.7));
	content: "";
}

.eo-inquiry-media > div {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	background: rgba(17, 20, 27, 0.52);
	backdrop-filter: blur(14px);
}

.eo-inquiry-media strong {
	color: var(--eo-gold);
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-inquiry-media a {
	color: var(--eo-white);
	font-size: 1.05rem;
	font-weight: 900;
}

.eo-inquiry-premium .eo-inquiry-copy {
	position: static;
	display: grid;
	align-content: center;
	padding: 30px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-inquiry-premium .eo-inquiry-form {
	box-shadow: 0 30px 88px rgba(17, 20, 27, 0.12);
}

.eo-inquiry-copy {
	position: sticky;
	top: 130px;
}

.eo-inquiry-copy h2 {
	margin: 0;
	color: var(--eo-ink);
	font-size: 3rem;
	line-height: 1.04;
}

.eo-inquiry-copy p {
	margin-top: 22px;
}

.eo-inquiry-steps {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.eo-inquiry-steps span {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	color: var(--eo-night);
	font-weight: 850;
}

.eo-inquiry-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	padding: 24px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 30px 80px rgba(17, 20, 27, 0.1);
}

.eo-inquiry-form label,
.eo-inquiry-form fieldset {
	display: grid;
	gap: 8px;
	margin: 0;
	color: var(--eo-night);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-inquiry-form input,
.eo-inquiry-form select,
.eo-inquiry-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: #fbfaf7;
	color: var(--eo-ink);
	font: inherit;
	font-size: 0.98rem;
	font-weight: 650;
	text-transform: none;
}

.eo-inquiry-form textarea {
	min-height: 118px;
	padding-top: 14px;
	resize: vertical;
}

.eo-inquiry-form input[type="date"] {
	color-scheme: light;
	cursor: pointer;
}

.eo-inquiry-form input[type="date"]::-webkit-calendar-picker-indicator {
	width: 22px;
	height: 22px;
	padding: 4px;
	border-radius: 6px;
	background-color: rgba(10, 122, 122, 0.12);
	cursor: pointer;
}

.eo-date-field {
	align-content: start;
}

.eo-field-hint {
	color: var(--eo-muted);
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.35;
	text-transform: none;
}

.eo-inquiry-form fieldset,
.eo-form-full,
.eo-inquiry-form button,
.eo-form-note {
	grid-column: 1 / -1;
}

.eo-inquiry-form fieldset {
	grid-template-columns: repeat(2, 1fr);
	padding: 16px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
}

.eo-inquiry-form legend {
	grid-column: 1 / -1;
	padding: 0 8px;
	color: var(--eo-night);
}

.eo-inquiry-form fieldset label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	font-size: 0.85rem;
	text-transform: none;
}

.eo-inquiry-form fieldset input {
	width: 18px;
	min-height: 18px;
}

.eo-form-note {
	margin: 0;
	color: var(--eo-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.eo-form-note a {
	color: var(--eo-teal);
	font-weight: 850;
}

.eo-faq {
	padding-top: 30px;
}

.eo-faq-list {
	display: grid;
	gap: 10px;
	margin-top: 36px;
}

.eo-faq-list details {
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
}

.eo-faq-list summary {
	cursor: pointer;
	padding: 22px 24px;
	color: var(--eo-night);
	font-size: 1.05rem;
	font-weight: 850;
}

.eo-faq-list p {
	padding: 0 24px 24px;
}

.eo-legacy-hero .eo-experience-hero-shade {
	background:
		linear-gradient(90deg, rgba(5, 8, 14, 0.92), rgba(5, 8, 14, 0.72) 42%, rgba(5, 8, 14, 0.48)),
		linear-gradient(0deg, rgba(5, 8, 14, 0.82), rgba(5, 8, 14, 0.28) 58%);
}

.eo-legacy-hero .eo-experience-hero-image {
	filter: saturate(1.04) contrast(1.08) brightness(0.46);
}

.eo-legacy-page--reservacion .eo-experience-hero-shade,
.eo-legacy-page--contacto .eo-experience-hero-shade {
	background:
		linear-gradient(90deg, rgba(5, 8, 14, 0.88), rgba(5, 8, 14, 0.64) 46%, rgba(5, 8, 14, 0.24)),
		linear-gradient(0deg, rgba(5, 8, 14, 0.78), rgba(5, 8, 14, 0.12) 60%);
}

.eo-legacy-page--reservacion .eo-experience-hero-image,
.eo-legacy-page--contacto .eo-experience-hero-image {
	filter: saturate(1.06) contrast(1.08) brightness(0.7);
}

.eo-legacy-section,
.eo-legacy-feature,
.eo-legacy-location {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 92px 0;
	border-top: 1px solid var(--eo-line);
}

.eo-legacy-section .eo-section-heading,
.eo-legacy-feature .eo-section-heading,
.eo-legacy-location > div:first-child {
	display: grid;
	gap: 16px;
	max-width: 820px;
}

.eo-legacy-section .eo-section-heading p:not(.eo-kicker),
.eo-legacy-feature .eo-section-heading p:not(.eo-kicker),
.eo-legacy-location p {
	margin: 0;
	color: var(--eo-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.eo-legacy-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
	margin-top: 36px;
}

.eo-legacy-card {
	display: grid;
	align-content: start;
	min-height: 260px;
	padding: 28px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 64px rgba(17, 20, 27, 0.07);
}

.eo-legacy-card span {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-height: 34px;
	margin-bottom: 30px;
	padding: 0 12px;
	border: 1px solid rgba(199, 154, 81, 0.34);
	border-radius: 8px;
	background: rgba(199, 154, 81, 0.12);
	color: var(--eo-night);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eo-legacy-card h3 {
	margin: 0 0 12px;
	color: var(--eo-night);
	font-size: 1.42rem;
	line-height: 1.1;
}

.eo-legacy-card p {
	margin: 0;
	color: var(--eo-muted);
	font-size: 0.96rem;
	line-height: 1.68;
}

.eo-legacy-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 410px);
	gap: 44px;
	align-items: center;
	padding-top: 76px;
}

.eo-legacy-video-shell {
	justify-self: center;
	width: min(100%, 410px);
	padding: 10px;
	border: 1px solid rgba(199, 154, 81, 0.28);
	border-radius: 8px;
	background: var(--eo-ink);
	box-shadow: 0 28px 76px rgba(17, 20, 27, 0.18);
}

.eo-legacy-gallery .eo-filter-bar {
	margin-bottom: 30px;
}

.eo-legacy-gallery .eo-gallery-curated {
	columns: 3 320px;
}

.eo-legacy-gallery .eo-gallery-curated .eo-gallery-item {
	background: var(--eo-ink);
}

.eo-legacy-gallery .eo-gallery-curated .eo-gallery-trigger {
	position: relative;
}

.eo-legacy-gallery .eo-gallery-curated .eo-gallery-item figcaption {
	display: grid;
}

.eo-legacy-location {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
	gap: 24px;
	align-items: stretch;
}

.eo-legacy-location h2 {
	margin: 0;
	color: var(--eo-ink);
	font-size: 2.8rem;
	line-height: 1.04;
}

.eo-legacy-contact-strip {
	display: grid;
	gap: 10px;
	padding: 24px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: var(--eo-white);
	box-shadow: 0 24px 64px rgba(17, 20, 27, 0.07);
}

.eo-legacy-contact-strip a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	color: var(--eo-night);
	font-weight: 850;
	overflow-wrap: anywhere;
}

.eo-legacy-contact-strip a:first-child {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-final-cta p:not(.eo-kicker) {
	max-width: 640px;
	margin: 18px 0 0;
	color: rgba(255, 254, 253, 0.76);
	font-size: 1rem;
	line-height: 1.7;
}

.eo-final-cta {
	position: relative;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 40px;
	align-items: center;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto 96px;
	padding: 28px;
	border-radius: 8px;
	background: var(--eo-ink);
	color: var(--eo-white);
}

.eo-final-cta img {
	width: 100%;
	height: 420px;
	border-radius: 8px;
	object-fit: cover;
}

.eo-final-cta h2 {
	max-width: 720px;
	margin: 0;
	color: var(--eo-white);
	font-size: 3rem;
	line-height: 1.04;
}

.eo-final-cta .eo-button-secondary {
	background: transparent;
}

.eo-footer {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: start;
	gap: 20px;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 28px 0 42px;
	border-top: 1px solid var(--eo-line);
	color: var(--eo-muted);
	font-size: 0.9rem;
}

.eo-footer p {
	margin: 0;
	font-weight: 900;
	color: var(--eo-ink);
}

.eo-footer > div {
	display: grid;
	gap: 8px;
}

.eo-footer span {
	max-width: 360px;
	line-height: 1.55;
}

.eo-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.eo-footer nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--eo-line);
	border-radius: 8px;
	background: rgba(255, 254, 253, 0.64);
	color: var(--eo-ink);
	font-weight: 800;
}

.eo-footer nav a:first-child {
	background: var(--eo-night);
	color: var(--eo-white);
}

.eo-footer div {
	display: grid;
	gap: 16px;
}

@media (max-width: 1040px) {
	.eo-header {
		width: 100%;
		padding-right: 14px;
		padding-left: 18px;
	}

	.eo-logo-link {
		width: 172px;
	}

	.eo-nav-toggle {
		display: block;
	}

	.eo-nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		width: 100%;
		max-height: calc(100svh - 64px);
		overflow-y: auto;
		padding: 12px 14px 16px;
		border-top: 1px solid var(--eo-line);
		background: var(--eo-white);
		box-shadow: 0 22px 50px rgba(17, 20, 27, 0.14);
		backdrop-filter: blur(18px);
	}

	.eo-header.is-open .eo-nav-menu {
		display: grid;
	}

	.eo-nav-menu a {
		justify-content: space-between;
		min-height: 48px;
		border-radius: 8px;
	}

	.eo-wayfinder-inner {
		grid-template-columns: 1fr;
	}

	.eo-wayfinder-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.eo-hero h1 {
		font-size: 4.3rem;
		max-width: 620px;
	}

		.eo-salon-hero-copy h1 {
			max-width: 720px;
			font-size: 4rem;
		}

		.eo-salon-video-feature {
			grid-template-columns: 1fr;
			gap: 28px;
		}

		.eo-salon-video-shell {
			width: min(100%, 390px);
		}

		.eo-experience-hero h1 {
			max-width: 720px;
			font-size: 4rem;
		}

		.eo-experience-intro,
		.eo-experience-service-grid {
			grid-template-columns: 1fr;
		}

		.eo-experience-more-grid {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}

	.eo-hero-panel {
		left: 20px;
		right: 20px;
		width: auto;
	}

	.eo-intro,
	.eo-salon-intro,
	.eo-catering,
	.eo-final-cta,
	.eo-proof,
	.eo-proof-story,
	.eo-social,
	.eo-legacy-feature,
	.eo-legacy-location,
	.eo-inquiry,
	.eo-inquiry-premium {
		grid-template-columns: 1fr;
	}

	.eo-feature-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.eo-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.eo-service-grid,
	.eo-process-grid,
	.eo-tier-grid,
	.eo-salon-option-grid,
	.eo-testimonial-grid,
	.eo-logistics-grid {
		grid-template-columns: 1fr;
	}

	.eo-salon-proof {
		grid-template-columns: 1fr;
	}

	.eo-salon-proof div {
		border-right: 0;
		border-bottom: 1px solid var(--eo-line);
	}

	.eo-salon-proof div:last-child {
		border-bottom: 0;
	}

	.eo-proof-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.eo-social-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.eo-inquiry-copy {
		position: static;
	}

		.eo-catering-content {
			padding: 54px 40px;
		}

		.eo-menu-hero h1 {
			max-width: 640px;
			font-size: 3.9rem;
		}

		.eo-menu-intro {
			grid-template-columns: 1fr;
		}

		.eo-menu-mode-grid,
		.eo-process-grid {
			grid-template-columns: repeat(2, 1fr);
		}

		.eo-menu-cta {
			display: grid;
			padding: 34px;
		}

		.eo-inquiry-media {
			min-height: 380px;
		}

	.eo-footer {
		grid-template-columns: 1fr;
	}

	.eo-footer nav {
		justify-content: flex-start;
	}
}

@media (max-width: 680px) {
	.eo-header {
		min-height: 64px;
		padding-left: 14px;
	}

	.eo-logo-link {
		width: 150px;
	}

	.eo-breadcrumb {
		margin-bottom: 12px;
		font-size: 0.66rem;
	}

	.eo-wayfinder {
		width: min(100% - 28px, 520px);
		margin-top: -18px;
		padding-bottom: 10px;
	}

	.eo-wayfinder-inner {
		gap: 14px;
		padding: 14px;
	}

	.eo-wayfinder-heading {
		padding: 2px;
	}

	.eo-wayfinder-heading h2 {
		font-size: 1.18rem;
	}

	.eo-wayfinder-heading p:not(.eo-kicker) {
		font-size: 0.84rem;
		line-height: 1.45;
	}

	.eo-wayfinder-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.eo-wayfinder-link {
		min-height: 0;
		padding: 12px;
	}

		.eo-hero {
			min-height: calc(100svh - 64px);
		}

		.eo-menu-hero {
			min-height: 78svh;
		}

		.eo-hero-image {
			inset: -28% 0 auto 0;
			height: 132%;
			object-position: 52% 78%;
	}

		.eo-hero-content {
			align-content: end;
			min-height: calc(100svh - 64px);
		width: min(100% - 28px, 520px);
		padding-top: max(286px, 44svh);
			padding-bottom: 78px;
		}

		.eo-menu-hero-content {
			align-content: end;
			width: min(100% - 28px, 520px);
			min-height: 78svh;
			padding-top: 168px;
			padding-bottom: 62px;
		}

		.eo-menu-hero-image {
			object-position: 48% center;
		}

		.eo-hero-shade {
			background:
				linear-gradient(180deg, rgba(17, 20, 27, 0.02) 20%, rgba(17, 20, 27, 0.24) 52%, rgba(17, 20, 27, 0.82) 100%),
				linear-gradient(90deg, rgba(17, 20, 27, 0.24), rgba(17, 20, 27, 0.04) 64%);
		}

		.eo-menu-hero-shade {
			background:
				linear-gradient(180deg, rgba(17, 20, 27, 0.12) 8%, rgba(17, 20, 27, 0.38) 48%, rgba(17, 20, 27, 0.9) 100%),
				linear-gradient(90deg, rgba(17, 20, 27, 0.38), rgba(17, 20, 27, 0.08) 68%);
		}

		.eo-hero .eo-kicker {
			margin-bottom: 10px;
			text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
		}

		.eo-menu-hero h1 {
			max-width: 22rem;
			font-size: 2.56rem;
			line-height: 1.02;
			text-wrap: balance;
		}

		.eo-menu-hero p:not(.eo-kicker) {
			max-width: 22rem;
			margin-top: 14px;
			font-size: 0.98rem;
			line-height: 1.48;
			text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
		}

		.eo-hero h1 {
			position: absolute;
			width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

		.eo-salon-hero {
			min-height: 68svh;
		}

	.eo-salon-hero::after {
		background:
			linear-gradient(180deg, rgba(17, 20, 27, 0.12) 8%, rgba(17, 20, 27, 0.48) 52%, rgba(17, 20, 27, 0.92) 100%),
			linear-gradient(90deg, rgba(17, 20, 27, 0.32), rgba(17, 20, 27, 0.08) 68%);
	}

		.eo-salon-video {
			max-height: min(68svh, 620px);
		}

		.eo-salon-hero-copy {
			align-content: end;
			width: min(100% - 28px, 520px);
			min-height: 68svh;
			padding-top: 154px;
			padding-bottom: 58px;
		}

	.eo-salon-hero-copy h1 {
		position: static;
		width: auto;
		height: auto;
		max-width: 23rem;
		margin: 0;
		overflow: visible;
		clip: auto;
		color: var(--eo-white);
		font-size: 2.45rem;
		line-height: 1.02;
		white-space: normal;
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
	}

	.eo-salon-hero-copy p:not(.eo-kicker) {
		max-width: 23rem;
		margin-top: 14px;
		font-size: 0.98rem;
		line-height: 1.48;
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
	}

	.eo-salon-hero-copy .eo-hero-actions {
		grid-template-columns: 1fr;
		max-width: 23rem;
	}

		.eo-salon-hero-copy .eo-button {
			width: 100%;
		}

		.eo-salon-video-feature {
			width: min(100% - 28px, 520px);
			padding-top: 42px;
			padding-bottom: 24px;
		}

		.eo-salon-video-shell {
			width: min(100%, 340px);
			padding: 8px;
		}

			.eo-experience-hero {
				min-height: 72svh;
			}

			.eo-experience-hero-content {
				align-content: end;
				width: min(100% - 28px, 520px);
				min-height: 72svh;
				padding-top: 154px;
				padding-bottom: 106px;
			}

			.eo-experience-hero h1 {
				max-width: 20rem;
				font-size: 1.86rem;
				line-height: 1.08;
				text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
			}

			.eo-experience-hero-content p:not(.eo-kicker) {
				max-width: 20rem;
				margin-top: 12px;
				font-size: 0.9rem;
				line-height: 1.42;
				text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
			}

		.eo-experience-proof {
			right: 14px;
			bottom: 18px;
			left: 14px;
			justify-content: flex-start;
			max-width: none;
		}

		.eo-experience-proof span {
			min-height: 30px;
			padding: 0 9px;
			font-size: 0.66rem;
		}

		.eo-experience-intro,
		.eo-experience-gallery,
		.eo-experience-services,
		.eo-experience-more {
			width: min(100% - 28px, 520px);
			padding: 54px 0;
		}

		.eo-gallery-curated {
			columns: 1;
			column-gap: 0;
		}

		.eo-experience-more-grid {
			grid-template-columns: 1fr;
		}

		.eo-experience-more-grid a {
			min-height: 180px;
		}

	.eo-hero-copy {
		max-width: 23rem;
		margin-top: 0;
		font-size: 0.98rem;
		line-height: 1.46;
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
	}

		.eo-hero-actions {
			display: grid;
			grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
			gap: 8px;
			margin-top: 18px;
		}

	.eo-cta-actions {
		display: grid;
	}

	.eo-button {
		min-height: 44px;
		padding: 0 14px;
		font-size: 0.78rem;
	}

		.eo-hero-actions .eo-button-primary {
			width: 100%;
		}

		.eo-hero-actions .eo-button-secondary {
			width: 100%;
		}

	.eo-cta-actions .eo-button {
		width: 100%;
	}

	.eo-hero-panel {
		right: 14px;
		bottom: 16px;
		left: 14px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
		width: auto;
		border: 0;
		background: transparent;
		backdrop-filter: none;
	}

	.eo-hero-panel span:nth-child(2) {
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}

	.eo-hero-panel span,
	.eo-hero-panel a {
		flex: 0 1 auto;
		min-height: 28px;
		padding: 0 9px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 8px;
		background: rgba(17, 20, 27, 0.44);
		font-size: 0.66rem;
		letter-spacing: 0;
	}

	.eo-hero-panel span:last-child,
	.eo-hero-panel a:last-child {
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}

	.eo-intro,
	.eo-event-types,
	.eo-tiers,
	.eo-gallery-section,
	.eo-legacy-section,
	.eo-legacy-feature,
	.eo-legacy-location,
	.eo-salon-intro,
	.eo-salon-gallery,
	.eo-salon-options,
	.eo-salon-logistics,
	.eo-proof,
	.eo-testimonials,
	.eo-social,
	.eo-services,
	.eo-logistics,
	.eo-process,
	.eo-inquiry,
		.eo-faq {
			width: min(100% - 28px, 520px);
			padding: 64px 0;
		}

		.eo-legacy-section,
		.eo-legacy-feature,
		.eo-legacy-location {
			width: min(100% - 28px, 520px);
			padding: 56px 0;
		}

		.eo-legacy-feature {
			gap: 26px;
		}

		.eo-legacy-video-shell {
			width: min(100%, 340px);
			padding: 8px;
		}

		.eo-legacy-card {
			min-height: auto;
			padding: 22px;
		}

		.eo-legacy-location h2 {
			font-size: 2.15rem;
		}

		.eo-legacy-gallery .eo-gallery-curated {
			columns: 1;
		}

		.eo-salon-proof {
			width: min(100% - 28px, 520px);
			margin-top: -20px;
		}

		.eo-salon-proof div,
		.eo-salon-option-card,
		.eo-salon-capacity-note {
			padding: 22px;
		}

		.eo-salon-option-card {
			min-height: auto;
		}

		.eo-salon-option-card h3 {
			font-size: 1.6rem;
		}

		.eo-menu-intro,
		.eo-menu-modes,
		.eo-menu-gallery,
		.eo-menu-cta {
			width: min(100% - 28px, 520px);
			padding: 58px 0;
		}

		.eo-menu-intro article {
			min-height: auto;
			padding: 22px;
		}

		.eo-menu-mode-grid {
			grid-template-columns: 1fr;
		}

		.eo-menu-mode-card {
			min-height: auto;
			padding: 22px;
		}

		.eo-menu-cta {
			margin-bottom: 40px;
			padding: 28px 22px;
		}

		.eo-menu-cta h2 {
			font-size: 2rem;
		}

		.eo-section-heading h2,
		.eo-social-copy h2,
	.eo-inquiry-copy h2,
	.eo-catering-content h2,
	.eo-final-cta h2 {
		font-size: 2.15rem;
	}

		.eo-feature-row,
		.eo-event-grid,
		.eo-process-grid,
		.eo-menu-list,
		.eo-proof-grid,
		.eo-testimonial-grid,
	.eo-inquiry-form,
	.eo-inquiry-form fieldset {
		grid-template-columns: 1fr;
	}

	.eo-services .eo-section-heading {
		grid-template-columns: 1fr;
	}

	.eo-services .eo-section-heading::after {
		max-width: none;
	}

	.eo-tier-card,
	.eo-event-card,
	.eo-service-card,
	.eo-logistics-card,
	.eo-testimonial-card,
	.eo-proof-card,
	.eo-process-grid > div {
		min-height: auto;
	}

	.eo-tier-card,
	.eo-service-card,
	.eo-testimonial-card {
		padding: 24px;
	}

		.eo-event-card-media {
			grid-template-rows: 220px auto;
		}

		.eo-event-card-copy {
			padding: 20px;
		}

	.eo-gallery-grid,
	.eo-social-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.eo-social-card {
		grid-column: auto;
		grid-row: auto;
		min-height: 168px;
	}

	.eo-social-card-large {
		grid-column: span 2;
		grid-row: auto;
		min-height: 300px;
	}

	.eo-feature {
		min-height: 54px;
	}

	.eo-gallery-large {
		grid-column: span 2;
		grid-row: auto;
		min-height: 320px;
	}

	.eo-gallery-item {
		min-height: 210px;
	}

	.eo-gallery-curated .eo-gallery-item,
	.eo-gallery-curated .eo-gallery-large {
		min-height: 0;
		margin-bottom: 12px;
	}

			.eo-gallery-item figcaption {
				right: 8px;
				bottom: 8px;
			left: 8px;
			padding: 10px;
		}

		.eo-gallery-item figcaption strong {
			font-size: 0.82rem;
			line-height: 1.1;
		}

		.eo-gallery-item figcaption span {
			font-size: 0.62rem;
		}

		.eo-social-card span {
			right: 8px;
			bottom: 8px;
			padding: 7px 8px;
			font-size: 0.62rem;
		}

	.eo-catering-media {
		min-height: 380px;
	}

	.eo-catering-content {
		padding: 44px 20px;
	}

	.eo-testimonial-feature img {
		height: 260px;
	}

	.eo-testimonial-feature figcaption,
	.eo-inquiry-premium .eo-inquiry-copy {
		padding: 22px;
	}

	.eo-testimonial-feature blockquote {
		font-size: 1.2rem;
	}

	.eo-inquiry-media {
		min-height: 320px;
	}

	.eo-final-cta {
		width: min(100% - 28px, 520px);
		margin-bottom: 64px;
		padding: 18px;
	}

	.eo-final-cta img {
		height: 310px;
	}

	.eo-footer {
		display: grid;
		width: min(100% - 28px, 520px);
	}

	.eo-footer > div,
	.eo-footer div {
		display: grid;
	}

	.eo-footer nav {
		display: grid;
		grid-template-columns: 1fr;
		justify-content: stretch;
	}
}

@media (max-width: 680px) {
	.eo-wayfinder {
		width: min(100% - 28px, 520px);
		margin: 0 auto 44px;
		padding-top: 44px;
	}

	.eo-wayfinder-inner {
		gap: 16px;
		padding-top: 20px;
	}

	.eo-wayfinder-heading h2 {
		font-size: 1.42rem;
	}

	.eo-wayfinder-grid {
		display: grid;
		grid-auto-columns: minmax(230px, 82%);
		grid-auto-flow: column;
		grid-template-columns: none;
		gap: 12px;
		overflow-x: auto;
		padding-bottom: 12px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.eo-wayfinder-link {
		grid-template-rows: 154px 1fr;
		min-height: 0;
		scroll-snap-align: start;
	}

	.eo-wayfinder-link-copy {
		padding: 14px;
	}

	.eo-event-types.eo-immediate-cards,
	.eo-immediate-gallery {
		padding-top: 30px;
	}

	.eo-immediate-cards + .eo-intro,
	.eo-immediate-gallery + .eo-experience-intro,
	.eo-immediate-gallery + .eo-salon-video-feature,
	.eo-immediate-gallery + .eo-menu-intro,
	.eo-immediate-gallery + .eo-legacy-feature,
	.eo-immediate-gallery + .eo-legacy-section {
		padding-top: 42px;
	}

	.eo-immediate-gallery .eo-section-heading h2 {
		font-size: 1.72rem;
	}

	.eo-immediate-cards .eo-event-grid {
		gap: 24px;
		margin-top: 20px;
	}

	.eo-immediate-cards .eo-event-card-media {
		grid-template-rows: 318px auto;
	}

	.eo-gallery-curated {
		display: grid;
		grid-auto-columns: minmax(270px, 86%);
		grid-auto-flow: column;
		grid-template-columns: none;
		gap: 14px;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 12px;
		columns: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.eo-gallery-curated .eo-gallery-item,
	.eo-gallery-curated .eo-gallery-large {
		display: grid;
		grid-template-rows: auto 1fr;
		min-height: 0;
		margin: 0;
		overflow: hidden;
		border: 1px solid var(--eo-line);
		border-radius: 8px;
		background: var(--eo-white);
		scroll-snap-align: start;
	}

	.eo-gallery-curated .eo-gallery-trigger {
		border-radius: 0;
	}

	.eo-gallery-curated .eo-gallery-item img {
		width: 100%;
		height: 308px;
		object-fit: cover;
	}

	.eo-gallery-curated .eo-gallery-item figcaption {
		position: static;
		display: grid;
		gap: 7px;
		padding: 14px 16px 18px;
		border: 0;
		border-radius: 0;
		background: var(--eo-white);
		color: var(--eo-night);
		backdrop-filter: none;
	}

	.eo-gallery-curated .eo-gallery-item figcaption span {
		color: var(--eo-gold);
		font-size: 0.66rem;
	}

	.eo-gallery-curated .eo-gallery-item figcaption strong {
		color: var(--eo-night);
		font-size: 1rem;
		line-height: 1.15;
	}

	.eo-experience-photo-gallery.eo-immediate-gallery {
		width: min(100% - 20px, 560px);
		padding-top: 16px;
		padding-bottom: 38px;
	}

	.eo-experience-photo-gallery .eo-section-heading {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.eo-experience-photo-gallery .eo-gallery-grid {
		margin-top: 0;
	}

	.eo-experience-photo-gallery .eo-gallery-curated {
		display: block;
		columns: 1;
		column-gap: 0;
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.eo-experience-photo-gallery .eo-gallery-curated .eo-gallery-item,
	.eo-experience-photo-gallery .eo-gallery-curated .eo-gallery-large {
		display: block;
		margin: 0 0 18px;
		overflow: visible;
		border: 0;
		border-radius: 8px;
		background: transparent;
		box-shadow: 0 18px 48px rgba(17, 20, 27, 0.1);
		scroll-snap-align: none;
		break-inside: avoid;
	}

	.eo-experience-photo-gallery .eo-gallery-curated .eo-gallery-trigger {
		overflow: hidden;
		border-radius: 8px;
		background: var(--eo-night);
	}

	.eo-experience-photo-gallery .eo-gallery-curated .eo-gallery-item img {
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.eo-experience-photo-gallery .eo-gallery-curated .eo-gallery-item figcaption {
		display: none;
	}
}
