/* ==========================================================================
   Color First Studio — theme styles
   Palette and type are mirrored into Elementor's Global Styles, so changing
   them in Site Settings changes the whole site.
   ========================================================================== */

:root {
	--cfs-coral: #ef4f3c;
	--cfs-green: #159a55;
	--cfs-yellow: #f7c325;
	--cfs-pink: #f486b4;
	--cfs-blue: #35a8e0;
	--cfs-ink: #16151a;
	--cfs-paper: #ffffff;
	--cfs-canvas: #faf7f2;
	--cfs-muted: #5c5a63;
	--cfs-line: rgba(22, 21, 26, 0.12);

	--cfs-script: "Caveat Brush", "Permanent Marker", cursive;
	--cfs-marker: "Permanent Marker", cursive;
	--cfs-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--cfs-radius: 18px;
	--cfs-shadow: 0 18px 44px rgba(22, 21, 26, 0.12);
	--cfs-shadow-sm: 0 8px 20px rgba(22, 21, 26, 0.08);
}

/* --- base ---------------------------------------------------------------- */

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

body {
	margin: 0;
	font-family: var(--cfs-sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--cfs-ink);
	background: var(--cfs-paper);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--cfs-coral);
	text-underline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--cfs-sans);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
	color: var(--cfs-ink);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 0.75rem 1.25rem;
	background: var(--cfs-ink);
	color: #fff;
	border-radius: 0 0 10px 0;
}

.skip-link:focus {
	left: 0;
}

:where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid var(--cfs-blue);
	outline-offset: 2px;
}

.cfs-container {
	width: min(1140px, 100% - 3rem);
	margin-inline: auto;
}

.cfs-main {
	padding-block: clamp(2.5rem, 6vw, 5rem);
}

.cfs-main--builder {
	padding-block: 0;
}

body.cfs-sticky-header .cfs-site__header {
	position: sticky;
	top: 0;
	z-index: 99;
}

/* --- hero ---------------------------------------------------------------- */

/* The painterly canvas behind the studio portrait. Set as a section
   background image in Elementor; this class adds the paper texture edge. */
.cfs-hero-canvas {
	position: relative;
	overflow: hidden;
}

/* No bottom fade here: the hero's lower edge crops the portrait cleanly, and a
   white gradient across her dark top read as a gray smear. */

/* --- painted heading widget ---------------------------------------------- */

.cfs-painted-heading__kicker {
	display: block;
	font-family: var(--cfs-marker);
	font-size: clamp(0.95rem, 1.6vw, 1.15rem);
	letter-spacing: 0.06em;
	color: var(--cfs-coral);
	margin-bottom: 0.35em;
	transform: rotate(-1.2deg);
}

.cfs-painted-heading__main {
	font-size: clamp(1.9rem, 4.6vw, 3.1rem);
	margin: 0;
}

.cfs-painted-heading__script {
	font-family: var(--cfs-script);
	font-weight: 400;
	color: var(--cfs-coral);
	font-size: 1.28em;
	line-height: 0.9;
	display: inline-block;
	position: relative;
	transform: rotate(-2deg);
	padding-inline: 0.08em;
}

.cfs-painted-heading__script.has-swash::before {
	content: "";
	position: absolute;
	inset: 18% -0.18em 14% -0.18em;
	background-color: var(--cfs-yellow);
	border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
	transform: rotate(-1.4deg);
	z-index: -1;
	opacity: 0.85;
}

/* --- artwork card widget -------------------------------------------------- */

.cfs-artwork-card {
	--cfs-card-accent: var(--cfs-coral);
	background: var(--cfs-paper);
	border-radius: var(--cfs-radius);
	overflow: hidden;
	box-shadow: var(--cfs-shadow-sm);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: 1px solid var(--cfs-line);
}

.cfs-artwork-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cfs-shadow);
}

.cfs-artwork-card__media {
	height: 320px;
	background: var(--cfs-canvas);
	overflow: hidden;
}

