:root {
	--ych-black: #000;
	--ych-ink: #151515;
	--ych-muted: #707070;
	--ych-soft: #efefef;
	--ych-soft-2: #f8f6ef;
	--ych-orange: #fe6d25;
	--ych-orange-dark: #d94f12;
	--ych-white: #fff;
	--ych-border: #e6e6e6;
	--ych-container: 1640px;
	--ych-grid-gutter: 16px;
	--ych-page-gutter: max(24px, calc((100vw - var(--ych-container)) / 2));
	--ych-arrow-icon: url("../images/icon-arrow-right.svg");
	--ych-icon-instagram: url("../images/icon-instagram.svg");
	--ych-icon-facebook: url("../images/icon-facebook.svg");
	--ych-icon-x: url("../images/icon-x.svg");
	--ych-icon-tripadvisor: url("../images/icon-tripadvisor.svg");
	--ych-radius: 30px;
	--ych-font-body: "Figtree", Arial, sans-serif;
	--ych-font-heading: "Montserrat", "Figtree", Arial, sans-serif;
	--ych-font-accent: "Elsie", Georgia, "Times New Roman", serif;
	--ych-display-size: 90px;
	--ych-display-line: 90px;
	--ych-hero-title-size: 40px;
	--ych-card-heading-size: 40px;
	--ych-section-title-size: 70px;
	--ych-body-large-size: 24px;
	--ych-body-large-line: 34px;
	--ych-body-size: 18px;
	--ych-button-size: 16px;
	--ych-nav-size: 16px;
	--ych-small-size: 16px;
	--ych-menu-fade-size: 104px;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--ych-white);
	color: var(--ych-black);
	font-family: var(--ych-font-body);
	font-size: var(--ych-body-size);
	line-height: 1.55;
	letter-spacing: 0;
	margin: 0;
}

body,
button,
input,
select,
textarea {
	font-family: var(--ych-font-body);
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover,
a:focus-visible {
	color: var(--ych-orange);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.ych-container,
.ych-grid {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--ych-container);
	width: calc(100% - (var(--ych-page-gutter) * 2));
}

.ych-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--ych-grid-gutter);
}

.ych-grid > * {
	min-width: 0;
}

.ych-page {
	overflow: clip;
	padding-bottom: 140px;
}

.ych-page .wp-block-group,
.ych-page .wp-block-cover,
.ych-page .wp-block-image,
.ych-page .wp-block-buttons {
	margin-block-end: 0;
	margin-block-start: 0;
}

.ych-page > .ych-grid:first-child,
.ych-page > .ych-section:first-child {
	margin-block-start: 94px;
	margin-top: 94px;
}

