/**
 * Essy — memorial theme custom CSS.
 *
 * The escape hatch for what theme.json can't express: the timeline rail,
 * the tribute form + wall (rendered by the Essy Tributes plugin), gallery
 * hover, a gentle sticky header, and smooth anchor scrolling.
 *
 * Design tokens are read from the CSS custom properties theme.json emits
 * (--wp--preset--color--*, --wp--preset--spacing--*), so colours stay in
 * one place.
 */

/* ---------------------------------------------------------------- Base */

html {
	scroll-behavior: smooth;
}

/* Anchored sections clear the sticky header when jumped to. */
:where(#watch, #story, #timeline, #gallery, #videos, #tributes, #service, #program, #tribute-form) {
	scroll-margin-top: 84px;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

/* -------------------------------------------------- Announcement bar */

.site-announce {
	letter-spacing: 0.005em;
}
.site-announce a:hover,
.site-announce a:focus {
	color: #FFFFFF !important;
}
/* The primary call-out becomes a gold pill so it stands out on the bar. */
.site-announce a.site-announce__cta {
	display: inline-block;
	background: #F5D6A2;
	color: #1E2A44 !important;
	text-decoration: none !important;
	font-weight: 700;
	padding: 5px 16px;
	border-radius: 999px;
	white-space: nowrap;
	transition: transform 150ms ease, background-color 150ms ease;
}
.site-announce a.site-announce__cta:hover,
.site-announce a.site-announce__cta:focus {
	background: #FFFFFF;
	color: #1E2A44 !important;
	transform: translateY(-1px);
}

/* ------------------------------------------------------- Back to top */

.essy-totop {
	position: fixed;
	right: clamp(16px, 3vw, 28px);
	bottom: clamp(16px, 3vw, 28px);
	z-index: 900;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--wp--preset--color--coral-700);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(166, 65, 90, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 200ms ease, transform 200ms ease, background-color 150ms ease, visibility 200ms;
}
.essy-totop.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.essy-totop:hover {
	background: var(--wp--preset--color--coral-500);
	transform: translateY(-2px);
}
.essy-totop:focus-visible {
	outline: 3px solid var(--wp--preset--color--marigold-500);
	outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
	.essy-totop { transition: opacity 200ms ease, visibility 200ms; }
	.essy-totop:hover { transform: none; }
}

/* -------------------------------------------------------------- Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: saturate(1.1) blur(6px);
	background-color: color-mix(in srgb, var(--wp--preset--color--paper) 88%, transparent) !important;
}

/* Nav links: quiet ink, no underline, warm on hover — not the coral link default. */
.site-header .wp-block-navigation .wp-block-navigation-item__content {
	color: var(--wp--preset--color--ink-700);
	text-decoration: none;
	font-weight: 600;
	transition: color 150ms ease;
}
.site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
.site-header .wp-block-navigation .wp-block-navigation-item__content:focus {
	color: var(--wp--preset--color--coral-700);
}

.site-brand__years {
	padding: 2px 10px;
	border: 1px solid var(--wp--preset--color--coral-200);
	border-radius: 999px;
	white-space: nowrap;
}

/* Mobile menu overlay fix.
   The sticky header's backdrop-filter makes .site-header the containing block
   for the navigation's position:fixed overlay, which trapped the open menu
   inside the small header box (so items overflowed off-screen). Drop the
   filter while the menu is open so the overlay can cover the viewport, and
   left-align the items — the desktop bar is right-justified, which otherwise
   pushes the whole column against the right edge. */
.site-header:has(.wp-block-navigation__responsive-container.is-menu-open) {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open {
	background-color: var(--wp--preset--color--paper);
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	--navigation-layout-justification-setting: flex-start;
	--navigation-layout-justify: flex-start;
	--navigation-layout-align: flex-start;
	width: 100%;
	align-items: flex-start !important;
	justify-content: flex-start !important;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	width: 100%;
	gap: 2px;
	align-items: flex-start !important;
	justify-content: flex-start !important;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-size: 1.2rem;
	padding: 10px 4px;
}

/* ---------------------------------------------------------------- Hero */

.essy-hero__portrait img {
	display: block;
	width: 100%;
	height: auto;
}

/* ------------------------------------------------------------ Timeline */

.essy-timeline {
	position: relative;
	padding-left: 2rem;
}

/* The vertical rail. */
.essy-timeline::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--wp--preset--color--marigold-500),
		var(--wp--preset--color--coral-500),
		var(--wp--preset--color--sage-500)
	);
	border-radius: 2px;
}