.cfs-artwork-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.cfs-artwork-card:hover .cfs-artwork-card__media img {
	transform: scale(1.04);
}

.cfs-artwork-card__body {
	padding: 1.35rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}

.cfs-artwork-card__title {
	font-size: 1.25rem;
	margin: 0;
}

.cfs-artwork-card__meta {
	margin: 0;
	font-size: 0.9rem;
	color: var(--cfs-muted);
}

.cfs-artwork-card__desc {
	margin: 0.35rem 0 0;
	font-size: 0.95rem;
	color: var(--cfs-muted);
}

.cfs-artwork-card__foot {
	margin-top: auto;
	padding-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.cfs-artwork-card__price {
	font-weight: 600;
	color: var(--cfs-card-accent);
}

.cfs-artwork-card__btn,
.cfs-btn {
	display: inline-block;
	padding: 0.65rem 1.35rem;
	border-radius: 999px;
	background: var(--cfs-card-accent, var(--cfs-coral));
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.cfs-artwork-card__btn:hover,
.cfs-btn:hover {
	filter: brightness(0.92);
	transform: translateY(-1px);
	color: #fff;
}

/* --- studio details widget ------------------------------------------------ */

.cfs-details {
	display: flex;
	gap: 1.5rem;
}

.cfs-details--stack {
	flex-direction: column;
	gap: 1.15rem;
}

.cfs-details--row {
	flex-direction: row;
	flex-wrap: wrap;
}

.cfs-detail {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	flex: 1 1 220px;
}

.cfs-detail__icon {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--cfs-coral);
	color: #fff;
}

.cfs-detail__body {
	display: flex;
	flex-direction: column;
	line-height: 1.45;
}

.cfs-detail__label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-weight: 600;
	color: var(--cfs-muted);
}

.cfs-detail__body a {
	font-weight: 500;
	text-decoration: none;
	color: inherit;
}

.cfs-detail__body a:hover {
	color: var(--cfs-coral);
}

.cfs-detail__note {
	font-size: 0.85rem;
	color: var(--cfs-muted);
	margin-top: 0.2rem;
}

/* --- contact form widget -------------------------------------------------- */

.cfs-form {
	display: flex;
	flex-direction: column;
	gap: 1.05rem;
}

.cfs-form__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 1.05rem;
}

.cfs-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.cfs-form label {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--cfs-ink);
}

.cfs-form :is(input, textarea, select) {
	font: inherit;
	font-size: 1rem;
	padding: 0.8rem 0.95rem;
	border: 1.5px solid var(--cfs-line);
	border-radius: 12px;
	background: #fff;
	color: var(--cfs-ink);
	width: 100%;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cfs-form :is(input, textarea, select):focus {
	border-color: var(--cfs-coral);
	box-shadow: 0 0 0 4px rgba(239, 79, 60, 0.14);
	outline: none;
}

.cfs-form textarea {
	resize: vertical;
	min-height: 140px;
}

.cfs-form button {
	align-self: flex-start;
	font: inherit;
	font-weight: 600;
	padding: 0.85rem 2rem;
	border: 0;
	border-radius: 999px;
	background: var(--cfs-coral);
	color: #fff;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.cfs-form button:hover:not(:disabled) {
	filter: brightness(0.92);
	transform: translateY(-1px);
}

.cfs-form button:disabled {
	opacity: 0.6;
	cursor: progress;
}

.cfs-form__hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cfs-form__status {
	margin: 0;
	font-size: 0.95rem;
	min-height: 1.5em;
}

.cfs-form__status.is-success {
	color: var(--cfs-green);
	font-weight: 500;
}

.cfs-form__status.is-error {
	color: var(--cfs-coral);
	font-weight: 500;
}

/* --- fallback header / footer -------------------------------------------- */

.cfs-fallback-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.1rem;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--cfs-line);
	width: 100%;
	padding-inline: max(1.5rem, calc((100% - 1140px) / 2));
}