.ych-page h1,
.ych-page h2,
.ych-page h3,
.ych-page h4 {
	color: var(--ych-black);
	font-family: var(--ych-font-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	text-wrap: balance;
}

.ych-page p {
	margin: 0 0 24px;
}

.ych-page h1 span,
.ych-page h2 span,
.ych-page h3 span,
.ych-page h4 span {
	color: var(--ych-orange);
	font-family: var(--ych-font-accent);
	font-weight: 700;
}

.ych-display-heading {
	font-size: var(--ych-display-size);
	line-height: var(--ych-display-line);
}

.ych-hero-title,
.ych-card-heading {
	font-size: var(--ych-hero-title-size);
	line-height: 1.1;
}

.ych-section-title {
	font-size: var(--ych-section-title-size);
	line-height: var(--ych-section-title-size);
}

.ych-body-copy,
.ych-lede {
	font-size: var(--ych-body-large-size);
	line-height: var(--ych-body-large-line);
	max-width: 820px;
}

.ych-display-heading + .ych-body-copy,
.ych-display-heading + .ych-lede,
.ych-hero-title + .ych-lede {
	margin-top: 44px;
}

.ych-small-text {
	font-size: var(--ych-small-size);
	line-height: 25px;
}

.ych-eyebrow {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 12px;
}

.ych-col-start-1 {
	grid-column-start: 1;
}

.ych-col-start-2 {
	grid-column-start: 2;
}

.ych-col-start-3 {
	grid-column-start: 3;
}

.ych-col-start-4 {
	grid-column-start: 4;
}

.ych-col-start-5 {
	grid-column-start: 5;
}

.ych-col-start-6 {
	grid-column-start: 6;
}

.ych-col-start-7 {
	grid-column-start: 7;
}

.ych-col-start-8 {
	grid-column-start: 8;
}

.ych-col-start-9 {
	grid-column-start: 9;
}

.ych-col-start-10 {
	grid-column-start: 10;
}

.ych-col-span-3 {
	grid-column-end: span 3;
}

.ych-col-span-4 {
	grid-column-end: span 4;
}

.ych-col-span-5 {
	grid-column-end: span 5;
}

.ych-col-span-6 {
	grid-column-end: span 6;
}

.ych-col-span-7 {
	grid-column-end: span 7;
}

.ych-col-span-8 {
	grid-column-end: span 8;
}

.ych-col-span-9 {
	grid-column-end: span 9;
}

.ych-col-span-12 {
	grid-column-end: span 12;
}

.ych-button,
.wp-block-button.ych-button .wp-block-button__link,
.ych-form button,
.ych-inline-form button,
.ff-btn-submit {
	align-items: center;
	background: var(--ych-orange);
	border: 0;
	border-radius: 999px;
	color: var(--ych-white);
	cursor: pointer;
	display: inline-flex;
	font-size: var(--ych-button-size);
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	line-height: 1;
	min-height: 47px;
	padding: 0 29px;
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
	white-space: nowrap;
}

.fluentform .ff-btn.ff-btn-submit,
.fluentform button.ff-btn-submit,
.fluentform input[type="submit"].ff-btn-submit {
	background: var(--ych-orange) !important;
	border: 0 !important;
	border-radius: 999px !important;
	color: var(--ych-white) !important;
	display: inline-flex !important;
	font-size: var(--ych-button-size) !important;
	font-weight: 500 !important;
	gap: 10px;
	line-height: 1 !important;
	min-height: 47px !important;
	padding: 0 29px !important;
}

.ych-button:not(.wp-block-button)::after,
.wp-block-button.ych-button .wp-block-button__link::after,
.ych-form button::after,
.ff-btn-submit::after {
	background: currentColor;
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	height: 12px;
	mask: var(--ych-arrow-icon) center / contain no-repeat;
	-webkit-mask: var(--ych-arrow-icon) center / contain no-repeat;
	width: 12px;
}

.ych-button:hover,
.ych-button:focus-visible,
.wp-block-button.ych-button .wp-block-button__link:hover,
.wp-block-button.ych-button .wp-block-button__link:focus-visible,
.ych-form button:hover,
.ych-form button:focus-visible,
.ych-inline-form button:hover,
.ych-inline-form button:focus-visible,
.ff-btn-submit:hover,
.ff-btn-submit:focus-visible {
	background: var(--ych-orange-dark);
	box-shadow: 0 16px 34px rgba(254, 109, 37, 0.24);
	color: var(--ych-white);
	transform: translateY(-1px);
}

.fluentform .ff-btn.ff-btn-submit:hover,
.fluentform .ff-btn.ff-btn-submit:focus-visible,
.fluentform button.ff-btn-submit:hover,
.fluentform button.ff-btn-submit:focus-visible,
.fluentform input[type="submit"].ff-btn-submit:hover,
.fluentform input[type="submit"].ff-btn-submit:focus-visible {
	background: var(--ych-orange-dark) !important;
	color: var(--ych-white) !important;
}

.wp-block-button.ych-button,
.wp-block-button.ych-button:hover,
.wp-block-button.ych-button:focus-visible {
	background: transparent;
	box-shadow: none;
	color: inherit;
	display: inline-block;
	min-height: 0;
	padding: 0;
	transform: none;
}

.ych-button--light {
	background: var(--ych-white);
	color: var(--ych-black);
}

.wp-block-button.ych-button--light .wp-block-button__link {
	background: var(--ych-white);
	color: var(--ych-black);
}

.ych-button--light:hover,
.ych-button--light:focus-visible,
.wp-block-button.ych-button--light .wp-block-button__link:hover,
.wp-block-button.ych-button--light .wp-block-button__link:focus-visible {
	background: var(--ych-orange);
	color: var(--ych-white);
}

.ych-site-header {
	background: var(--ych-white);
	position: relative;
	z-index: 20;
}

.ych-topbar {
	background: #2f2f2f;
	color: var(--ych-white);
	font-size: 12px;
}

.ych-topbar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 48px;
}

.ych-topbar a {
	color: var(--ych-white);
	text-decoration: none;
}

.ych-topbar nav {
	display: flex;
	gap: 48px;
}