.essy-timeline__item {
	position: relative;
}

/* The dot for each milestone. */
.essy-timeline__item::before {
	content: "";
	position: absolute;
	left: -2rem;
	top: 4px;
	width: 12px;
	height: 12px;
	margin-left: 0;
	background: var(--wp--preset--color--paper);
	border: 3px solid var(--wp--preset--color--coral-500);
	border-radius: 50%;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--wp--preset--color--coral-100) 80%, transparent);
}

.essy-timeline__item:last-child {
	padding-bottom: 0 !important;
}

/* ------------------------------------------------------------- Gallery */

.essy-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--3);
}
.essy-gallery__item {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	background: var(--wp--preset--color--cream);
}
.essy-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: 50% 28%;
	cursor: zoom-in;
	transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.essy-gallery__item:hover img {
	transform: scale(1.05);
}
.essy-gallery img:focus-visible {
	outline: 3px solid var(--wp--preset--color--coral-500);
	outline-offset: 3px;
}

/* Preview cap: show the first 12 until "View all" is pressed. */
.essy-gallery--photos.is-paged .essy-gallery__item:nth-child(n+13) {
	display: none;
}
.essy-gallery--photos.is-paged.is-expanded .essy-gallery__item {
	display: block;
}

.essy-gallery-more {
	display: flex;
	justify-content: center;
	margin-top: var(--wp--preset--spacing--7);
}
.essy-morebtn {
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--wp--preset--color--coral-700);
	background: transparent;
	border: 1px solid var(--wp--preset--color--coral-700);
	border-radius: 999px;
	padding: 12px 30px;
	cursor: pointer;
	transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.essy-morebtn:hover {
	background: var(--wp--preset--color--coral-700);
	color: var(--wp--preset--color--paper);
	transform: translateY(-1px);
}
.essy-morebtn:focus-visible {
	outline: 3px solid var(--wp--preset--color--marigold-500);
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.essy-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ------------------------------------------------------------- Videos */

/* Fade the (cream) videos section into the green Tributes section below,
   so the two don't meet at a hard line. The end colour matches the top of
   the Tributes "meadow" gradient. */
.essy-videos-section {
	background-image: linear-gradient(180deg, transparent 58%, #DDECCB 100%) !important;
}

.essy-videos__group { margin-bottom: var(--wp--preset--spacing--8); }
.essy-videos__group:last-child { margin-bottom: 0; }
.essy-videos__label {
	font-family: var(--wp--preset--font-family--vollkorn);
	font-size: 1.375rem;
	color: var(--wp--preset--color--plum-800);
	margin: 0 0 6px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
}
.essy-videos__blurb {
	color: var(--wp--preset--color--ink-600);
	font-size: 0.9375rem;
	margin: 0 0 var(--wp--preset--spacing--5);
}
.essy-videos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--4);
	align-items: stretch;
}
/* Each video is a click-to-open thumbnail in an identical navy frame — three
   to a row, nothing cropped. Clicking opens the video lightbox. */
.essy-video {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1b2540;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(27, 37, 64, 0.18);
	transition: transform 200ms ease;
}
.essy-video:hover { transform: translateY(-3px); }
.essy-video:focus-visible {
	outline: 3px solid var(--wp--preset--color--coral-500);
	outline-offset: 3px;
}
.essy-video__thumb {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	background: #1b2540;
	pointer-events: none;
}
.essy-video__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	border-radius: 999px;
	background: rgba(204, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: transform 150ms ease, background-color 150ms ease;
}
.essy-video__play::before {
	content: "";
	margin-left: 4px;
	border-left: 18px solid #fff;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
}
.essy-video:hover .essy-video__play,
.essy-video:focus-visible .essy-video__play {
	transform: scale(1.08);
	background: #e0322c;
}