.cfs-fallback-header__title {
	font-family: var(--cfs-marker);
	font-size: 1.35rem;
	color: var(--cfs-ink);
	text-decoration: none;
	display: block;
}

.cfs-fallback-header__tagline {
	font-family: var(--cfs-script);
	font-size: 1.05rem;
	color: var(--cfs-coral);
}

.cfs-fallback-header__nav ul {
	list-style: none;
	display: flex;
	gap: 1.6rem;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.cfs-fallback-header__nav a {
	color: var(--cfs-ink);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.98rem;
}

.cfs-fallback-header__nav a:hover,
.cfs-fallback-header__nav .current-menu-item > a {
	color: var(--cfs-coral);
}

.cfs-fallback-footer {
	text-align: center;
	padding-block: 3rem 2.5rem;
	border-top: 1px solid var(--cfs-line);
	background: var(--cfs-canvas);
	width: 100%;
	padding-inline: 1.5rem;
}

.cfs-fallback-footer__brand {
	font-family: var(--cfs-marker);
	font-size: 1.3rem;
	margin: 0 0 0.4rem;
}

.cfs-fallback-footer__meta {
	margin: 0 0 0.8rem;
}

.cfs-fallback-footer__meta a {
	color: var(--cfs-ink);
	text-decoration: none;
}

.cfs-fallback-footer__meta a:hover {
	color: var(--cfs-coral);
}

.cfs-fallback-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	color: var(--cfs-muted);
}

/* --- blog / archive ------------------------------------------------------ */

.cfs-page__title,
.cfs-archive__title {
	font-size: clamp(2rem, 4.5vw, 2.9rem);
}

.cfs-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

.cfs-post-card {
	border: 1px solid var(--cfs-line);
	border-radius: var(--cfs-radius);
	overflow: hidden;
	background: #fff;
}

.cfs-post-card__media img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.cfs-post-card__body {
	padding: 1.3rem;
}

.cfs-post-card__title {
	font-size: 1.2rem;
	margin: 0 0 0.3rem;
}

.cfs-post-card__title a {
	color: inherit;
	text-decoration: none;
}

.cfs-post-card__title a:hover {
	color: var(--cfs-coral);
}

.cfs-post-card__date {
	margin: 0 0 0.6rem;
	font-size: 0.85rem;
	color: var(--cfs-muted);
}

.cfs-link-arrow {
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
}

.cfs-link-arrow::after {
	content: " →";
}

.cfs-single__date {
	color: var(--cfs-muted);
	margin-top: -0.5rem;
}

.cfs-single__media {
	margin: 2rem 0;
}

.cfs-single__media img {
	border-radius: var(--cfs-radius);
}

.cfs-404 {
	text-align: center;
	max-width: 620px;
}

.cfs-404__code {
	font-family: var(--cfs-marker);
	font-size: clamp(4rem, 14vw, 8rem);
	color: var(--cfs-coral);
	margin: 0;
	line-height: 1;
}

.cfs-404__actions {
	margin-block: 1.5rem 2rem;
}

.cfs-search {
	display: flex;
	gap: 0.6rem;
	max-width: 460px;
	margin-inline: auto;
}

.cfs-search input {
	flex: 1;
	font: inherit;
	padding: 0.7rem 1rem;
	border: 1.5px solid var(--cfs-line);
	border-radius: 999px;
}

.cfs-search button {
	font: inherit;
	font-weight: 600;
	padding: 0.7rem 1.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--cfs-ink);
	color: #fff;
	cursor: pointer;
}

