.myc-booking-form {
	width: 100%;
	padding: 1.25rem;
	background: #fffdf8;
	border: 1px solid rgba(15, 61, 36, 0.14);
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(18, 32, 24, 0.1);
}

.myc-booking-form__grid {
	display: grid;
	gap: 1rem;
}

.myc-field {
	margin: 0 0 1rem;
}

.myc-field label {
	display: block;
	margin-bottom: 0.35rem;
	color: #0f3d24;
	font-size: 0.92rem;
	font-weight: 700;
}

.myc-field input,
.myc-field select,
.myc-field textarea {
	width: 100%;
	min-height: 46px;
	padding: 0.72rem 0.82rem;
	border: 1px solid rgba(15, 61, 36, 0.2);
	border-radius: 7px;
	background: #fbfaf5;
	color: #26312b;
	font: inherit;
}

.myc-field textarea {
	min-height: 120px;
	resize: vertical;
}

.myc-field__hint {
	display: block;
	margin-top: 0.35rem;
	color: #68736d;
	font-size: 0.84rem;
}

.myc-field input:focus,
.myc-field select:focus,
.myc-field textarea:focus {
	outline: 2px solid rgba(199, 154, 45, 0.4);
	border-color: #c79a2d;
}

.myc-booking-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 0.8rem 1.2rem;
	border: 0;
	border-radius: 7px;
	background: #0f3d24;
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.myc-booking-form__button:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.myc-booking-form__button.is-loading::after {
	content: "";
	width: 14px;
	height: 14px;
	margin-left: 8px;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-top-color: #fff;
	border-radius: 50%;
	animation: myc-spin 800ms linear infinite;
}

.myc-booking-form__button:hover,
.myc-booking-form__button:focus {
	background: #082617;
	transform: translateY(-1px);
}

.myc-booking-form__status {
	min-height: 22px;
	margin: 0.85rem 0 0;
	padding: 0.72rem 0.85rem;
	border-radius: 7px;
	background: rgba(15, 61, 36, 0.06);
	color: #0f3d24;
	font-size: 0.9rem;
	font-weight: 700;
}

.myc-booking-form__status:empty {
	display: none;
}

.myc-booking-form__status.is-success {
	background: rgba(15, 61, 36, 0.1);
	color: #0f3d24;
}

.myc-booking-form__status.is-error {
	background: #fff1ec;
	color: #8a2f16;
}

.myc-booking-form__status.is-loading {
	background: rgba(199, 154, 45, 0.12);
	color: #7a5b12;
}

.myc-booking-form__note {
	margin: 0 0 0.9rem;
	color: #68736d;
	font-size: 0.92rem;
}

.myc-honeypot-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