/* Per-group preview cap: show the first 6 until "Show all" is pressed. */
.essy-videos.is-paged .essy-video:nth-child(n+7) { display: none; }
.essy-videos.is-paged.is-expanded .essy-video { display: flex; }
.essy-videos-more {
	display: flex;
	justify-content: center;
	margin-top: var(--wp--preset--spacing--5);
}
.essy-videos__soon {
	color: var(--wp--preset--color--ink-500);
	font-style: italic;
	background: var(--wp--preset--color--paper);
	border: 1px dashed var(--wp--preset--color--ink-200);
	border-radius: 14px;
	padding: var(--wp--preset--spacing--5);
	text-align: center;
	margin: 0;
}
@media (max-width: 900px) {
	.essy-videos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.essy-videos { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- Video lightbox */

body.essy-vlightbox-open { overflow: hidden; }
.essy-vlightbox {
	position: fixed;
	inset: 0;
	z-index: 1100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 4vw, 48px);
	background: rgba(14, 20, 36, 0.95);
}
.essy-vlightbox[hidden] { display: none; }
.essy-vlightbox__stage {
	width: min(1100px, 92vw);
	max-height: 84vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.essy-vlightbox__video {
	width: 100%;
	max-height: 84vh;
	border-radius: 12px;
	background: #000;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.essy-vlightbox__yt {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 84vh;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.essy-vlightbox__yt iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.essy-vlightbox__close,
.essy-vlightbox__nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	transition: background-color 150ms ease, transform 150ms ease;
}
.essy-vlightbox__close:hover,
.essy-vlightbox__nav:hover {
	background: var(--wp--preset--color--coral-500);
	transform: scale(1.06);
}
.essy-vlightbox__close:focus-visible,
.essy-vlightbox__nav:focus-visible {
	outline: 3px solid #F5D6A2;
	outline-offset: 2px;
}
.essy-vlightbox__close {
	top: clamp(12px, 3vw, 26px);
	right: clamp(12px, 3vw, 26px);
	width: 46px;
	height: 46px;
	font-size: 30px;
	line-height: 1;
}
.essy-vlightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	font-size: 34px;
	line-height: 1;
}
.essy-vlightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.essy-vlightbox__prev { left: clamp(8px, 2.5vw, 28px); }
.essy-vlightbox__next { right: clamp(8px, 2.5vw, 28px); }
.essy-vlightbox__auto {
	position: absolute;
	top: clamp(12px, 3vw, 26px);
	left: clamp(12px, 3vw, 26px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 0;
	border-radius: 999px;
	padding: 8px 16px;
	cursor: pointer;
	transition: background-color 150ms ease;
}
.essy-vlightbox__auto::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #5fd08a;
}
.essy-vlightbox__auto[aria-pressed="false"]::before { background: #9a938f; }
.essy-vlightbox__auto:hover { background: rgba(255, 255, 255, 0.24); }
.essy-vlightbox__auto:focus-visible { outline: 2px solid #F5D6A2; outline-offset: 2px; }
.essy-vlightbox__counter {
	position: absolute;
	bottom: clamp(10px, 3vw, 24px);
	left: 0;
	right: 0;
	margin: 0;
	text-align: center;
	color: #E9D9E3;
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
}
@media (max-width: 600px) {
	.essy-vlightbox__nav { width: 44px; height: 44px; font-size: 28px; }
}

/* ---------------------------------------------------------- Watch live */

.essy-watch__inner {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}
.essy-watch__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--coral-700);
	margin: 0 0 12px;
}
.essy-watch__title { margin: 0 0 8px; }
.essy-watch__meta {
	color: var(--wp--preset--color--ink-600);
	margin: 0 0 var(--wp--preset--spacing--6);
}
.essy-watch__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0e1424;
	border-radius: 18px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 16px 40px rgba(27, 37, 64, 0.22);
}
.essy-watch__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}
.essy-watch__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 84px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	background: rgba(204, 0, 0, 0.92);
	transition: transform 150ms ease, background-color 150ms ease;
}
.essy-watch__play::before {
	content: "";
	margin-left: 6px;
	border-left: 26px solid #fff;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
}
.essy-watch__player:hover .essy-watch__play {
	transform: scale(1.06);
	background: #e0322c;
}
.essy-watch__play:focus-visible {
	outline: 3px solid #F5D6A2;
	outline-offset: 3px;
}
.essy-watch__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.essy-watch__fs {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(14, 20, 36, 0.62);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity 150ms ease, background-color 150ms ease;
}
.essy-watch__fs:hover,
.essy-watch__fs:focus-visible {
	opacity: 1;
	background: rgba(14, 20, 36, 0.9);
}
.essy-watch__player:fullscreen {
	border-radius: 0;
	aspect-ratio: auto;
}
.essy-watch__player:fullscreen .essy-watch__iframe {
	width: 100%;
	height: 100%;
}
.essy-watch__btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--wp--preset--spacing--5);
}
.essy-watch__btns .essy-live-btn {
	padding: 11px 26px;
	font-size: 0.9375rem;
}

/* ----------------------------------------------------------- Slideshow */