.cfs-page-links {
	margin-top: 2rem;
}

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 782px) {
	.cfs-fallback-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.cfs-fallback-header__nav ul {
		gap: 1.1rem;
	}

	.cfs-artwork-card__media {
		height: 260px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* --- site brand widget ---------------------------------------------------- */

.cfs-brand {
	display: inline-flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1.05;
}

.cfs-brand__name {
	font-family: var(--cfs-marker);
	font-size: clamp(1.15rem, 2.1vw, 1.55rem);
	color: var(--cfs-ink);
	letter-spacing: 0.005em;
}

.cfs-brand__tagline {
	font-family: var(--cfs-script);
	font-size: clamp(1rem, 1.7vw, 1.25rem);
	color: var(--cfs-coral);
	margin-top: 0.15em;
	transform: rotate(-1.5deg);
	transform-origin: left center;
}

.cfs-brand__logo img {
	width: 190px;
	height: auto;
}

/* --- site navigation widget ----------------------------------------------- */

.cfs-nav {
	--cfs-nav-bp: 1024px;
}

.cfs-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.cfs-nav a {
	position: relative;
	text-decoration: none;
	color: var(--cfs-ink);
	font-weight: 500;
	font-size: 1rem;
	padding-block: 0.35rem;
	display: inline-block;
}

.cfs-nav--underline a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 3px;
	border-radius: 3px;
	background-color: var(--cfs-coral);
	transition: right 0.25s ease;
}

.cfs-nav--underline a:hover::after,
.cfs-nav--underline .current-menu-item > a::after,
.cfs-nav--underline .current_page_item > a::after {
	right: 0;
}

.cfs-nav__toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	color: var(--cfs-ink);
	margin-left: auto;
}

.cfs-nav__bars {
	display: grid;
	gap: 5px;
	width: 26px;
}

.cfs-nav__bars span {
	display: block;
	height: 2.5px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.cfs-nav[data-open="true"] .cfs-nav__bars span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.cfs-nav[data-open="true"] .cfs-nav__bars span:nth-child(2) {
	opacity: 0;
}

.cfs-nav[data-open="true"] .cfs-nav__bars span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

.cfs-nav__empty {
	font-size: 0.9rem;
	color: var(--cfs-muted);
	margin: 0;
}

/* Sub-menus */
.cfs-nav__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--cfs-shadow-sm);
	border: 1px solid var(--cfs-line);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 30;
}

.cfs-nav__list > li {
	position: relative;
}

.cfs-nav__list > li:hover > .sub-menu,
.cfs-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cfs-nav__list .sub-menu a {
	padding: 0.45rem 1.1rem;
	display: block;
	width: 100%;
}

.cfs-nav__list .sub-menu a::after {
	display: none;
}

/* Collapsed / drawer state, driven by JS adding .is-mobile */
.cfs-nav.is-mobile .cfs-nav__toggle {
	display: block;
}

/* The drawer needs a positioned ancestor, otherwise it resolves against the
   page and collapses to the width of the hamburger button. */
.cfs-nav.is-mobile {
	position: relative;
}

.cfs-nav.is-mobile .cfs-nav__panel {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	left: auto;
	width: max-content;
	min-width: min(72vw, 280px);
	background: #fff;
	border: 1px solid var(--cfs-line);
	border-radius: 14px;
	box-shadow: 0 22px 40px rgba(22, 21, 26, 0.16);
	padding: 0.5rem 1.25rem;
	display: none;
	z-index: 50;
}

.cfs-nav.is-mobile[data-open="true"] .cfs-nav__panel {
	display: block;
}

.cfs-nav.is-mobile .cfs-nav__list {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.cfs-nav.is-mobile .cfs-nav__list > li {
	border-bottom: 1px solid var(--cfs-line);
}

.cfs-nav.is-mobile .cfs-nav__list > li:last-child {
	border-bottom: 0;
}

.cfs-nav.is-mobile .cfs-nav a {
	padding: 0.85rem 0;
	font-size: 1.05rem;
}

.cfs-nav.is-mobile .cfs-nav__list .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	padding: 0 0 0.5rem 1rem;
}

.cfs-nav.is-mobile .cfs-nav--underline a::after,
.cfs-nav.is-mobile a::after {
	display: none;
}