@media (min-width: 720px) {
	.myc-booking-form {
		padding: 1.6rem;
	}

	.myc-booking-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

.myc-review-form,
.myc-reviews-list {
	width: 100%;
}

.myc-review-form {
	padding: 1.25rem;
	background: #fffdf8;
	border: 1px solid rgba(15, 61, 36, 0.14);
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(18, 32, 24, 0.1);
}

.myc-review-form__grid,
.myc-review-grid {
	display: grid;
	gap: 1rem;
}

.myc-review-form__button,
.myc-review-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.2rem;
	border: 0;
	border-radius: 7px;
	background: #0f3d24;
	color: #fff;
	font: inherit;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.myc-review-form__button {
	width: 100%;
}

.myc-review-form__button:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.myc-review-form__button.is-loading::after {
	content: "";
	width: 14px;
	height: 14px;
	margin-left: 8px;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-top-color: #fff;
	border-radius: 50%;
	animation: myc-spin 800ms linear infinite;
}

.myc-review-form__button:hover,
.myc-review-form__button:focus,
.myc-review-button:hover,
.myc-review-button:focus {
	background: #082617;
	color: #fff;
	transform: translateY(-1px);
}

.myc-review-form__status {
	min-height: 22px;
	margin: 0.85rem 0 0;
	padding: 0.72rem 0.85rem;
	border-radius: 7px;
	background: rgba(15, 61, 36, 0.06);
	color: #0f3d24;
	font-size: 0.9rem;
	font-weight: 700;
}

.myc-review-form__status:empty {
	display: none;
}

.myc-review-form__status.is-success {
	background: rgba(15, 61, 36, 0.1);
	color: #0f3d24;
}

.myc-review-form__status.is-error {
	background: #fff1ec;
	color: #8a2f16;
}

.myc-review-form__status.is-loading {
	background: rgba(199, 154, 45, 0.12);
	color: #7a5b12;
}

.myc-review-summary {
	display: grid;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.2rem;
	padding: 1.2rem;
	background: #fffdf8;
	border: 1px solid rgba(15, 61, 36, 0.14);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(18, 32, 24, 0.08);
}

.myc-review-summary__badge,
.myc-review-rating {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0f3d24;
	color: #fff;
	border-radius: 8px;
	font-weight: 900;
	line-height: 1;
}

.myc-review-summary__badge {
	width: 72px;
	height: 60px;
	font-size: 1.6rem;
}

.myc-review-summary h2,
.myc-review-card h3 {
	margin: 0;
	color: #0f3d24;
	font-family: Georgia, "Times New Roman", serif;
}

.myc-review-summary p,
.myc-review-card p,
.myc-review-empty p {
	margin: 0;
	color: #68736d;
}

.myc-review-summary__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.myc-review-link {
	color: #0f3d24;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(199, 154, 45, 0.7);
	text-underline-offset: 3px;
}

.myc-review-card,
.myc-review-empty {
	padding: 1.2rem;
	background: #fffdf8;
	border: 1px solid rgba(15, 61, 36, 0.14);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(18, 32, 24, 0.08);
}

.myc-review-card__top {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.85rem;
}

.myc-review-rating {
	min-width: 52px;
	min-height: 42px;
	padding: 0.45rem;
	font-size: 1.05rem;
}

.myc-review-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.myc-review-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.35rem 0.55rem;
	background: rgba(199, 154, 45, 0.12);
	color: #0f3d24;
	border: 1px solid rgba(199, 154, 45, 0.28);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.myc-review-card h3 {
	margin-bottom: 0.6rem;
	font-size: 1.25rem;
}

.myc-review-card footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 1rem;
	color: #68736d;
	font-size: 0.92rem;
}

.myc-review-card footer strong {
	color: #0f3d24;
}

@media (min-width: 720px) {
	.myc-review-form {
		padding: 1.6rem;
	}

	.myc-review-form__grid,
	.myc-review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.myc-review-summary {
		grid-template-columns: auto 1fr auto;
	}
}

.myc-gallery-list {
	width: 100%;
}

.myc-gallery-grid {
	display: grid;
	gap: 1rem;
}

.myc-gallery-card,
.myc-gallery-empty {
	overflow: hidden;
	background: #fffdf8;
	border: 1px solid rgba(15, 61, 36, 0.14);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(18, 32, 24, 0.08);
}

.myc-gallery-card {
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.myc-gallery-card:hover,
.myc-gallery-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(18, 32, 24, 0.12);
}

.myc-gallery-card__media {
	position: relative;
	display: flex;
	align-items: end;
	min-height: 220px;
	background:
		linear-gradient(180deg, rgba(8, 38, 23, 0.04), rgba(8, 38, 23, 0.76)),
		linear-gradient(135deg, #0f3d24, #6f883f 56%, #c79a2d);
}

.myc-gallery-card__media--photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 38, 23, 0.02), rgba(8, 38, 23, 0.14));
	pointer-events: none;
}

.myc-gallery-card__img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.myc-gallery-card__placeholder {
	position: relative;
	z-index: 1;
	padding: 1rem;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 700;
	text-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}

.myc-gallery-card__body {
	display: grid;
	gap: 0.45rem;
	padding: 1rem 1rem 1.05rem;
}

.myc-gallery-card__badge {
	display: inline-flex;
	width: fit-content;
	min-height: 26px;
	align-items: center;
	padding: 0.3rem 0.55rem;
	background: rgba(199, 154, 45, 0.12);
	color: #0f3d24;
	border: 1px solid rgba(199, 154, 45, 0.28);
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 800;
	text-transform: uppercase;
}

.myc-gallery-card h3 {
	margin: 0;
	color: #0f3d24;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
}

.myc-gallery-card p,
.myc-gallery-empty p {
	margin: 0;
	color: #68736d;
}

@media (min-width: 720px) {
	.myc-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.myc-gallery-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