.ych-social-links {
	align-items: center;
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ych-social-links a {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 24px;
	min-width: 24px;
}

.ych-social-icon {
	background: currentColor;
	display: inline-block;
	height: 18px;
	width: 18px;
}

.ych-social-icon--instagram {
	mask: var(--ych-icon-instagram) center / contain no-repeat;
	-webkit-mask: var(--ych-icon-instagram) center / contain no-repeat;
}

.ych-social-icon--tripadvisor {
	mask: var(--ych-icon-tripadvisor) center / contain no-repeat;
	-webkit-mask: var(--ych-icon-tripadvisor) center / contain no-repeat;
}

.ych-social-icon--facebook {
	mask: var(--ych-icon-facebook) center / contain no-repeat;
	-webkit-mask: var(--ych-icon-facebook) center / contain no-repeat;
}

.ych-social-icon--x {
	mask: var(--ych-icon-x) center / contain no-repeat;
	-webkit-mask: var(--ych-icon-x) center / contain no-repeat;
}

.ych-main-header {
	align-items: center;
	display: grid;
	gap: var(--ych-grid-gutter);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	min-height: 140px;
}

.ych-logo,
.custom-logo-link {
	display: inline-flex;
	grid-column: 1 / span 2;
	width: 74px;
}

.ych-logo img,
.custom-logo-link img {
	display: block;
	max-height: 88px;
	object-fit: contain;
	width: 74px;
}

.ych-nav {
	grid-column: 4 / span 6;
	justify-self: center;
}

.ych-nav__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ych-nav__list a {
	color: var(--ych-black);
	font-size: var(--ych-nav-size);
	font-weight: 600;
	text-decoration: none;
}

.ych-nav__list a:hover,
.ych-nav__list a:focus-visible,
.ych-nav__list .current-menu-item > a {
	color: var(--ych-orange);
}

.ych-header-cta {
	grid-column: 11 / span 2;
	justify-self: end;
}

.ych-menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
}

.ych-menu-toggle span:not(.screen-reader-text) {
	background: var(--ych-black);
	border-radius: 2px;
	display: block;
	height: 2px;
	width: 24px;
}

.ych-hero {
	align-items: start;
}

.ych-hero .ych-col-start-1,
.ych-split-heading .ych-col-start-1,
.ych-split-heading .ych-col-start-4 {
	position: relative;
}

.ych-hero .ych-lede {
	margin-top: 44px;
	max-width: 760px;
}

.ych-text-decoration,
.wp-block-image.ych-text-decoration {
	margin: 0;
	pointer-events: none;
	position: absolute;
	user-select: none;
	z-index: 1;
}

.ych-text-decoration img {
	display: block;
	width: 100%;
}

.ych-text-decoration--hero-squiggle {
	right: 18px;
	top: 46px;
	width: 52px;
}

.ych-text-decoration--good-eats-underline {
	left: 4px;
	top: 86px;
	width: 150px;
}

.ych-text-decoration--cuppa-underline {
	left: 292px;
	top: 98px;
	width: 148px;
}

.ych-mailing-card {
	background: var(--ych-soft);
	border-radius: var(--ych-radius);
	box-sizing: border-box;
	padding: 44px 42px;
}

.ych-card-title {
	font-family: var(--ych-font-heading);
	font-size: 20px;
	line-height: 1.25;
	margin-bottom: 20px;
}

.ych-mailing-card p {
	color: var(--ych-muted);
	margin-bottom: 24px;
}

.ych-inline-form {
	background: var(--ych-white);
	border-radius: 999px;
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 4px;
}

.ych-inline-form input {
	background: transparent;
	border: 0;
	color: var(--ych-black);
	font-size: 16px;
	min-width: 0;
	padding: 0 22px;
}

.ych-inline-form input:focus {
	outline: none;
}

.ych-inline-form button {
	min-height: 42px;
	padding-left: 24px;
	padding-right: 24px;
}

.ych-page .ych-feature-cards {
	margin-block-start: 48px;
	margin-top: 48px;
}

.ych-image-card {
	align-items: end;
	background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48)), var(--ych-card-image) center / cover;
	border-radius: var(--ych-radius);
	box-sizing: border-box;
	color: var(--ych-white);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 523px;
	overflow: hidden;
	padding: 65px 62px;
}

.wp-block-cover.ych-image-card {
	align-items: flex-end;
	background: none;
	display: flex;
	padding: 65px 62px;
}

.wp-block-cover.ych-image-card .wp-block-cover__background {
	background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48));
	opacity: 1;
}

.wp-block-cover.ych-image-card .wp-block-cover__inner-container {
	color: var(--ych-white);
	width: 100%;
}