.essy-gallery-actions {
	display: flex;
	justify-content: center;
	margin-bottom: var(--wp--preset--spacing--8);
}
.essy-slideshow-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wp--preset--color--paper);
	background: var(--wp--preset--color--coral-700);
	border: 1px solid var(--wp--preset--color--coral-700);
	border-radius: 999px;
	padding: 12px 28px;
	cursor: pointer;
	transition: background-color 150ms ease, transform 150ms ease;
}
.essy-slideshow-btn::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 11px solid currentColor;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}
.essy-slideshow-btn:hover {
	background: var(--wp--preset--color--coral-500);
	border-color: var(--wp--preset--color--coral-500);
	transform: translateY(-1px);
}
.essy-slideshow-btn:focus-visible {
	outline: 3px solid var(--wp--preset--color--marigold-500);
	outline-offset: 2px;
}

body.essy-slideshow-open { overflow: hidden; }

.essy-slideshow {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: #0e1424;
	overflow: hidden;
}
.essy-slideshow[hidden] { display: none; }
.essy-slideshow__stage { position: absolute; inset: 0; }
.essy-slideshow__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 1200ms ease;
}
.essy-slideshow__img.is-in { opacity: 1; }

.essy-slideshow__bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px clamp(16px, 4vw, 44px);
	background: linear-gradient(180deg, rgba(14, 20, 36, 0) 0%, rgba(14, 20, 36, 0.78) 100%);
	color: #F3E6DC;
	transition: opacity 400ms ease;
}
.essy-slideshow__name {
	font-family: var(--wp--preset--font-family--vollkorn);
	font-style: italic;
	font-size: 1.125rem;
}
.essy-slideshow__count {
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
	color: #C9D2E4;
	min-width: 64px;
	text-align: right;
}
.essy-slideshow__controls { display: flex; gap: 10px; }
.essy-slideshow__controls button {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 150ms ease, transform 150ms ease;
}
.essy-slideshow__controls button:hover {
	background: var(--wp--preset--color--coral-500);
	transform: scale(1.06);
}
.essy-slideshow__controls button:focus-visible {
	outline: 2px solid #F5D6A2;
	outline-offset: 2px;
}

/* Projector mode: after a few idle seconds, fade the bar and hide the cursor. */
.essy-slideshow.is-idle { cursor: none; }
.essy-slideshow.is-idle .essy-slideshow__bar { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
	.essy-slideshow__img { transition: opacity 300ms ease; }
}

/* ------------------------------------------------------------ Lightbox */

body.essy-lightbox-open {
	overflow: hidden;
}

.essy-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 4vw, 48px);
	background: color-mix(in srgb, var(--wp--preset--color--plum-800) 92%, #000);
	background: rgba(40, 26, 38, 0.94);
	animation: essy-fade-in 200ms ease both;
}
.essy-lightbox[hidden] {
	display: none;
}