/* --- overrides that must beat Elementor's base rules ---------------------- */

/* Elementor ships `.elementor img { height: auto }`, which stops the artwork
   image filling its frame. Same-specificity rules lose on load order, so
   qualify ours. */
.cfs-artwork-card .cfs-artwork-card__media img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* Likewise `.elementor a { color: ... }` was repainting the button label the
   same color as its own background. */
.cfs-artwork-card .cfs-artwork-card__btn,
.cfs-artwork-card .cfs-artwork-card__btn:hover,
.cfs-artwork-card .cfs-artwork-card__btn:focus {
	color: #fff;
}

/* Only let the detail blocks grow when they sit side by side; in the stacked
   footer layout flex-grow was spreading them down the whole column. */
.cfs-details--stack .cfs-detail {
	flex: 0 0 auto;
}

.cfs-hero-canvas {
	overflow: hidden;
}

/* The hero image is a photograph, not a cut-out, so it needs a frame: without
   one its rectangular edge cuts across the painted backdrop and reads like a
   mistake. Capped height keeps a tall portrait shot from pushing the hero past
   a screenful. The white border doubles as a print mat against the canvas. */
/* Qualified with .elementor because Elementor's frontend reset carries
   `.elementor img { border: none; border-radius: 0; box-shadow: none }` and
   loads after the theme — an unqualified rule ties on specificity and loses. */
.elementor .cfs-hero-photo img {
	display: block;
	max-height: 64vh;
	width: auto;
	max-width: 100%;
	margin-inline: auto;
	border: 8px solid #fff;
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(22, 21, 26, 0.22);
}

@media (max-width: 767px) {
	.elementor .cfs-hero-photo img {
		max-height: 52vh;
		border-width: 6px;
	}
}

/* Kept so an older saved revision of the home page still renders sensibly if
   someone rolls one back from wp-admin. */
.cfs-hero-portrait img {
	display: block;
}

/* Keep the studio name from wrapping oddly in the sticky header. */
.cfs-brand__name {
	white-space: nowrap;
}

/* Build credit in the footer bottom bar. The global link color is coral, which
   is louder than a credit line should be next to the copyright, so hold it at
   the muted body color until hover. */
.cfs-credit a,
.elementor .cfs-credit a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(22, 21, 26, 0.28);
}

.elementor .cfs-credit a:hover,
.elementor .cfs-credit a:focus,
.cfs-credit a:hover,
.cfs-credit a:focus {
	color: var(--e-global-color-primary, #ef4f3c);
	text-decoration-color: currentColor;
}

/* --- lightbox gallery grid ------------------------------------------------ */

/* WordPress's gallery markup floats items at equal width but leaves each image
   at its own aspect ratio, so a mixed portrait/landscape catalog renders as
   ragged vertical strips. Give the thumbnails a common shape and crop to it —
   the lightbox still opens the full, uncropped image. */
.elementor-image-gallery .gallery {
	display: grid;
	grid-template-columns: repeat(var(--cfs-gallery-cols, 3), 1fr);
	gap: 16px;
	margin: 0 !important;
}

.elementor-image-gallery .gallery-item {
	width: 100% !important;
	/* WordPress sets max-width:33.33% for a 3-across float layout. Inside a grid
	   cell that becomes a third of a third, so the thumbnails collapse to ~120px.
	   The grid already handles the columns. */
	max-width: none !important;
	margin: 0 !important;
	float: none !important;
}

.elementor-image-gallery .gallery-item .gallery-icon,
.elementor-image-gallery .gallery-item a {
	display: block;
	width: 100%;
}

.elementor-image-gallery .gallery-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 12px;
	border: 0 !important;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.elementor-image-gallery .gallery-item a:hover img {
	transform: translateY(-3px);
	box-shadow: var(--cfs-shadow-sm);
}

.elementor-image-gallery .gallery-icon {
	margin: 0;
}

@media (max-width: 767px) {
	.elementor-image-gallery .gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