.ych-image-card h2,
.ych-image-card p {
	color: var(--ych-white);
}

.ych-image-card p {
	max-width: 540px;
}

.ych-page .ych-section {
	margin-block-start: 160px;
	margin-top: 160px;
	position: relative;
}

.ych-section--decor {
	min-height: 1px;
}

.ych-split-heading {
	align-items: start;
}

.ych-right-copy {
	padding-top: 4px;
	text-align: right;
}

.ych-right-copy p {
	margin-left: auto;
	max-width: 420px;
}

.ych-right-copy .ych-button {
	margin-top: 4px;
}

.ych-right-copy .wp-block-buttons {
	justify-content: flex-end;
}

.ych-section-decoration,
.wp-block-image.ych-section-decoration {
	margin: 0;
	pointer-events: none;
	position: absolute;
	user-select: none;
	z-index: 0;
}

.ych-section-decoration img {
	display: block;
	max-width: none;
	width: 100%;
}

.ych-section-decoration--plate {
	left: calc(var(--ych-page-gutter) - 535px);
	top: 80px;
	width: 772px;
}

.ych-section-decoration--cup {
	right: calc(var(--ych-page-gutter) - 610px);
	top: 15px;
	width: 849px;
}

.ych-section-decoration--weaving {
	left: calc(var(--ych-page-gutter) - 540px);
	top: 250px;
	transform: rotate(25deg);
	width: 678px;
}

.ych-section--decor > .ych-grid {
	position: relative;
	z-index: 1;
}

.ych-page .ych-menu-section {
	margin-block-start: 70px;
	margin-top: 70px;
}

.ych-menu-carousel {
	position: relative;
}

.ych-menu-track {
	display: flex;
	gap: 54px;
	mask-image: linear-gradient(to right, #000 0, #000 calc(100% - var(--ych-menu-fade-size)), transparent 100%);
	overflow-x: auto;
	overflow-y: visible;
	padding-bottom: 8px;
	padding-right: var(--ych-menu-fade-size);
	scroll-behavior: smooth;
	scroll-padding-inline: var(--ych-page-gutter);
	scroll-snap-type: x mandatory;
	-webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - var(--ych-menu-fade-size)), transparent 100%);
	-webkit-overflow-scrolling: touch;
}

.ych-menu-track::-webkit-scrollbar {
	height: 8px;
}

.ych-menu-track::-webkit-scrollbar-thumb {
	background: var(--ych-soft);
	border-radius: 999px;
}

.ych-menu-grid {
	display: flex;
}

.ych-menu-grid--1 {
	display: flex;
}

.ych-menu-grid--2 {
	display: flex;
}

.ych-menu-grid--4 {
	display: flex;
}

.ych-menu-column {
	flex: 0 0 calc((100% - 108px) / 3);
	min-width: min(430px, 84vw);
	scroll-margin-inline: var(--ych-page-gutter);
	scroll-snap-align: start;
}

.ych-menu-column h3 {
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 26px;
}

.ych-menu-column--continued {
	padding-top: 52px;
}

.ych-menu-item {
	margin-bottom: 24px;
}

.ych-menu-item__heading {
	align-items: baseline;
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr auto;
}

.ych-menu-item h4 {
	font-family: var(--ych-font-accent);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.15;
}

.ych-menu-item__price {
	font-size: 15px;
	font-weight: 700;
}

.ych-menu-item p {
	color: var(--ych-ink);
	font-size: 14px;
	line-height: 1.45;
	margin: 8px 0 0;
}

.ych-menu-item__add-ons {
	display: grid;
	gap: 5px;
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
}

.ych-menu-item__add-ons li {
	align-items: baseline;
	color: var(--ych-ink);
	display: grid;
	font-size: 14px;
	gap: 12px;
	grid-template-columns: 1fr auto;
	line-height: 1.35;
}

.ych-menu-item__add-on-name {
	position: relative;
}

.ych-menu-item__add-on-name::before {
	color: var(--ych-orange);
	content: "-";
	font-weight: 800;
	margin-right: 8px;
}

.ych-menu-item__add-on-price {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.ych-menu-item__dietary {
	color: var(--ych-orange);
	font-weight: 800;
}

.ych-menu-jump-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 42px;
}

.ych-menu-jump {
	align-items: center;
	background: var(--ych-soft);
	border-radius: 999px;
	color: var(--ych-black);
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	min-height: 38px;
	padding: 0 22px;
	text-decoration: none;
	white-space: nowrap;
}