.essy-lightbox__stage {
	margin: 0;
	max-width: min(1100px, 92vw);
	max-height: 88vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.essy-lightbox__img {
	max-width: 100%;
	max-height: 78vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
	background: var(--wp--preset--color--paper);
	opacity: 0;
	transform: scale(0.985);
	transition: opacity 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.essy-lightbox__img.is-in {
	opacity: 1;
	transform: none;
}
.essy-lightbox__caption {
	color: #F3E6DC;
	font-family: var(--wp--preset--font-family--vollkorn);
	font-style: italic;
	font-size: 1.0625rem;
	text-align: center;
	max-width: 46ch;
	margin: 0;
}
.essy-lightbox__counter {
	position: absolute;
	bottom: clamp(12px, 3vw, 28px);
	left: 0;
	right: 0;
	margin: 0;
	text-align: center;
	color: #E9D9E3;
	font-family: var(--wp--preset--font-family--manrope);
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
}

/* Controls — soft circular buttons. */
.essy-lightbox__close,
.essy-lightbox__nav {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	color: var(--wp--preset--color--ink-900);
	background: color-mix(in srgb, var(--wp--preset--color--paper) 90%, transparent);
	border-radius: 999px;
	transition: background-color 150ms ease, transform 150ms ease, color 150ms ease;
}
.essy-lightbox__close:hover,
.essy-lightbox__nav:hover {
	background: var(--wp--preset--color--coral-500);
	color: var(--wp--preset--color--paper);
	transform: scale(1.06);
}
.essy-lightbox__close:focus-visible,
.essy-lightbox__nav:focus-visible {
	outline: 3px solid var(--wp--preset--color--marigold-500);
	outline-offset: 2px;
}
.essy-lightbox__close {
	top: clamp(12px, 3vw, 26px);
	right: clamp(12px, 3vw, 26px);
	width: 46px;
	height: 46px;
	font-size: 30px;
	line-height: 1;
}
.essy-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	font-size: 34px;
	line-height: 1;
}
.essy-lightbox__nav:hover {
	transform: translateY(-50%) scale(1.06);
}
.essy-lightbox__prev { left: clamp(8px, 2.5vw, 28px); }
.essy-lightbox__next { right: clamp(8px, 2.5vw, 28px); }

@keyframes essy-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.essy-lightbox { animation: none; }
	.essy-lightbox__img {
		transition: none;
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 600px) {
	.essy-lightbox__nav {
		width: 44px;
		height: 44px;
		font-size: 28px;
	}
	.essy-lightbox__img { max-height: 68vh; }
}

/* ----------------------------------------------------- Order of service */

.essy-program {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--wp--preset--color--ink-200);
	counter-reset: essy-prog;
}
.essy-program__row {
	display: grid;
	grid-template-columns: 2.25rem 1fr;
	gap: var(--wp--preset--spacing--4);
	padding: 15px 4px;
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
	align-items: baseline;
}
.essy-program--numbered .essy-program__row {
	counter-increment: essy-prog;
}
.essy-program--numbered .essy-program__row::before {
	content: counter(essy-prog);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--wp--preset--color--coral-700);
	font-variant-numeric: tabular-nums;
	line-height: 1.45;
}
.essy-program__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.essy-program__title {
	font-size: 1.0625rem;
	line-height: 1.45;
	color: var(--wp--preset--color--ink-900);
}
.essy-program__by {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--sage-600);
}
.essy-program__subhead {
	color: var(--wp--preset--color--plum-800);
}
/* Once the funeral has passed (body.essy-post-funeral), the day-specific
   sections are gone, so hide their now-dangling nav links too. */
.essy-post-funeral .essy-nav-dayspecific {
	display: none;
}

/* --------------------------------------------------- Hymns (sing along) */

.essy-hymns {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.essy-hymn {
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 14px;
	background: var(--wp--preset--color--cream);
	overflow: hidden;
}
.essy-hymn[open] {
	border-color: var(--wp--preset--color--coral-200);
}
.essy-hymn__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 16px 20px;
	font-family: var(--wp--preset--font-family--vollkorn), Georgia, serif;
}
.essy-hymn__summary::-webkit-details-marker { display: none; }
.essy-hymn__name {
	font-size: 1.1875rem;
	font-weight: 600;
	color: var(--wp--preset--color--plum-800);
}
.essy-hymn__credit {
	font-family: var(--wp--preset--font-family--manrope), system-ui, sans-serif;
	font-size: 0.8125rem;
	color: var(--wp--preset--color--ink-600);
}
.essy-hymn__chev {
	margin-left: auto;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--wp--preset--color--coral-700);
	border-bottom: 2px solid var(--wp--preset--color--coral-700);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex: none;
	align-self: center;
}
.essy-hymn[open] .essy-hymn__chev { transform: rotate(-135deg); }
.essy-hymn__body {
	padding: 4px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.essy-hymn__stanza {
	display: grid;
	grid-template-columns: 1.75rem 1fr;
	gap: 10px;
}
.essy-hymn__label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--coral-700);
	padding-top: 2px;
}
/* The "Refrain" label is too long for the number gutter — stack it above,
   indented to line up with the verse text. */
.essy-hymn__stanza--refrain {
	display: block;
	padding-left: calc(1.75rem + 10px);
}
.essy-hymn__stanza--refrain .essy-hymn__label {
	display: inline-block;
	margin-bottom: 4px;
	padding-top: 0;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.essy-hymn__stanza--refrain .essy-hymn__lines { font-style: italic; }
.essy-hymn__lines {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-900);
}

/* ------------------------------------------------ Songs for Essie embeds */

.essy-songs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--wp--preset--spacing--6);
}
.essy-song {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.essy-song__embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(30, 42, 68, 0.16);
	background: #000;
}
.essy-song__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.essy-song__cap {
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: center;
}
.essy-song__title {
	font-family: var(--wp--preset--font-family--vollkorn), Georgia, serif;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--wp--preset--color--plum-800);
	line-height: 1.3;
}
.essy-song__credit {
	font-size: 0.875rem;
	color: var(--wp--preset--color--ink-600);
}

/* ----------------------------------------------------------- Eulogy */

.essy-eulogy {
	border-top: 1px solid var(--wp--preset--color--ink-200);
	padding-top: var(--wp--preset--spacing--7);
}
.essy-eulogy__p {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--wp--preset--color--ink-900);
	margin: 0 0 1.35em;
}
.essy-eulogy__p:first-child::first-letter {
	font-family: var(--wp--preset--font-family--vollkorn), Georgia, serif;
	font-size: 3.1rem;
	line-height: 0.8;
	float: left;
	margin: 0.08em 0.12em 0 0;
	color: var(--wp--preset--color--coral-700);
}
.essy-eulogy__p--farewell {
	font-style: italic;
	color: var(--wp--preset--color--plum-800);
}
.essy-eulogy__p--farewell:last-child {
	font-family: var(--wp--preset--font-family--vollkorn), Georgia, serif;
	font-style: normal;
	font-size: 1.25rem;
	text-align: center;
	color: var(--wp--preset--color--coral-700);
	margin-top: var(--wp--preset--spacing--6);
}

@media (max-width: 600px) {
	.essy-hymn__stanza { grid-template-columns: 1.4rem 1fr; gap: 8px; }
	.essy-hymn__stanza--refrain { padding-left: calc(1.4rem + 8px); }
	.essy-hymn__summary { padding: 14px 16px; flex-wrap: wrap; }
	.essy-hymn__credit { width: 100%; }
}

/* ------------------------------------------------------ Detail lists */

.essy-detail-list li {
	line-height: 1.6;
}
.essy-detail-list li strong {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wp--preset--color--coral-700);
	margin-bottom: 2px;
}

.essy-card { height: 100%; }

/* --------------------------------------------------- Service events */

.essy-events {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--wp--preset--spacing--4);
}
.essy-event {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--wp--preset--color--cream);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 18px;
	padding: var(--wp--preset--spacing--6);
}
.essy-event__kind {
	font-family: var(--wp--preset--font-family--vollkorn);
	font-size: 1.25rem;
	color: var(--wp--preset--color--plum-800);
	margin: 0 0 4px;
}
.essy-event__venue {
	font-weight: 700;
	color: var(--wp--preset--color--ink-900);
	margin: 0;
}
.essy-event__addr {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-700);
	margin: 0;
}
.essy-event__date {
	font-weight: 700;
	color: var(--wp--preset--color--coral-700);
	margin: 8px 0 0;
}
.essy-event__time {
	color: var(--wp--preset--color--ink-700);
	margin: 0;
}
.essy-event__note {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--sage-600);
	margin: 4px 0 0;
}
.essy-event__dir {
	margin-top: auto;
	padding-top: 14px;
	font-size: 0.9375rem;
	font-weight: 600;
}
.essy-event__live {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--wp--preset--color--ink-200);
}
.essy-event__live-label {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-700);
	margin-bottom: 9px;
}
.essy-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e0322c;
	animation: essy-live-pulse 1.8s ease-out infinite;
}
@keyframes essy-live-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(224, 50, 44, 0.55); }
	70%  { box-shadow: 0 0 0 8px rgba(224, 50, 44, 0); }
	100% { box-shadow: 0 0 0 0 rgba(224, 50, 44, 0); }
}
.essy-event__live-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.essy-live-btn {
	display: inline-flex;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 7px 18px;
	transition: transform 150ms ease, filter 150ms ease;
}
.essy-live-btn:hover,
.essy-live-btn:focus {
	color: #fff;
	transform: translateY(-1px);
	filter: brightness(1.08);
}
.essy-live-btn--yt { background: #cc0000; }
.essy-live-btn--fb { background: #1877f2; }

@media (prefers-reduced-motion: reduce) {
	.essy-live-dot { animation: none; }
}

.essy-give {
	display: grid;
	gap: 10px;
}
.essy-give__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 12px;
	padding: 12px 18px;
}
.essy-give__label {
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--wp--preset--color--coral-700);
}
.essy-give__val {
	font-weight: 600;
	color: var(--wp--preset--color--ink-900);
}

@media (max-width: 781px) {
	.essy-events { grid-template-columns: 1fr; }
}

/* ---------------------------------------- Tribute form (plugin output) */