.ych-menu-jump:hover,
.ych-menu-jump:focus-visible,
.ych-menu-jump.is-active {
	background: var(--ych-orange);
	color: var(--ych-white);
}

.ych-menu-empty {
	background: var(--ych-soft);
	border-radius: 16px;
	color: var(--ych-muted);
	padding: 24px;
	text-align: center;
}

.ych-page .ych-workshops {
	margin-block-start: 170px;
	margin-top: 170px;
}

.ych-page .ych-events-wrap {
	margin-block-start: 84px;
	margin-top: 84px;
}

.ych-page .ych-events-intro {
	color: var(--ych-muted);
	font-size: 16px;
	line-height: 1.45;
	margin-block-start: 18px;
	margin-bottom: 0;
	max-width: 560px;
}

.ych-event-grid {
	column-gap: var(--ych-grid-gutter);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
	row-gap: 28px;
}

.ych-page .ych-event-grid {
	margin-block-start: 34px;
	margin-top: 34px;
}

.ych-event-card {
	min-width: 0;
}

.ych-event-image {
	margin: 0;
}

.ych-event-image img {
	aspect-ratio: 1.55 / 1;
	border-radius: 12px;
	object-fit: cover;
	width: 100%;
}

.ych-event-title {
	font-size: 18px;
	line-height: 1.2;
	margin: 18px 0 8px;
}