.essy-tribute-form {
	display: grid;
	gap: var(--wp--preset--spacing--4);
}
.essy-tribute-form .essy-field {
	display: grid;
	gap: 6px;
}
.essy-tribute-form label {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink-600);
}
.essy-tribute-form .essy-input,
.essy-tribute-form .essy-textarea {
	width: 100%;
	font: inherit;
	font-size: 1rem;
	color: var(--wp--preset--color--ink-900);
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 12px;
	padding: 12px 14px;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}
.essy-tribute-form .essy-textarea {
	min-height: 130px;
	resize: vertical;
	line-height: 1.6;
}
.essy-tribute-form .essy-input:focus,
.essy-tribute-form .essy-textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--coral-500);
	box-shadow: 0 0 0 3px var(--wp--preset--color--coral-100);
}
/* Honeypot — hidden from people, visible to bots. */
.essy-tribute-form .essy-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.essy-tribute-form .essy-submit {
	justify-self: start;
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--wp--preset--color--paper);
	background: var(--wp--preset--color--coral-700);
	border: 1px solid var(--wp--preset--color--coral-700);
	border-radius: 999px;
	padding: 12px 28px;
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.essy-tribute-form .essy-submit:hover {
	background: var(--wp--preset--color--coral-500);
	border-color: var(--wp--preset--color--coral-500);
	transform: translateY(-1px);
}
.essy-tribute-form .essy-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--wp--preset--color--ink-600);
	line-height: 1.5;
}
.essy-tribute-form .essy-consent input { margin-top: 3px; }

/* Notices (success / error) */
.essy-notice {
	border-radius: 14px;
	padding: 16px 18px;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: var(--wp--preset--spacing--4);
}
.essy-notice--ok {
	background: var(--wp--preset--color--sage-100);
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--sage-500) 40%, transparent);
	color: var(--wp--preset--color--ink-900);
}
.essy-notice--err {
	background: var(--wp--preset--color--coral-100);
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--coral-500) 40%, transparent);
	color: var(--wp--preset--color--ink-900);
}

/* ---------------------------------------- Tribute wall (plugin output) */

/* Masonry: cards pack by height, so short and long tributes both sit neatly. */
.essy-tributes {
	columns: 3 260px;
	column-gap: var(--wp--preset--spacing--4);
}
@media (max-width: 900px) { .essy-tributes { columns: 2 240px; } }
@media (max-width: 560px) { .essy-tributes { columns: 1; } }

.essy-tribute {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	margin: 0 0 var(--wp--preset--spacing--4);
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 18px;
	padding: var(--wp--preset--spacing--6);
	box-shadow: 0 6px 20px rgba(50, 32, 25, 0.06);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Preview cap: first 9 until "Show all". */
.essy-tributes.is-paged .essy-tribute:nth-child(n+10) { display: none; }
.essy-tributes.is-paged.is-expanded .essy-tribute { display: flex; }
.essy-tributes-more {
	display: flex;
	justify-content: center;
	margin-top: var(--wp--preset--spacing--6);
}

.essy-tribute__media {
	border-radius: 12px;
	overflow: hidden;
	background: var(--wp--preset--color--cream);
	line-height: 0;
}
.essy-tribute__media img,
.essy-tribute__media video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}
.essy-tribute__media--video video {
	background: #1b2540;
	max-height: 460px;
}

.essy-tribute__msg {
	font-family: var(--wp--preset--font-family--vollkorn);
	font-size: 1.1875rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-900);
	margin: 0;
}
.essy-tribute__msg.is-clampable {
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.essy-tribute__msg.is-open {
	-webkit-line-clamp: unset;
	overflow: visible;
	display: block;
}
.essy-tribute__readmore {
	align-self: flex-start;
	margin: -6px 0 0;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wp--preset--color--coral-700);
	text-decoration: underline;
}
.essy-tribute__readmore:hover { color: var(--wp--preset--color--ink-900); }

.essy-tribute__meta {
	margin-top: auto;
	font-size: 0.875rem;
	color: var(--wp--preset--color--ink-600);
}
.essy-tribute__name {
	font-weight: 700;
	color: var(--wp--preset--color--coral-700);
	font-style: normal;
}
.essy-tribute__rel { font-style: normal; }
.essy-tributes__empty {
	text-align: center;
	color: var(--wp--preset--color--ink-600);
	font-style: italic;
}

/* Cards are clickable → open the tribute modal. */
.essy-tribute {
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}
.essy-tribute:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(50, 32, 25, 0.12); }
.essy-tribute:focus-visible { outline: 3px solid var(--wp--preset--color--coral-500); outline-offset: 3px; }

.essy-tribute__media--video { position: relative; }
.essy-tribute__thumb {
	display: block;
	width: 100%;
	height: auto;
	max-height: 460px;
	background: #1b2540;
	border-radius: 12px;
	pointer-events: none;
}
.essy-tribute__vplay {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: rgba(204, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.essy-tribute__vplay::before {
	content: "";
	margin-left: 4px;
	border-left: 16px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
/* The "Read more" is now just a cue — the whole card opens the modal. */
.essy-tribute__readmore { pointer-events: none; }

/* -------------------------------------------------- Tribute modal */

body.essy-tlightbox-open { overflow: hidden; }
.essy-tlightbox {
	position: fixed;
	inset: 0;
	z-index: 1150;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 4vw, 48px);
	background: rgba(40, 26, 38, 0.94);
}
.essy-tlightbox[hidden] { display: none; }
.essy-tlightbox__panel {
	width: min(680px, 92vw);
	max-height: 86vh;
	overflow: auto;
	background: var(--wp--preset--color--paper);
	border-radius: 20px;
	padding: clamp(24px, 4vw, 44px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.essy-tlightbox__media {
	margin: 0 0 22px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--wp--preset--color--cream);
	line-height: 0;
}
.essy-tlightbox__media img,
.essy-tlightbox__media video {
	display: block;
	width: 100%;
	height: auto;
	max-height: 58vh;
	object-fit: contain;
	background: #1b2540;
	border-radius: 14px;
}
.essy-tlightbox__msg {
	font-family: var(--wp--preset--font-family--vollkorn);
	font-size: 1.375rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-900);
	margin: 0 0 18px;
}
.essy-tlightbox__meta {
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink-600);
	margin: 0;
}
.essy-tlightbox__meta .essy-tribute__name {
	font-weight: 700;
	color: var(--wp--preset--color--coral-700);
}
.essy-tlightbox__close,
.essy-tlightbox__nav,
.essy-tlightbox__auto {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	transition: background-color 150ms ease, transform 150ms ease;
}
.essy-tlightbox__close:hover,
.essy-tlightbox__nav:hover { background: var(--wp--preset--color--coral-500); transform: scale(1.06); }
.essy-tlightbox__close:focus-visible,
.essy-tlightbox__nav:focus-visible,
.essy-tlightbox__auto:focus-visible { outline: 2px solid #F5D6A2; outline-offset: 2px; }
.essy-tlightbox__close {
	top: clamp(12px, 3vw, 26px);
	right: clamp(12px, 3vw, 26px);
	width: 46px;
	height: 46px;
	font-size: 30px;
	line-height: 1;
}
.essy-tlightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	font-size: 32px;
	line-height: 1;
}
.essy-tlightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.essy-tlightbox__prev { left: clamp(8px, 2.5vw, 24px); }
.essy-tlightbox__next { right: clamp(8px, 2.5vw, 24px); }
.essy-tlightbox__auto {
	top: clamp(12px, 3vw, 26px);
	left: clamp(12px, 3vw, 26px);
	gap: 8px;
	width: auto;
	padding: 8px 16px;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
}
.essy-tlightbox__auto::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #9a938f;
}
.essy-tlightbox__auto[aria-pressed="true"]::before { background: #5fd08a; }
.essy-tlightbox__auto:hover { background: rgba(255, 255, 255, 0.26); }
.essy-tlightbox__counter {
	position: absolute;
	bottom: clamp(10px, 3vw, 22px);
	left: 0;
	right: 0;
	margin: 0;
	text-align: center;
	color: #E9D9E3;
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
}
@media (max-width: 600px) {
	.essy-tlightbox__nav { width: 44px; height: 44px; font-size: 28px; }
}

/* File input on the tribute form */
.essy-tribute-form .essy-file {
	padding: 10px 12px;
	font-size: 0.9375rem;
	background: var(--wp--preset--color--paper);
}
.essy-tribute-form .essy-file::file-selector-button {
	font: inherit;
	font-weight: 600;
	color: var(--wp--preset--color--coral-700);
	background: var(--wp--preset--color--coral-100);
	border: 0;
	border-radius: 8px;
	padding: 8px 14px;
	margin-right: 12px;
	cursor: pointer;
}
.essy-tribute-form .essy-file-hint {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	color: var(--wp--preset--color--ink-600);
}

/* --------------------------------------------------------- Responsive */

@media (max-width: 781px) {
	.essy-hero { text-align: left; }
	.site-brand__years { display: none; }
}