.ych-event-copy,
.ych-event-meta {
	color: var(--ych-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.ych-event-meta {
	margin-top: 10px;
}

.ych-page .ych-reviews {
	margin-block-start: 160px;
	margin-top: 160px;
	text-align: center;
}

.ych-reviews-image {
	margin: 52px 0 0;
}

.ych-reviews-image img {
	width: 100%;
}

.ych-page .ych-blog-feature {
	align-items: center;
	margin-block-start: 160px;
	margin-top: 160px;
}

.ych-blog-feature > * {
	grid-row: 1;
}

.ych-blog-image {
	margin: 0;
}

.ych-blog-image img {
	aspect-ratio: 0.8 / 1;
	border-radius: 12px;
	object-fit: cover;
	width: 100%;
}

.ych-blog-card {
	align-self: center;
	background: var(--ych-soft-2);
	border-radius: 12px;
	box-sizing: border-box;
	margin-left: -84px;
	padding: 72px;
	position: relative;
	z-index: 2;
}

.ych-feature-heading {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 24px;
}

.ych-page .ych-two-col,
.ych-page .ych-contact-hero,
.ych-page .ych-contact-location {
	align-items: center;
	margin-block-start: 150px;
	margin-top: 150px;
}

.ych-about-hero {
	column-gap: 72px;
}

.ych-rounded-media,
.ych-map {
	border-radius: var(--ych-radius);
	display: block;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.ych-rounded-media img,
.ych-map img {
	aspect-ratio: 1.18 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.ych-circle-media {
	aspect-ratio: 1;
	border-radius: 50%;
	justify-self: center;
	margin: 0 auto;
	overflow: hidden;
	width: min(520px, 100%);
}

.ych-circle-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ych-floating-media {
	margin: 0 auto;
	max-width: 540px;
}

.ych-floating-media img {
	display: block;
	width: 100%;
}

.ych-voucher-asset {
	align-self: center;
	justify-self: center;
	width: 100%;
}

.ych-voucher-card-stack {
	display: block;
	margin: 0 auto;
	width: min(760px, 100%);
}

.ych-voucher-card-stack img {
	display: block;
	width: 100%;
}

.ych-contact-hero {
	align-items: start;
}

.ych-contact h1 {
	margin-bottom: 48px;
}

.ych-contact-heading span {
	display: block;
}

.ych-contact-hero .ych-rounded-media {
	justify-self: start;
	width: min(746px, 100%);
}

.ych-contact-hero .ych-rounded-media img {
	aspect-ratio: 746 / 777;
}

.ych-form,
.ych-contact-hero .fluentform form[class*="fluent_form"] fieldset {
	display: grid;
	gap: 28px 32px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ych-contact-hero .fluentform .ff-el-group {
	margin: 0 !important;
}

.ych-contact-hero .fluentform .ych-contact-field--name {
	grid-column: 1 / span 1;
}

.ych-contact-hero .fluentform .ych-contact-field--email {
	grid-column: 2 / span 1;
}

.ych-contact-hero .fluentform .ych-contact-field--telephone,
.ych-contact-hero .fluentform .ych-contact-field--message,
.ych-contact-hero .fluentform .ych-submit-wrap {
	grid-column: 1 / -1;
}

.ych-form label,
.fluentform label,
.ff-el-input--label label {
	color: var(--ych-ink);
	display: grid;
	font-size: 16px;
	font-weight: 800;
	gap: 10px;
}

.ych-form label:nth-child(3),
.ych-form label:nth-child(4) {
	grid-column: 1 / -1;
}

.ych-form input,
.ych-form textarea,
.fluentform input,
.fluentform textarea {
	background: var(--ych-white);
	border: 1px solid var(--ych-border);
	border-radius: 999px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.11);
	box-sizing: border-box;
	color: #585858;
	font-size: 18px;
	min-height: 50px;
	padding: 12px 26px;
	width: 100%;
}

.ych-form textarea,
.fluentform textarea {
	border-radius: 28px;
	min-height: 202px;
	resize: vertical;
}

.ych-contact-hero .fluentform input.ff-el-form-control {
	border-radius: 999px;
}

.ych-contact-hero .fluentform textarea.ff-el-form-control {
	border-radius: 28px;
}

.ych-form input:focus,
.ych-form textarea:focus,
.fluentform input:focus,
.fluentform textarea:focus {
	border-color: var(--ych-orange);
	box-shadow: 0 0 0 4px rgba(254, 109, 37, 0.12);
	outline: none;
}

.ych-form button,
.fluentform .ff_submit_btn_wrapper {
	justify-self: end;
}

.ych-mailing-card .fluentform {
	margin: 0;
}

.ych-mailing-card form[class*="fluent_form"] {
	background: var(--ych-white);
	border-radius: 999px;
	display: block;
	gap: 0;
	grid-template-columns: none;
	padding: 4px;
}

.ych-mailing-card form[class*="fluent_form"] fieldset {
	align-items: center;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ych-mailing-card .ff-el-group {
	margin: 0 !important;
}

.ych-mailing-card .ff-el-input--label,
.ych-mailing-card .ff_screen_reader_title {
	display: none !important;
}

.ych-mailing-card .ff-el-input--content {
	margin: 0;
}

.ych-mailing-card .ff-el-form-control,
.ych-mailing-card .fluentform input {
	background: transparent;
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font-size: 16px;
	min-height: 42px;
	padding: 0 22px;
}

.ych-mailing-card .ff_submit_btn_wrapper,
.ych-mailing-card .fluentform .ff-el-group.ff_submit_btn_wrapper {
	grid-column: auto;
	justify-self: auto;
}

.ych-mailing-card .ff-btn-submit {
	min-height: 42px;
	padding: 0 24px;
}

.ych-mailing-card .ff-btn-submit::after {
	display: none;
}

.ych-page .ych-contact-location {
	margin-block-start: 160px;
	margin-top: 160px;
}

.ych-contact-location .ych-display-heading {
	margin-bottom: 100px;
}

.ych-contact-location .ych-contact-details {
	margin-top: 0;
}

.ych-contact-details {
	display: grid;
	gap: 22px 52px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 80px;
}

.ych-contact-detail {
	font-size: 20px;
	line-height: 1.35;
	margin: 0;
}

.ych-contact-detail--address {
	box-sizing: border-box;
	padding-left: 40px;
	position: relative;
}

.ych-contact-detail--address::before {
	background: var(--ych-orange);
	border-radius: 50% 50% 50% 0;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 5px;
	transform: rotate(-45deg);
	width: 20px;
}

.ych-contact-detail--address::after {
	background: var(--ych-white);
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 6px;
	position: absolute;
	top: 11px;
	width: 7px;
}

.ych-contact-detail--social {
	--ych-social-icon: var(--ych-icon-instagram);
	box-sizing: border-box;
	padding-left: 40px;
	position: relative;
}

.ych-contact-detail--social::before {
	background: var(--ych-orange);
	content: "";
	height: 20px;
	left: 0;
	mask: var(--ych-social-icon) center / contain no-repeat;
	-webkit-mask: var(--ych-social-icon) center / contain no-repeat;
	position: absolute;
	top: 4px;
	width: 20px;
}

.ych-map img {
	aspect-ratio: 1.27 / 1;
}

.ych-site-footer {
	background: var(--ych-white);
	border-top: 1px solid var(--ych-border);
}

.ych-footer-main {
	padding: 88px 0;
}

.ych-footer-grid {
	display: grid;
	gap: 64px;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1.45fr;
}

.ych-footer-grid h2 {
	font-family: var(--ych-font-heading);
	font-size: 18px;
	line-height: 1.2;
	margin: 0 0 22px;
}

.ych-footer-brand .ych-logo {
	margin-bottom: 36px;
}

.ych-footer-brand p {
	color: var(--ych-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 360px;
}

.ych-footer-brand .ych-credit {
	margin-top: 34px;
}

.ych-footer-brand .ych-credit a,
.ych-footer-brand .ych-credit a:hover,
.ych-footer-brand .ych-credit a:focus-visible {
	color: var(--ych-orange);
}

.ych-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ych-site-footer .ych-footer-menu a {
	color: var(--ych-black);
	font-size: 15px;
	line-height: 1.8;
	text-decoration: none;
}

.ych-site-footer .ych-footer-menu a:hover,
.ych-site-footer .ych-footer-menu a:focus-visible {
	color: var(--ych-orange);
}

.ych-footer-bar {
	font-size: 12px;
}

.ych-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

.ych-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1200px) {
	:root {
		--ych-display-size: 64px;
		--ych-display-line: 66px;
		--ych-section-title-size: 52px;
		--ych-body-large-size: 20px;
		--ych-body-large-line: 30px;
	}

	.ych-main-header {
		min-height: 120px;
	}

	.ych-nav__list {
		gap: 24px;
	}

	.ych-image-card {
		min-height: 420px;
		padding: 44px;
	}

	.ych-blog-card {
		margin-left: 0;
	}
}

@media (max-width: 980px) {
	:root {
		--ych-page-gutter: 28px;
		--ych-display-size: 52px;
		--ych-display-line: 56px;
	}

	.ych-main-header {
		grid-template-columns: auto auto;
		justify-content: space-between;
		min-height: 110px;
	}

	.ych-logo,
	.custom-logo-link,
	.ych-nav,
	.ych-header-cta {
		grid-column: auto;
	}

	.ych-menu-toggle {
		display: flex;
		grid-column: 2;
		grid-row: 1;
	}

	.ych-header-cta {
		display: none;
	}

	.ych-nav {
		background: var(--ych-white);
		border-bottom: 1px solid var(--ych-border);
		box-shadow: 0 20px 34px rgba(0, 0, 0, 0.08);
		display: none;
		grid-column: 1 / -1;
		justify-self: stretch;
		padding: 10px 0 28px;
	}

	.ych-nav.is-open {
		display: block;
	}

	.ych-nav__list {
		align-items: stretch;
		display: grid;
		gap: 0;
		justify-content: stretch;
	}

	.ych-nav__list a {
		display: block;
		padding: 14px 0;
	}

	.ych-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.ych-about-hero {
		column-gap: var(--ych-grid-gutter);
	}

	[class*="ych-col-start-"] {
		grid-column-start: auto;
	}

	[class*="ych-col-span-"] {
		grid-column-end: span 6;
	}

	.ych-feature-cards,
	.ych-two-col,
	.ych-contact-hero,
	.ych-contact-location,
	.ych-blog-feature {
		row-gap: 48px;
	}

	.ych-menu-grid,
	.ych-menu-grid--2,
	.ych-menu-grid--3,
	.ych-menu-grid--4,
	.ych-event-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ych-menu-column {
		flex-basis: calc((100% - 54px) / 2);
	}

	.ych-section-decoration {
		opacity: 0.18;
	}

	.ych-blog-card {
		margin-top: -80px;
	}

	.ych-blog-feature > * {
		grid-row: auto;
	}

	.ych-contact-details {
		margin-top: 48px;
	}
}

@media (max-width: 700px) {
	:root {
		--ych-page-gutter: 20px;
		--ych-radius: 20px;
		--ych-display-size: 40px;
		--ych-display-line: 44px;
		--ych-hero-title-size: 30px;
		--ych-card-heading-size: 30px;
		--ych-section-title-size: 34px;
		--ych-body-large-size: 18px;
		--ych-body-large-line: 28px;
		--ych-body-size: 16px;
	}

	.ych-page {
		padding-bottom: 88px;
	}

	.ych-page > .ych-grid:first-child,
	.ych-page > .ych-section:first-child {
		margin-block-start: 56px;
		margin-top: 56px;
	}

	.ych-topbar__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-bottom: 12px;
		padding-top: 12px;
	}

	.ych-topbar nav {
		gap: 22px;
	}

	.ych-grid {
		grid-template-columns: 1fr;
	}

	[class*="ych-col-span-"] {
		grid-column-end: auto;
	}

	.ych-mailing-card,
	.ych-image-card,
	.ych-blog-card {
		padding: 28px;
	}

	.ych-image-card {
		min-height: 360px;
	}

	.ych-right-copy {
		text-align: left;
	}

	.ych-right-copy p {
		margin-left: 0;
	}

	.ych-right-copy .wp-block-buttons {
		justify-content: flex-start;
	}

	.ych-page .ych-section,
	.ych-page .ych-workshops,
	.ych-page .ych-reviews,
	.ych-page .ych-blog-feature,
	.ych-page .ych-two-col,
	.ych-page .ych-contact-hero,
	.ych-page .ych-contact-location {
		margin-block-start: 88px;
		margin-top: 88px;
	}

	.ych-menu-grid,
	.ych-menu-grid--2,
	.ych-menu-grid--3,
	.ych-menu-grid--4,
	.ych-event-grid,
	.ych-form,
	.ych-contact-hero .fluentform form[class*="fluent_form"] fieldset,
	.ych-contact-details {
		grid-template-columns: 1fr;
	}

	.ych-menu-track {
		gap: 22px;
		margin-left: calc(var(--ych-page-gutter) * -1);
		margin-right: calc(var(--ych-page-gutter) * -1);
		padding-left: var(--ych-page-gutter);
		padding-right: calc(var(--ych-page-gutter) + var(--ych-menu-fade-size));
	}

	.ych-menu-column {
		flex-basis: 84vw;
		min-width: 84vw;
	}

	.ych-menu-jump-list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		margin-left: calc(var(--ych-page-gutter) * -1);
		margin-right: calc(var(--ych-page-gutter) * -1);
		overflow-x: auto;
		padding-left: var(--ych-page-gutter);
		padding-right: var(--ych-page-gutter);
		scroll-padding-inline: var(--ych-page-gutter);
		-webkit-overflow-scrolling: touch;
	}

	.ych-form label:nth-child(3),
	.ych-form label:nth-child(4),
	.ych-contact-hero .fluentform .ych-contact-field--name,
	.ych-contact-hero .fluentform .ych-contact-field--email,
	.ych-contact-hero .fluentform .ych-contact-field--telephone,
	.ych-contact-hero .fluentform .ych-contact-field--message,
	.ych-contact-hero .fluentform .ych-submit-wrap {
		grid-column: auto;
	}

	.ych-form button,
	.fluentform .ff_submit_btn_wrapper {
		justify-self: stretch;
	}

	.ych-section-decoration {
		display: none;
	}

	.ych-text-decoration {
		display: none;
	}

	.ych-inline-form {
		border-radius: 24px;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.ych-inline-form input {
		min-height: 42px;
	}

	.ych-blog-card {
		margin-top: -36px;
	}

	.ych-footer-main {
		padding: 56px 0;
	}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.ych-reveal {
		opacity: 1;
		transform: none;
	}
}

.eaw-ulx {
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 100%;

	.eaw-li__wrap {
		border-bottom:0!important;

		.eaw-thumb-wrap {
			max-width: 100%!important;
			width:100%!important;
		}
	}

	.eaw-li__flex {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: stretch;
		align-content: stretch;
		gap: 8px;

		.eaw-img {
			display: flex;
			width: 100%;
			margin:0;
			padding:0;

			img {
				border:0;
				margin:0;
				padding:0;
				border-radius: 12px;
			}
		}

		.eaw-title a {
			color: var(--ych-black)!important;
			font-family: var(--ych-font-heading);
			font-weight: 800;
			letter-spacing: 0;
			line-height: 1;
			margin: 0;
			text-wrap: balance;
			font-size: 17px;
		}

		.eaw-time {
			color: var(--ych-black)!important;
		}

		.eaw-time,
		.eaw-summary {
			font-size: var(--ych-small-size);
			line-height: 25px;
		}

		.eaw-booknow a {
			align-items: center;
			background: var(--ych-orange);
			border: 0;
			border-radius: 999px;
			color: var(--ych-white);
			cursor: pointer;
			display: inline-flex;
			font-size: var(--ych-button-size);
			font-weight: 500;
			gap: 10px;
			justify-content: center;
			line-height: 1;
			min-height: 47px;
			padding: 0 29px;
			text-decoration: none;
			transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
			white-space: nowrap;

			&:hover {
				background: var(--ych-orange-dark);
				box-shadow: 0 16px 34px rgba(254, 109, 37, 0.24);
				color: var(--ych-white);
				transform: translateY(-1px);
			}
		}
	}
}
