/* Base theme scaffolding */
:root {
	--color-stratos: #050033;
	--color-white: #ffffff;
	--color-text: #050033;
	--color-body: #f6f6f6;
	--font-heading: "Red Hat Display", sans-serif;
	--font-body: "Montserrat", sans-serif;
	--font-alt: "Source Sans 3", sans-serif;
	/* Responsive gutters that cap at Figma values */
	--layout-gutter: clamp(24px, 3.6vw, 78px);
	--logo-menu-gap: clamp(64px, 7vw, 140px);
	/* Cross-section vertical rhythm: 450px @1920px, scales down with width */
	--section-gap: clamp(80px, 11.75vw, 225px);
	--section-gap-half: calc(var(--section-gap) / 2);
	/* Typography scale */
	--fs-title-lg: clamp(34px, 2.8vw + 12px, 52px);
	--fs-title-md: clamp(26px, 2.1vw + 10px, 38px);
	--fs-card-title: clamp(20px, 1.6vw, 26px);
	--fs-body: clamp(14px, 0.8vw, 15px);
	--fs-body-sm: clamp(13px, 0.8vw, 14px);
	--fs-cta: clamp(13px, 0.9vw, 14px);
	--lh-heading: 1.2;
	--lh-body: 1.55;
	--lh-cta: 1.5;
}

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

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: #fafafa;
	-apple-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	margin-top: 0 !important;
}

body.admin-bar {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

#wpadminbar {
	position: fixed;
	top: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #9c6d36;
	text-decoration: none;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--color-white);
}

.site-header__inner {
	width: 100%;
	margin: 0;
	padding: 14px var(--layout-gutter);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(16px, 3vw, 56px);
	min-height: 80px;
}

.site-branding .site-title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-logo {
	display: block;
	width: auto;
	height: 44px; /* matches figma 52.84x43.11 */
}

.primary-nav {
	position: relative;
	z-index: 15;
}

.primary-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	align-items: center;
	text-transform: none;
}

.primary-nav__list a {
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 8px 0;
	letter-spacing: 0.01em;
	position: relative;
	color: var(--color-stratos);
}

.primary-nav__list > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	height: 3px;
	background: var(--color-stratos);
	opacity: 0;
	transform: scaleX(0.6);
	transform-origin: center;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-nav__list > li > a:hover::after,
.primary-nav__list > li > a:focus-visible::after,
.primary-nav__list > li.current-menu-item > a::after,
.menu-item-brands.is-mega-open > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.menu-item-brands {
	position: static;
}

.brands-mega {
	position: fixed;
	left: 0;
	right: 0;
	top: 80px;
	padding: clamp(32px, 4vw, 48px) var(--layout-gutter) clamp(48px, 6vw, 72px);
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 18;
}

.menu-item-brands:hover .brands-mega,
.menu-item-brands:focus-within .brands-mega,
.menu-item-brands.is-mega-open .brands-mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.brands-mega__inner {
	width: min(100%, 1200px);
	display: grid;
	grid-template-columns: minmax(180px, 220px) minmax(240px, 1fr);
	gap: clamp(48px, 6vw, 120px);
	align-items: start;
}

.brands-mega__title {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	color: var(--color-stratos);
}

.brands-mega__segments {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.brands-mega__segment-button {
	border: none;
	background: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
	cursor: pointer;
	min-width: 180px;
}

.brands-mega__segment-button img {
	width: 7px;
	height: 12px;
}

.brands-mega__segment {
	opacity: 1;
	transition: opacity 0.2s ease;
}

.brands-mega.has-selection .brands-mega__segment {
	opacity: 0.45;
}

.brands-mega.has-selection .brands-mega__segment.is-active {
	opacity: 1;
}

.brands-mega__col--brands {
	min-height: 220px;
}

.brands-mega__brands {
	list-style: none;
	margin: 44px 0 0;
	padding: 0;
	display: none;
	gap: 12px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.brands-mega__brands.is-active {
	display: grid;
}

.brands-mega__brands a:hover,
.brands-mega__brands a:focus-visible {
	color: #9c6d36;
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
}

.site-header__search,
.site-header__lang,
.site-header__lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-direction: row;
	cursor: pointer;
	border: none;
	background: transparent;
	border-radius: 0;
	padding: 8px 0;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	font-size: 15px;
	font-family: var(--font-body);
	transition: color 0.2s ease;
	color: var(--color-stratos);
}

.site-header__lang {
	position: relative;
}

.site-header__lang::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 8px;
}

.site-header__lang-toggle {
	border: none;
	background: transparent;
	padding: 6px 4px;
}

.site-header__lang-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 52px;
	padding: 6px 8px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 20px rgba(18, 20, 31, 0.12);
	display: grid;
	gap: 4px;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__lang:hover .site-header__lang-menu,
.site-header__lang:focus-within .site-header__lang-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.site-header__lang-option {
	border: none;
	background: transparent;
	padding: 2px 0;
	text-align: left;
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-stratos);
	cursor: pointer;
}

.site-header__lang-option.is-active {
	color: #9c6d36;
	font-weight: 600;
}

.site-header__search {
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header__search.is-active {
	border-color: #e7d8c7;
	background: #f6efe8;
	box-shadow: 0 12px 24px rgba(18, 20, 31, 0.08);
}

.site-header__search-input {
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	outline: none;
	font-family: inherit;
	font-size: 13px;
	line-height: 1.6;
	color: var(--color-stratos);
	width: 105px;
	transition: width 0.25s ease;
}

.site-header__search-input::placeholder {
	color: #8c90b0;
}

.site-header__search.is-active .site-header__search-input {
	width: 250px;
}

.site-header__lang:hover,
.site-header__lang:focus-visible {
	color: inherit;
}

.site-header__icon {
	width: 14px;
	height: 14px;
	display: inline-block;
	order: 2;
}

.site-header__lang .site-header__icon {
	width: 12px;
	height: 12px;
	order: 2;
}

.site-header__search span,
.site-header__lang span {
	order: 1;
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	border: none;
	background: transparent;
	padding: 10px;
	gap: 6px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	position: relative;
}

.site-header__toggle svg {
	display: none;
}
.site-header__toggle span[aria-hidden="true"] {
	display: none;
}
.site-header__toggle::before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23050033' viewBox='0 0 24 24'%3E%3Cpath d='M3 11.5a.5.5 0 0 1 .5-.5h17.105a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5m0-7a.5.5 0 0 1 .5-.5h17.105a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5m0 14.475a.5.5 0 0 1 .5-.5h7.526a.5.5 0 1 1 0 1H3.5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E") center/22px 22px no-repeat;
}
.site-header.is-open .site-header__toggle::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23050033' viewBox='0 0 24 24'%3E%3Cpath d='M6.646 6.896a.5.5 0 0 1 .708 0L12 11.543l4.646-4.647a.5.5 0 0 1 .708.708l-4.647 4.646 4.647 4.646a.5.5 0 0 1-.708.708L12 12.957l-4.646 4.647a.5.5 0 0 1-.708-.708l4.647-4.646-4.647-4.646a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.site-header__backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: transparent;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.site-main {
	min-height: 60vh;
}

.front-hero {
	position: relative;
	overflow: hidden;
	background: #000;
	color: #fff;
}

.front-hero__slider {
	position: relative;
	min-height: 820px;
	height: 82vh;
	max-height: 980px;
}

.front-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.front-hero__slide.is-active {
	opacity: 1;
	transform: none;
	z-index: 2;
}

.front-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.front-hero__mask {
	position: absolute;
	inset: 0;
	background-image: url("../images/mask.svg"), url("../images/mask.png");
	background-size: cover;
	background-position: center;
	mix-blend-mode: multiply;
	opacity: 0.5;
	pointer-events: none;
}

.front-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 0, 51, 0.05) 0%, rgba(5, 0, 51, 0.22) 100%);
}

.home-banner {
	display: none !important;
}

.front-hero__content {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	place-items: center;
	gap: 20px;
	padding: clamp(24px, 5vw, 48px);
	text-align: center;
	z-index: 3;
}

.front-hero__headline {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(42px, 4vw + 16px, 72px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #ffffff;
	text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.front-hero__headline span {
	display: block;
}

.front-hero__lede {
	margin: 0;
	max-width: 560px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.front-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 25px;
	border-radius: 100px;
	background: #ffffff;
	color: #050033;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.front-hero__cta:hover,
.front-hero__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
	background: #9c6d36;
	color: #fff;
}

.front-hero__controls {
	position: absolute;
	bottom: clamp(24px, 4vw, 40px);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 4;
}

.front-hero__control {
	display: none;
}

.front-hero__dots {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.front-hero__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	display: inline-block;
	padding: 0;
	appearance: none;
	line-height: 1;
	aspect-ratio: 1 / 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.front-hero__dot.is-active {
	background: #ffffff;
	transform: scale(1.08);
}

.brands-intro {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.brands-intro__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: start;
}

.brands-intro__copy {
	display: grid;
	gap: clamp(20px, 2vw, 28px);
	color: var(--color-stratos);
	justify-items: start;
	padding-left: clamp(24px, 5vw, 120px);
	align-self: center;
}

.brands-intro__lede {
	margin: 0;
	max-width: 364px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.brands-intro__portrait {
	width: clamp(260px, 19vw, 364px);
	aspect-ratio: 364 / 500.56;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 26px rgba(5, 0, 51, 0.14);
}

.brands-intro__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.brands-intro__portrait:hover img,
.brands-intro__portrait:focus-within img {
	transform: scale(1);
}

.brands-intro__media {
	display: flex;
	justify-content: center;
	width: 100%;
}

.brands-intro__collage {
	position: relative;
	width: min(100%, 999px);
	aspect-ratio: 999 / 923.18;
	display: grid;
	place-items: center;
}

.brands-intro__collage-bg {
	position: absolute;
	inset: 0;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(5, 0, 51, 0.14);
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.brands-intro__collage-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.brands-intro__collage-top {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 41.7%;
	max-width: 417px;
	aspect-ratio: 417 / 626.11;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(5, 0, 51, 0.14);
	transition: transform 240ms ease;
	z-index: 2;
}

.brands-intro__collage-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.brands-intro__collage:hover .brands-intro__collage-bg,
.brands-intro__collage:focus-within .brands-intro__collage-bg {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(5, 0, 51, 0.18);
}

.brands-intro__collage:hover .brands-intro__collage-bg img,
.brands-intro__collage:focus-within .brands-intro__collage-bg img,
.brands-intro__collage:hover .brands-intro__collage-top img,
.brands-intro__collage:focus-within .brands-intro__collage-top img {
	transform: scale(1);
}

.brands-intro__collage:hover .brands-intro__collage-top,
.brands-intro__collage:focus-within .brands-intro__collage-top {
	transform: translate(-50%, -50%) translateY(-6px);
}

.brands-portal {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.brands-portal__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(32px, 4vw, 48px);
}

.brands-portal__header {
	text-align: center;
	display: grid;
	gap: 16px;
	justify-items: center;
}

.brands-portal__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.3;
	color: var(--color-stratos);
}

.brands-portal__lede {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.brands-portal__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(8px, 0.55vw, 11px);
	row-gap: clamp(20px, 3vw, 32px);
}

.brands-portal__card {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(5, 0, 51, 0.12);
	background: #f5f6fb;
	display: grid;
	align-items: start;
	justify-items: center;
	text-align: center;
	color: var(--color-stratos);
}

.brands-portal__card--square {
	width: clamp(220px, 17.9vw, 344px);
	aspect-ratio: 1 / 1;
}

.brands-portal__card--medium,
.brands-portal__card--split {
	width: clamp(220px, 17.9vw, 344px);
	aspect-ratio: 344 / 544;
}

.brands-portal__card--tall {
	width: clamp(220px, 17.9vw, 344px);
	aspect-ratio: 344 / 696;
}

.brands-portal__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.brands-portal__label {
	position: absolute;
	top: clamp(18px, 2.2vw, 28px);
	left: clamp(16px, 2vw, 24px);
	right: clamp(16px, 2vw, 24px);
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
	z-index: 2;
}

.brands-portal__card--split {
	display: grid;
	grid-template-rows: 1fr 1fr;
	align-items: stretch;
	background: #ebedf4;
}

.brands-portal__split-top {
	position: relative;
	overflow: hidden;
	border-radius: 30px 30px 0 0;
	width: 100%;
}

.brands-portal__split-top .brands-portal__label {
	position: absolute;
	top: clamp(18px, 2.2vw, 28px);
	left: clamp(16px, 2vw, 24px);
	right: clamp(16px, 2vw, 24px);
}

.brands-portal__split-bottom {
	background: #ebedf4;
	display: grid;
	place-items: center;
	padding: clamp(18px, 2.2vw, 28px);
	border-radius: 0 0 30px 30px;
	width: 100%;
}

.brands-portal__split-bottom p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
	max-width: 240px;
}

.brands-portal__card--split .brands-portal__image {
	height: 100%;
}

.brands-portal__card:hover .brands-portal__image,
.brands-portal__card:focus-within .brands-portal__image {
	transform: scale(1);
}

.brands-portal__footer {
	display: grid;
	justify-items: center;
	gap: 20px;
	text-align: center;
}

.brands-portal__note {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.brands-portal__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 42px;
	border-radius: 999px;
	background: var(--color-stratos);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.01em;
	text-decoration: none;
	box-shadow: 0 18px 44px rgba(5, 0, 51, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.brands-portal__cta:hover,
.brands-portal__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 22px 52px rgba(5, 0, 51, 0.2);
	background: #9c6d36;
	color: #fff;
}

@media (max-width: 960px) {
	.front-hero__slider {
		min-height: 520px;
		height: 72vh;
	}
	.front-hero__headline {
		font-size: clamp(32px, 4vw + 10px, 54px);
		line-height: 1.35;
	}
	.front-hero__lede {
		font-size: 16px;
	}
	.front-hero__cta {
		font-size: 16px;
		padding: 12px 22px;
	}
}

@media (max-width: 1024px) {
	.brands-mega {
		display: none;
	}
}

.with-heart {
	background: #ffffff;
	padding: 0 0 var(--section-gap-half);
}

.with-heart__inner {
	width: 100%;
	margin: 0;
	padding-left: var(--layout-gutter);
	padding-right: 0;
	display: grid;
	grid-template-columns: minmax(280px, 0.45fr) minmax(480px, 0.55fr);
	align-items: center;
	gap: clamp(20px, 2.8vw, 42px);
	justify-items: start;
}

.with-heart__left {
	display: grid;
	gap: clamp(12px, 2vw, 20px);
	justify-items: center;
	text-align: center;
	color: var(--color-stratos);
	width: min(380px, 100%);
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.with-heart__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-md);
	line-height: var(--lh-heading);
	letter-spacing: -0.01em;
}

.with-heart__accent {
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
}

.with-heart__accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: rgba(5, 0, 51, 0.16);
	border-radius: 999px;
	z-index: -1;
}

.with-heart__photo {
	position: static;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.with-heart__photo > img:not(.with-heart__badge) {
	width: 100%;
	height: auto;
	border-radius: 22px;
	clip-path: inset(0 round 22px);
	transform-origin: center;
	transform: scale(1.06);
	transition: transform 0.55s ease-in-out;
}

.with-heart__photo:hover > img:not(.with-heart__badge) {
	transform: scale(1);
}

.with-heart__badge {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	width: clamp(75px, 6.8vw, 95px);
	max-width: 128px;
	min-width: 60px;
	height: auto;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.16));
	object-fit: contain;
	z-index: 2;
}

.with-heart__body {
	margin: 0;
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	max-width: 440px;
	color: var(--color-text);
	text-align: left;
}

.with-heart__right {
	justify-self: stretch;
	align-self: center;
	display: flex;
	justify-content: flex-end;
	margin-right: 0;
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.with-heart__feature {
	display: block;
	width: 100%;
	aspect-ratio: 0.87;
	border-radius: 0;
	object-fit: cover;
	margin-left: auto;
	transition: transform 0.55s ease-in-out;
	clip-path: inset(0 round 0);
	transform-origin: center;
	transform: scale(1.06);
}

.with-heart__feature:hover {
	transform: scale(1);
}

@media (max-width: 1100px) {
	.with-heart__inner {
		grid-template-columns: 1fr;
		gap: clamp(32px, 6vw, 52px);
		padding-right: var(--layout-gutter);
	}
	.with-heart__right {
		justify-content: center;
	}
	.with-heart__feature {
		max-width: 820px;
	}
	.with-heart__body {
		text-align: center;
	}
	.with-heart__badge {
		top: 30%;
		right: 0;
		transform: translate(50%, -50%);
	}
}

@media (max-width: 720px) {
	.with-heart {
		padding: 52px var(--layout-gutter) var(--section-gap-half);
	}
	.with-heart__title {
		font-size: clamp(22px, 5vw, 32px);
	}
	.with-heart__photo {
		max-width: 420px;
	}
	.with-heart__badge {
		width: 64px;
		right: 0;
		top: 36%;
		transform: translate(50%, -50%);
	}
	.with-heart__body {
		font-size: 14px;
	}
}

@media (max-width: 390px) {
	.page-template-page-recipes .recipes-find__inner,
	.page-template-page-recipes-php .recipes-find__inner {
		padding-inline: var(--layout-gutter);
		margin-inline: 0;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	.page-template-page-recipes .recipes-find__slider,
	.page-template-page-recipes-php .recipes-find__slider {
		margin-inline: 0;
		width: calc(100% - 24px);
		margin-inline: auto;
		padding-inline: 0;
	}
}

.training-intro {
	background: #ffffff;
	padding: var(--section-gap) var(--layout-gutter) var(--section-gap-half);
}

.training-intro__inner {
	width: min(100%, 1720px);
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 0.55fr) minmax(260px, 0.45fr);
	align-items: center;
	gap: clamp(28px, 5vw, 52px);
}

.training-intro__media {
	position: relative;
	width: 100%;
	max-width: clamp(320px, 55vw, 926px);
	justify-self: stretch;
	margin-left: 0;
}

.training-intro__frame {
	aspect-ratio: 926 / 706;
	overflow: hidden;
	border-radius: 26px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.training-intro__frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.training-intro__frame:hover img {
	transform: scale(1);
}

.training-intro__badge {
	position: absolute;
	--badge-size: clamp(110px, 12vw, 140px);
	width: var(--badge-size);
	height: auto;
	top: 50%;
	right: calc(var(--badge-size) / -2); /* half in image, half out */
	transform: translateY(-50%);
	height: auto;
	pointer-events: none;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.14));
}

.training-intro__copy {
	display: grid;
	gap: 18px;
	justify-items: center;
	text-align: center;
	color: var(--color-stratos);
	padding-right: clamp(0px, 4vw, 28px);
}

.training-intro__body {
	margin: 0;
	max-width: 440px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

.training-intro__lede {
	margin: 0;
	max-width: 480px;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(26px, 3vw + 12px, 36px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #9c6d36;
}

.about-intro {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.about-intro__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.95fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.about-intro__media {
	position: relative;
	width: 100%;
	justify-self: stretch;
}

.about-intro__frame {
	aspect-ratio: 1 / 1;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	position: relative;
}

.about-intro__bg,
.about-intro__plate {
	position: absolute;
}

.about-intro__bg {
	inset: 0;
}

.about-intro__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 28px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.about-intro__plate {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: clamp(220px, 64%, 420px);
	border-radius: 20px;
	overflow: visible;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
	transition: transform 0.55s ease-in-out;
}

.about-intro__plate-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.about-intro__media:hover .about-intro__bg img,
.about-intro__media:focus-within .about-intro__bg img,
.about-intro__media:hover .about-intro__plate-img,
.about-intro__media:focus-within .about-intro__plate-img {
	transform: scale(1);
}

.about-intro__badge {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
	width: clamp(80px, 12vw, 140px);
	height: auto;
	z-index: 4;
	pointer-events: none;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.16));
}

.about-intro__content {
	display: grid;
	justify-items: end;
	text-align: left;
	padding-right: clamp(24px, 6vw, 130px);
}

.about-intro__card {
	width: min(100%, 420px);
	display: grid;
	gap: 26px;
	color: var(--color-stratos);
}

.about-intro__photo {
	width: min(100%, 340px);
	margin: 0 auto;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.about-intro__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.about-intro__photo:hover img {
	transform: scale(1);
}

.about-intro__text {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
	max-width: min(100%, 420px);
}

.about-intro__text strong {
	font-weight: 600;
}

.community-story {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.community-story__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.1fr) minmax(240px, 1fr);
	gap: clamp(24px, 6vw, 72px);
	align-items: center;
}

.community-story__side {
	position: relative;
	display: flex;
	justify-content: flex-start;
	width: fit-content;
}

.community-story__side--left {
	justify-self: start;
}

.community-story__side--right {
	justify-self: end;
}

.community-story__pair {
	display: flex;
	gap: clamp(12px, 2vw, 24px);
	align-items: stretch;
}

.community-story__tile {
	position: relative;
	width: clamp(140px, 10.3vw, 198px);
	height: clamp(420px, 35.5vw, 681px);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.community-story__tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}

.community-story__tile--left img {
	object-position: left center;
}

.community-story__tile--right img {
	object-position: right center;
}

.community-story__side:hover .community-story__tile img,
.community-story__side:focus-within .community-story__tile img {
	transform: scale(1);
}

.community-story__side:hover .community-story__tile--right img,
.community-story__side:focus-within .community-story__tile--right img {
	transform: scale(1);
}

.community-story__badge {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(35%, -55%) scale(1.15);
	width: clamp(58px, 6.4vw, 94px);
	height: auto;
	pointer-events: none;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.16));
}
.community-story__badge--right {
	display: none;
}

.community-story__center {
	display: grid;
	gap: 14px;
	justify-items: center;
	text-align: center;
	color: var(--color-stratos);
}

.community-story__single {
	width: clamp(160px, 18vw, 230px);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.community-story__single img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}

.community-story__single:hover img,
.community-story__single:focus-within img {
	transform: scale(1);
}

.community-story__body {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.community-story__title {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(24px, 2.6vw + 10px, 34px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #9c6d36;
}

.community-progress {
	background: #fff;
	padding: 0 var(--layout-gutter) var(--section-gap-half);
}

.community-progress__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(32px, 4vw, 48px);
}

.community-progress__header {
	text-align: center;
	display: grid;
	gap: 16px;
	justify-items: center;
	color: var(--color-stratos);
}

.community-progress__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.community-progress__lede {
	margin: 0;
	max-width: 520px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
}

.community-progress__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	background: var(--color-stratos);
	color: #fff;
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.community-progress__cta:hover,
.community-progress__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.community-progress__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(260px, 1fr));
	gap: clamp(18px, 2.5vw, 32px);
}

.progress-card {
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
	background: #eef0f8;
	display: grid;
	grid-template-rows: auto 1fr;
}

.progress-card__media {
	overflow: hidden;
	aspect-ratio: 889.58 / 492.51;
}

.progress-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}

.progress-card:hover .progress-card__media img,
.progress-card:focus-within .progress-card__media img {
	transform: scale(1);
}

.progress-card__body {
	padding: 18px 22px 22px;
	color: var(--color-stratos);
	display: grid;
	gap: 6px;
}

.progress-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: var(--color-stratos);
}

.progress-card__text {
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-stratos);
	max-width: 520px;
}

.community-momentum {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.community-momentum__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(28px, 4vw, 40px);
}

.community-momentum__header {
	text-align: center;
	display: grid;
	gap: 12px;
	justify-items: center;
	color: var(--color-stratos);
}

.community-momentum__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.community-momentum__lede {
	margin: 0;
	max-width: 520px;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.community-momentum__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	background: var(--color-stratos);
	color: #fff;
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.community-momentum__cta:hover,
.community-momentum__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.community-momentum__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	grid-auto-rows: var(--momentum-row);
	gap: clamp(18px, 2.4vw, 26px);
	align-items: stretch;
	--momentum-row: clamp(240px, 20vw, 396px);
}

.momentum-card,
.momentum-media {
	border-radius: 30px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
	min-height: var(--momentum-row);
}

.momentum-card {
	display: grid;
	align-content: center;
	justify-items: center;
	text-align: center;
	padding: clamp(20px, 3vw, 34px);
	gap: 10px;
}

.momentum-card--spring {
	background: #ebedf4;
}

.momentum-card--earth {
	background: #fbf8f4;
}

.momentum-card--zero {
	background: #fff;
	border: 1px solid #9c6d36;
	box-shadow: none;
}

.momentum-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--color-stratos);
}

.momentum-card__text {
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-stratos);
	max-width: 280px;
}

.momentum-card__title--accent,
.momentum-card__text--accent,
.momentum-card__value {
	color: #9c6d36;
}

.momentum-card__value {
	margin: 2px 0 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.momentum-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}

.momentum-media:hover img,
.momentum-media:focus-within img {
	transform: scale(1);
}

.momentum-media--feature {
	grid-column: 3;
	grid-row: 1 / span 2;
}

.momentum-media--tall {
	grid-column: 1;
	grid-row: 2 / span 2;
}

.recipes-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	height: 100vh;
	display: grid;
	align-items: center;
	background: #3a0b11;
	overflow: hidden;
}

.recipes-hero__media {
	position: absolute;
	inset: 0;
}

.recipes-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipes-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8, 6, 38, 0.45), rgba(8, 6, 38, 0.45));
}

.recipes-hero__content {
	position: relative;
	z-index: 1;
	width: min(100%, 720px);
	margin: 0 auto;
	padding: clamp(96px, 16vw, 190px) var(--layout-gutter);
	text-align: center;
	color: #fff;
	display: grid;
	gap: 14px;
}

.recipes-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3.4vw, 44px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.recipes-hero__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
}

.recipes-hero__break {
	display: none;
}

@media (min-width: 1025px) {
	.recipes-hero__break {
		display: inline;
	}
}

.recipes-intro {
	background: #fff;
}

.recipes-intro__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 1.15fr) minmax(320px, 0.85fr);
	gap: clamp(32px, 6vw, 80px);
}

.recipes-intro__media {
	background: #d8f6f7;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(48px, 8vw, 84px);
}

.recipes-intro__media img {
	width: min(100%, 680px);
	height: auto;
	display: block;
}

.recipes-intro__content {
	--recipes-intro-card-width: clamp(240px, 21.7vw, 417px);
	--recipes-intro-card-height: calc(var(--recipes-intro-card-width) * 566.8 / 417);
	--recipes-intro-gap: clamp(24px, 2.4vw, 34px);
	display: grid;
	justify-items: center;
	text-align: center;
	gap: var(--recipes-intro-gap);
	padding: clamp(48px, 8vw, 84px) var(--layout-gutter);
	color: var(--color-stratos);
}

.recipes-intro__lede {
	margin: 0;
	max-width: var(--recipes-intro-card-width);
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
}

.recipes-intro__card {
	position: relative;
	display: grid;
	justify-items: center;
	gap: var(--recipes-intro-gap);
}

.recipes-intro__card-frame {
	width: var(--recipes-intro-card-width);
	aspect-ratio: 417 / 566.8;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.recipes-intro__card-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipes-intro__title {
	margin: 0;
	max-width: var(--recipes-intro-card-width);
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 28px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #9c6d36;
}

.recipes-intro__badge {
	position: absolute;
	width: clamp(70px, 7vw, 118px);
	height: auto;
	pointer-events: none;
}

.recipes-intro__badge--apple {
	left: calc((100% - var(--recipes-intro-card-width)) / 2 - 47px);
	top: calc(var(--recipes-intro-card-height) - 87px);
	transform: rotate(-10deg);
}

:lang(fr) .recipes-intro__badge--apple {
	transform: rotate(-10deg) scale(0.8);
}

.recipes-intro__badge--chili {
	right: calc((100% - var(--recipes-intro-card-width)) / 2 - 44px);
	bottom: -36px;
	width: clamp(56px, 6vw, 96px);
	transform: rotate(12deg);
}

.recipes-find {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.recipes-find__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(22px, 4vw, 40px);
}

.recipes-find__header {
	text-align: center;
	display: grid;
	gap: 10px;
	justify-items: center;
	color: var(--color-stratos);
}

.recipes-find__header--mobile {
	display: none;
}

.recipes-find__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3.2vw, 44px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	max-width: 620px;
}

.recipes-find__lede {
	margin: 0;
	max-width: 520px;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.recipes-find__filters {
	justify-content: center;
}

.recipes-find__slider {
	position: relative;
	display: block;
	padding-top: 36px;
}

.recipes-find__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(200px, 17vw, 300px);
	gap: clamp(12px, 1.6vw, 18px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
	width: 100%;
}

@media (min-width: 1200px) {
	.recipes-find__track {
		--recipes-find-gap: clamp(14px, 1.4vw, 20px);
		gap: var(--recipes-find-gap);
		grid-auto-columns: calc((100% - (4 * var(--recipes-find-gap))) / 5);
	}
}

.recipes-find__track::-webkit-scrollbar {
	display: none;
}

.recipes-find__card {
	display: grid;
	gap: 12px;
	scroll-snap-align: start;
}

.recipes-find__media {
	border-radius: 28px;
	overflow: hidden;
	aspect-ratio: 344 / 471;
}

.recipes-find__slider .recipes-find__card {
	gap: 18px;
}

.recipes-find__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recipes-find__card-title {
	margin: 0;
	margin-top: 15px;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--color-stratos);
}

.recipes-find__nav {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #ebe2d7;
	background: #fff;
	color: #9c6d36;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	position: absolute;
	top: -15px;
}

.recipes-find__nav:hover,
.recipes-find__nav:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	background: #fffaf6;
}

.recipes-find__nav[data-direction="prev"] {
	right: 44px;
}

.recipes-find__nav[data-direction="next"] {
	right: 0;
}

.recipes-find__nav img {
	width: 16px;
	height: 16px;
}

.recipes-recipe {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.recipes-recipe__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(24px, 4vw, 40px);
	justify-items: center;
}

.recipes-recipe__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #050033;
	text-align: center;
}

.recipes-recipe__grid {
	--recipes-recipe-card-width: clamp(220px, 17.9vw, 344px);
	--recipes-recipe-card-gap: clamp(14px, 1.6vw, 22px);
	--recipes-recipe-card-height: calc(var(--recipes-recipe-card-width) * 304.47 / 344);
	display: grid;
	grid-template-columns: repeat(5, minmax(0, var(--recipes-recipe-card-width)));
	grid-template-areas:
		"img1 text1 img2 text2 tall"
		"text3 img3 text4 img4 tall";
	grid-auto-rows: var(--recipes-recipe-card-height);
	gap: var(--recipes-recipe-card-gap);
	justify-content: center;
}

.recipes-recipe__tile {
	border-radius: 28px;
	overflow: hidden;
	background: #eef0f6;
	display: grid;
	place-items: center;
	text-align: center;
	color: #050033;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	padding: clamp(18px, 2vw, 28px);
	box-sizing: border-box;
}

.recipes-recipe__tile p {
	margin: 0;
	max-width: 260px;
}

.recipes-recipe__tile--image {
	padding: 0;
	background: transparent;
}

.recipes-recipe__tile--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 28px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.recipes-recipe__tile--image:hover img,
.recipes-recipe__tile--image:focus-within img {
	transform: scale(1);
}

.recipes-recipe__tile--image:not(.recipes-recipe__tile--tall),
.recipes-recipe__tile--text {
	height: var(--recipes-recipe-card-height);
}

.recipes-recipe__tile--tall {
	position: relative;
	grid-row: 1 / span 2;
	height: calc(var(--recipes-recipe-card-height) * 2 + var(--recipes-recipe-card-gap));
}

.recipes-recipe__tile--pos-1 {
	grid-area: img1;
}

.recipes-recipe__tile--pos-2 {
	grid-area: text1;
}

.recipes-recipe__tile--pos-3 {
	grid-area: img2;
}

.recipes-recipe__tile--pos-4 {
	grid-area: text2;
}

.recipes-recipe__tile--pos-5 {
	grid-area: tall;
}

.recipes-recipe__tile--pos-6 {
	grid-area: text3;
}

.recipes-recipe__tile--pos-7 {
	grid-area: img3;
}

.recipes-recipe__tile--pos-8 {
	grid-area: text4;
}

.recipes-recipe__tile--pos-9 {
	grid-area: img4;
}

.recipes-recipe__cta {
	position: absolute;
	left: 50%;
	bottom: clamp(24px, 3vw, 40px);
	transform: translateX(-50%);
	display: none;
	gap: 12px;
	justify-items: center;
}

.recipes-recipe__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	padding: 12px 24px;
	border-radius: 999px;
	background: #0b0f3a;
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(5, 0, 51, 0.18);
	white-space: nowrap;
}

.recipes-buildmenu {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.recipes-buildmenu__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(24px, 4vw, 40px);
	justify-items: center;
}

.recipes-buildmenu__header {
	text-align: center;
	display: grid;
	gap: 10px;
	color: #050033;
	max-width: 620px;
}

.recipes-buildmenu__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	max-width: 620px;
}

.recipes-buildmenu__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	color: rgba(5, 0, 51, 0.75);
}

.recipes-buildmenu__grid {
	--recipes-buildmenu-card-width: clamp(240px, 17.9vw, 344px);
	display: grid;
	grid-template-columns: repeat(5, minmax(0, var(--recipes-buildmenu-card-width)));
	gap: clamp(16px, 1.6vw, 22px);
	justify-content: center;
}

.recipes-buildmenu__card {
	display: grid;
	overflow: hidden;
	border-radius: 24px;
	background: #eef0f6;
}

.recipes-buildmenu__media {
	aspect-ratio: 344 / 224.01;
	overflow: hidden;
}

.recipes-buildmenu__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.recipes-buildmenu__card:hover .recipes-buildmenu__media img,
.recipes-buildmenu__card:focus-within .recipes-buildmenu__media img {
	transform: scale(1);
}

.recipes-buildmenu__text {
	margin: 0;
	padding: 16px 18px 18px;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
	color: #050033;
}

@media (max-width: 1200px) {
	.recipes-recipe__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.recipes-recipe__tile--tall {
		grid-row: auto;
		aspect-ratio: 344 / 480;
	}
	.recipes-buildmenu__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.recipes-recipe {
		padding-bottom: calc(var(--section-gap-half) + 140px);
		margin-bottom: 24px;
	}
	.recipes-recipe__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"img1 text1"
			"text2 img2"
			"img3 text3"
			"text4 img4"
			"tall tall";
		width: 100%;
		column-gap: 10px;
		row-gap: 5px;
	}
	.recipes-recipe__tile {
		width: 100%;
		padding: 0;
		border-radius: 24px;
	}
	.recipes-recipe__tile--text {
		padding: 14px;
	}
	.recipes-recipe__tile p {
		max-width: none;
	}
	.recipes-recipe__tile--image:not(.recipes-recipe__tile--tall),
	.recipes-recipe__tile--text {
		height: auto;
		aspect-ratio: 344 / 304.47;
	}
	.recipes-recipe__tile--tall {
		grid-row: auto;
		height: auto;
		aspect-ratio: 344 / 426;
	}
	.recipes-recipe__tile--image img {
		border-radius: inherit;
		object-position: center;
	}
	.recipes-recipe__tile--image:not(.recipes-recipe__tile--tall) img {
		max-height: 180px;
	}
	.recipes-recipe__cta {
		width: calc(100% - 32px);
	}
	.recipes-recipe__button {
		width: 100%;
		min-width: 0;
	}
	.recipes-buildmenu__grid {
		grid-template-columns: 1fr;
	}
	.recipes-buildmenu {
		margin-top: calc(var(--section-gap-half) * 2);
	}
	.recipes-buildmenu__lede br {
		display: none;
	}
}

.community-track {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.community-track__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(28px, 4vw, 40px);
}

.community-track__header {
	text-align: center;
	display: grid;
	gap: 12px;
	justify-items: center;
	color: var(--color-stratos);
}

.community-track__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3vw, 44px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.community-track__lede {
	margin: 0;
	max-width: 520px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.community-track__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(200px, 1fr));
	gap: clamp(24px, 4vw, 64px);
	align-items: start;
}

.track-stat {
	display: grid;
	gap: 10px;
	justify-items: center;
	text-align: center;
	color: var(--color-stratos);
}

.track-stat__value {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(56px, 6vw, 120px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--color-stratos);
}

.track-stat__label {
	margin: 0;
	max-width: 320px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.community-stay {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.community-stay__inner {
	width: min(100%, 1800px);
	margin: 0 auto;
	display: grid;
	gap: clamp(28px, 4vw, 44px);
}

.community-stay__header {
	text-align: center;
	display: grid;
	gap: 14px;
	justify-items: center;
	color: var(--color-stratos);
}

.community-stay__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3vw, 44px);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.community-stay__lede {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.community-stay__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: clamp(18px, 2.6vw, 30px);
}

.stay-card {
	border-radius: 30px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
	display: grid;
	grid-template-rows: 1fr auto;
}

.stay-card__media {
	overflow: hidden;
	aspect-ratio: 1.62 / 1;
}

.stay-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	transform-origin: center;
	transition: transform 0.5s ease-in-out;
}

.stay-card:hover .stay-card__media img,
.stay-card:focus-within .stay-card__media img {
	transform: scale(1);
}

.stay-card__footer {
	background: #ebedf4;
	padding: 22px 24px;
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-stratos);
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-training {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.about-training__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.about-training__content {
	display: grid;
	gap: 18px;
	color: var(--color-stratos);
	max-width: 520px;
	justify-self: start;
	padding-left: clamp(24px, 6vw, 130px);
}

.about-training__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.2;
	color: var(--color-stratos);
}

.about-training__body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.about-training__cta {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-training__cta:hover,
.about-training__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.about-training__media {
	justify-self: end;
	width: 100%;
}

.about-training__frame {
	aspect-ratio: 1 / 1;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-training__frame img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.about-training__frame:hover img {
	transform: scale(1);
}

.about-faq {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter);
}

.about-faq__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.2fr);
	gap: clamp(32px, 6vw, 96px);
	align-items: start;
}

.about-faq__intro {
	display: grid;
	gap: 20px;
	color: var(--color-stratos);
	padding-left: clamp(24px, 6vw, 130px);
}

.about-faq__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3.2vw, 44px);
	line-height: 1.1;
}

.about-faq__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	max-width: 320px;
}

.about-faq__cta {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-faq__cta:hover,
.about-faq__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.about-faq__list {
	display: grid;
}

.faq-item {
	border-top: 1px solid #d7d4ea;
}

.faq-item:last-child {
	border-bottom: 1px solid #d7d4ea;
}

.faq-item__question {
	width: 100%;
	background: none;
	border: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	padding: 24px 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(20px, 1.2vw + 12px, 24px);
	line-height: 1.25;
	color: var(--color-stratos);
	text-align: left;
	cursor: pointer;
}

.faq-item__icon {
	width: 22px;
	height: 22px;
	margin-top: 4px;
	transition: transform 0.2s ease;
}

.faq-item__answer {
	padding: 0 0 24px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
	max-width: 640px;
}

.faq-item__answer p {
	margin: 0;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(180deg);
}

.about-guides {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter) var(--section-gap);
}

.about-guides__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	display: grid;
	gap: clamp(32px, 4vw, 56px);
}

.about-guides__header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	display: grid;
	gap: 16px;
	color: var(--color-stratos);
}

.about-guides__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.2;
}

.about-guides__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

.about-guides__link {
	justify-self: center;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	color: var(--color-stratos);
	text-decoration: underline;
	text-underline-offset: 6px;
}

.about-guides__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(160px, 1fr));
	gap: clamp(16px, 2vw, 28px);
	align-items: stretch;
}

.guides-card {
	border-left: 1px solid #d7d4ea;
	padding-left: clamp(16px, 2vw, 24px);
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 18px;
	color: var(--color-stratos);
}

.guides-card__index {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1;
}

.guides-card__title {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
}

.guides-card__media {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	align-self: end;
}

.guides-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-platform {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter) var(--section-gap);
}

.about-platform__inner {
	width: min(100%, 1600px);
	margin: 0 auto;
	display: grid;
	gap: clamp(32px, 4vw, 56px);
}

.about-platform__header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	display: grid;
	gap: 16px;
	color: var(--color-stratos);
}

.about-platform__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.2;
}

.about-platform__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
}

.about-platform__cards {
	display: grid;
	grid-template-columns: repeat(5, minmax(160px, 1fr));
	gap: clamp(16px, 2vw, 24px);
	align-items: stretch;
}

.platform-card {
	border-radius: 22px;
	padding: clamp(32px, 3.2vw, 42px) clamp(18px, 2.4vw, 28px);
	display: grid;
	gap: 0;
	color: var(--color-stratos);
	min-height: 0;
}

.platform-card--cream {
	background: #fbf8f4;
	text-align: center;
	justify-items: center;
	padding: 0 0 clamp(18px, 2.2vw, 26px);
	gap: 0;
	overflow: hidden;
}

.platform-card--slate {
	background: #ebedf4;
	text-align: center;
	justify-items: center;
	color: #050033;
	gap: 0;
	padding-top: clamp(22px, 2.2vw, 30px);
	padding-bottom: clamp(22px, 2.2vw, 30px);
}

.platform-card--outline {
	border: 1px solid #9c6d36;
	background: #fff;
	padding: clamp(16px, 1.8vw, 22px) 0 0;
	text-align: center;
	justify-items: center;
	grid-template-rows: auto 1fr;
}

.platform-card--image {
	padding: 0;
	overflow: hidden;
	position: relative;
	border-radius: 22px;
	min-height: 0;
}

.platform-card__media {
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.platform-card__media--wide {
	aspect-ratio: 16 / 10;
}

.platform-card__media--tall {
	aspect-ratio: 3 / 4;
	border-radius: 0;
	box-shadow: none;
}

.platform-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.platform-card__label {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	letter-spacing: 0.01em;
	line-height: 1.1;
}

.platform-card__label--accent {
	color: #a36c36;
}

.platform-card__value {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1;
}

.platform-card__value--large {
	font-size: clamp(30px, 3.4vw, 44px);
}

.platform-card__body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.1;
	text-align: center;
}

.platform-card__media + .platform-card__label,
.platform-card__label + .platform-card__media {
	margin-top: 6px;
}

.platform-card__label + .platform-card__value,
.platform-card__value + .platform-card__body,
.platform-card__body + .platform-card__value {
	margin-top: 0;
}

.platform-card--cream .platform-card__label {
	color: #9c6d36;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	padding: 0 clamp(18px, 2.4vw, 28px);
}

.platform-card--cream .platform-card__value {
	color: #9c6d36;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 44px;
	line-height: 1.05;
	padding: 0 clamp(18px, 2.4vw, 28px);
}

.platform-card--cream .platform-card__media {
	aspect-ratio: 16 / 9;
	width: 100%;
	border-radius: 22px 22px 18px 18px;
	box-shadow: none;
	margin: 0;
	align-self: stretch;
}

.platform-card--cream .platform-card__media + .platform-card__label {
	margin-top: 26px;
}

.platform-card--cream .platform-card__label + .platform-card__value {
	margin-top: 0;
}

.platform-card--slate .platform-card__label,
.platform-card--slate .platform-card__body {
	color: #050033;
	font-family: var(--font-body);
	font-weight: 400;
}

.platform-card--slate .platform-card__value {
	font-family: var(--font-heading);
	font-weight: 400;
	color: #050033;
}

.platform-card--slate .platform-card__label + .platform-card__value {
	margin-top: 0;
}

.platform-card--slate .platform-card__value + .platform-card__body {
	margin-top: 0;
}

.platform-card--slate .platform-card__body + .platform-card__value {
	margin-top: 0;
}

.platform-card--cream .platform-card__label {
	position: relative;
	transform: translateY(clamp(12px, 1.6vw, 20px));
}

.platform-card--slate .platform-card__label,
.platform-card--slate .platform-card__value:not(.platform-card__value--large),
.platform-card--slate .platform-card__body {
	position: relative;
	transform: translateY(clamp(18px, 2.2vw, 30px));
}

.platform-card--goal .platform-card__label,
.platform-card--goal .platform-card__value:not(.platform-card__value--large),
.platform-card--goal .platform-card__body {
	transform: translateY(clamp(9px, 1.1vw, 15px));
}

.platform-card--goal .platform-card__label {
	transform: translateY(clamp(18px, 2.2vw, 30px));
}

.platform-card--goal .platform-card__label + .platform-card__value {
	margin-top: clamp(-16px, -1.6vw, -10px);
}

.platform-card--goal .platform-card__value + .platform-card__body {
	margin-top: clamp(-18px, -2vw, -12px);
}

.platform-card--goal .platform-card__body + .platform-card__value {
	margin-top: clamp(-18px, -2vw, -12px);
}

.platform-card--goal .platform-card__body {
	transform: translateY(0);
	margin-top: clamp(-38px, -4vw, -22px);
	margin-bottom: clamp(-30px, -3.2vw, -18px);
	line-height: 1.05;
}

.platform-card--pilot .platform-card__label {
	transform: translateY(clamp(10px, 1.2vw, 16px));
}

.platform-card--pilot {
	--pilot-stack-gap: 15px;
}

.platform-card--pilot .platform-card__label + .platform-card__body {
	margin-top: clamp(-10px, -1.2vw, -6px) !important;
}

.platform-card--pilot .platform-card__body:first-of-type {
	margin-top: 0 !important;
	transform: translateY(12px) !important;
}

.platform-card--pilot .platform-card__body:first-of-type + .platform-card__value {
	margin-top: 0 !important;
}

.about-platform__cards .platform-card:nth-child(5) .platform-card__body:first-of-type {
	margin-bottom: -26px !important;
	line-height: 1 !important;
}

.about-platform__cards .platform-card:nth-child(5) .platform-card__body:first-of-type + .platform-card__value {
	margin-top: -26px !important;
}

.platform-card--pilot .platform-card__body + .platform-card__value {
	margin-top: var(--pilot-stack-gap) !important;
}

.platform-card--pilot .platform-card__value + .platform-card__body {
	margin-top: var(--pilot-stack-gap) !important;
}

.platform-card--pilot .platform-card__body + .platform-card__value--large {
	margin-top: var(--pilot-stack-gap) !important;
}

.platform-card--pilot .platform-card__body {
	margin-bottom: 0;
}

.platform-card--outline .platform-card__label {
	color: #9c6d36;
	font-family: var(--font-body);
	padding: 0 clamp(18px, 2.4vw, 28px);
	position: relative;
	transform: translateY(calc(clamp(16px, 1.8vw, 26px) + 40px));
}

.platform-card--outline .platform-card__media {
	aspect-ratio: 3 / 2;
	margin-top: clamp(2px, 0.3vw, 6px);
	margin-bottom: 0;
	width: 100%;
	border-radius: 22px;
	align-self: end;
}

.platform-card--image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/mask.svg") center/cover no-repeat;
	opacity: 0.95;
	z-index: 1;
	pointer-events: none;
}

.platform-card__caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 28px;
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
	z-index: 2;
	text-align: center;
}

.about-platform__footer {
	display: grid;
	gap: 20px;
	justify-items: center;
	text-align: center;
}

.about-platform__note {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	max-width: 520px;
	color: var(--color-stratos);
}

.about-platform__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 26px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-platform__cta:hover,
.about-platform__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

@media (max-width: 1024px) {
	.about-training__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.about-training__content {
		text-align: center;
		align-items: center;
		justify-self: center;
		padding-left: 0;
	}
	.about-training__cta {
		justify-self: center;
	}
	.about-training__media {
		justify-self: center;
		max-width: 720px;
	}
	.about-faq__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.about-faq__intro {
		padding-left: 0;
		text-align: center;
		justify-items: center;
	}
	.about-faq__cta {
		justify-self: center;
	}
	.about-guides__grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
	.about-platform__cards {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
	.platform-card {
		min-height: 280px;
	}
}

@media (min-width: 1280px) {
	.brands-portal__cards {
		flex-wrap: nowrap;
	}
}

@media (max-width: 720px) {
	.about-training {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.about-training__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.about-training__body {
		font-size: 15px;
	}
	.about-training__frame {
		border-radius: 22px;
	}
	.about-faq {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.about-faq__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.about-faq__lede {
		font-size: 15px;
	}
	.faq-item__question {
		font-size: 18px;
	}
	.about-faq__answer {
		font-size: 15px;
	}
	.about-guides {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.about-guides__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.guides-card__media {
		border-radius: 18px;
	}
	.about-platform {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.about-platform__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.about-platform__lede {
		font-size: 15px;
	}
	.about-platform__note {
		font-size: 15px;
	}
	.platform-card {
		min-height: 0;
	}
	.platform-card--cream .platform-card__value {
		font-size: 36px;
	}
}

@media (max-width: 1024px) {
	.brands-intro__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.brands-intro__copy {
		justify-items: center;
		text-align: center;
		padding-left: 0;
	}
	.brands-intro__lede {
		max-width: 520px;
	}
	.brands-portal__inner {
		width: min(100%, 960px);
	}
	.brands-portal__lede {
		max-width: 520px;
	}
	.about-intro__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.about-intro__media {
		max-width: 720px;
	}
	.about-intro__content {
		justify-items: center;
		text-align: center;
		padding-right: 0;
	}
}

@media (max-width: 720px) {
	.brands-portal__title {
		font-size: clamp(24px, 6vw, 30px);
	}
	.brands-portal__lede,
	.brands-portal__note,
	.brands-portal__label,
	.brands-portal__split-bottom p {
		font-size: 15px;
	}
	.brands-portal__card {
		width: min(100%, 340px);
	}
	.brands-portal__card--tall {
		aspect-ratio: 344 / 544;
	}
	.brands-portal__cta {
		font-size: 15px;
		padding: 12px 34px;
	}
	.brands-intro__lede {
		font-size: 15px;
	}
	.brands-intro__portrait {
		border-radius: 16px;
	}
	.brands-intro__collage-bg {
		border-radius: 18px;
	}
	.brands-intro__collage-top {
		border-radius: 16px;
	}
	.about-intro {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.about-intro__frame {
		border-radius: 22px;
	}
	.about-intro__frame img {
		border-radius: 22px;
	}
	.about-intro__photo {
		border-radius: 16px;
	}
	.about-intro__text {
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	.community-story__inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.community-story__side {
		width: 100%;
	}
	.community-story__badge {
		right: 50%;
		transform: translate(60%, -40%);
	}
	.community-progress__cards {
		grid-template-columns: 1fr;
	}
	.community-momentum__grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}
	.recipes-hero__content {
		padding: clamp(88px, 14vw, 140px) var(--layout-gutter);
	}
	.recipes-intro__inner {
		grid-template-columns: 1fr;
	}
	.recipes-intro__media {
		padding: clamp(40px, 8vw, 64px);
	}
	.recipes-intro__content {
		padding-top: 0;
	}
	.recipes-find__slider {
		grid-template-columns: 1fr;
	}
	.recipes-find__nav {
		display: none;
	}
	.community-track__stats {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}
	.community-stay__grid {
		grid-template-columns: repeat(2, minmax(240px, 1fr));
	}
	.momentum-media--feature,
	.momentum-media--tall {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 720px) {
	.page-template-page-community .front-hero__lede,
	.page-template-page-community-php .front-hero__lede {
		white-space: normal;
		max-width: min(100%, 520px);
	}
	.page-template-page-community .front-hero__lede br,
	.page-template-page-community-php .front-hero__lede br {
		display: none;
	}
	.page-template-page-novotel-home .novotel-logo,
	.page-template-page-novotel-home-php .novotel-logo {
		left: 0;
		right: auto;
		width: 100%;
		transform: none;
	}
	.front-hero__slider {
		min-height: 60svh;
		height: 60svh;
		max-height: 60svh;
	}
	.recipes-hero {
		min-height: 70svh;
		height: 70svh;
	}
	.page-template-page-recipes,
	.page-template-page-recipes .site-main {
		overflow-x: hidden;
	}
	.community-story {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.community-story__tile {
		--community-story-single-width: clamp(140px, 40vw, 200px);
		width: var(--community-story-single-width);
		height: calc(var(--community-story-single-width) * 2.475);
		border-radius: 22px;
	}
	.community-story__side {
		justify-content: center;
	}
	.community-story__side--right {
		position: relative;
	}
	.community-story__pair {
		justify-content: center;
	}
	.community-story__single {
		width: 50%;
		height: auto;
		justify-self: center;
		border-radius: 18px;
	}
	.community-story__single img {
		height: auto;
	}
	.community-story__body {
		font-size: 15px;
	}
	.community-story__title {
		font-size: clamp(22px, 6vw, 30px);
	}
	.community-story__badge {
		width: clamp(52px, 16.8vw, 76px);
	}
	.community-story__badge--left {
		display: block;
	}
	.community-story__badge--right {
		display: none;
	}
	.community-story__badge--left {
		right: 9%;
		transform: translate(60%, -40%);
	}
	.community-progress__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.community-progress__lede {
		font-size: 15px;
	}
	.progress-card {
		border-radius: 22px;
	}
	.progress-card__body {
		padding: 16px 18px 20px;
	}
	.community-momentum {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter);
	}
	.community-momentum__title {
		font-size: clamp(26px, 6vw, 34px);
	}
	.community-momentum__lede {
		font-size: 13px;
	}
	.community-momentum__grid {
		grid-template-columns: 1fr;
	}
	.recipes-hero__content {
		padding: clamp(56px, 16vw, 96px) var(--layout-gutter);
	}
	.recipes-hero__title {
		font-size: clamp(26px, 7vw, 34px);
	}
	.recipes-intro__media img {
		width: min(100%, 520px);
	}
	.recipes-intro__card-frame {
		width: clamp(240px, 72vw, 360px);
		border-radius: 24px;
	}
	.recipes-intro__title {
		font-size: clamp(20px, 6vw, 26px);
	}
	.recipes-intro__badge--apple {
		top: auto;
		bottom: clamp(96px, 28vw, 126px);
		left: calc((100% - var(--recipes-intro-card-width)) / 2 - 65px);
		width: clamp(91px, 9.1vw, 153px);
	}
	:lang(fr) .recipes-intro__badge--apple {
		transform: rotate(-10deg) scale(0.8);
	}
	.recipes-intro__badge--chili {
		right: 8px;
	}
	.recipes-find__title {
		font-size: clamp(26px, 7vw, 34px);
	}
	.recipes-find__track {
		grid-auto-flow: column;
		grid-auto-columns: 100%;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 12px;
		min-width: 0;
	}
	.recipes-find__media {
		border-radius: 22px;
		aspect-ratio: 2 / 3;
	}
	.recipes-find__card-title {
		margin-top: 10px;
		font-size: 16px;
	}
	.recipes-find__slider {
		display: grid;
		grid-template-columns: 32px 1fr 32px;
		gap: 12px;
		align-items: center;
		padding-inline: 12px;
		margin-inline: calc(var(--layout-gutter) * -1);
		width: calc(100% + (var(--layout-gutter) * 2));
	}
	.recipes-find__nav {
		position: static;
		display: inline-flex;
		transform: none;
	}
	.novotel-signature__intro {
		justify-items: center;
	}
	.novotel-signature__cta {
		justify-self: center;
		margin-inline: auto;
	}
	.novotel-recipes__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.recipes-find__filters {
		width: 100%;
	}
	.recipes-find__inner {
		width: 100%;
		max-width: 100%;
	}
	.recipes-find .novotel-filters {
		width: 100%;
		justify-content: stretch;
	}
	.recipes-find .novotel-filter {
		width: 100%;
	}
	.recipes-find .novotel-filter__button,
	.recipes-find .novotel-filter__search {
		width: 100%;
		justify-content: space-between;
		box-sizing: border-box;
	}
	.community-track__stats {
		grid-template-columns: 1fr;
	}
	.track-stat__label {
		font-size: 15px;
	}
	.community-stay__grid {
		grid-template-columns: 1fr;
	}
	.stay-card {
		border-radius: 22px;
	}
	.stay-card__footer {
		padding: 18px 20px;
		font-size: 13px;
		min-height: 64px;
	}
	.momentum-card__title {
		font-size: 18px;
	}
	.momentum-card__text {
		font-size: 13px;
	}
	.momentum-card__value {
		font-size: 24px;
	}
}

@media (max-width: 1024px) {
	.training-intro__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 0 var(--layout-gutter);
	}
	.training-intro__media {
		max-width: 720px;
		justify-self: center;
	}
	.training-intro__badge {
		--badge-size: clamp(96px, 13vw, 120px);
		right: calc(var(--badge-size) / -2);
		top: 50%;
	}
}

@media (max-width: 720px) {
	.training-intro {
		padding: clamp(52px, 10vw, 72px) var(--layout-gutter) var(--section-gap-half);
	}
	.training-intro__frame {
		border-radius: 20px;
	}
	.training-intro__frame img {
		border-radius: 20px;
	}
.training-intro__badge {
	--badge-size: clamp(78px, 18vw, 98px);
	right: calc(var(--badge-size) / -2);
	top: 50%;
	}
	.training-intro__body {
		font-size: 15px;
	}
	.training-intro__lede {
		font-size: clamp(22px, 6vw, 30px);
	}
}

.learn {
	padding: var(--section-gap-half) var(--layout-gutter);
	background: #fff;
}

.learn__header {
	text-align: center;
	max-width: 860px;
	margin: 0 auto clamp(34px, 4vw, 52px);
	display: grid;
	gap: 16px;
}

.learn__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-lg);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.learn__lede {
	margin: 0 auto;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
	max-width: 720px;
}

.learn__cta {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.learn__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.learn__modules {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.learn__module {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	background: #e9eaf6;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.learn__module--two {
	background: #eef0f9;
}
.learn__module--one {
	border-radius: 24px 0 0 24px;
}
.learn__module--two {
	border-radius: 0 24px 24px 0;
}

.learn__media {
	width: 100%;
	height: 100%;
	min-height: clamp(260px, 26vw, 420px);
	overflow: hidden;
}

.learn__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}
.learn__module--one .learn__media {
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}
.learn__module--one .learn__media img {
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}
.learn__module--two .learn__media img {
	border-radius: 0;
}
.learn__media:hover img {
	transform: scale(1);
}

.learn__body {
	padding: clamp(28px, 4vw, 46px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	color: var(--color-stratos);
	text-align: left;
}

.learn__label {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.3;
	color: #100d4f;
	letter-spacing: -0.01em;
}

.learn__text {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
}

.learn__badge {
	position: absolute;
	width: clamp(130px, 13.5vw, 166px);
	left: 50%;
	top: -11%;
	transform: translate(-50%, 0);
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
	pointer-events: none;
}

@media (max-width: 1200px) {
	.learn {
		padding: clamp(56px, 8vw, 88px) var(--layout-gutter);
	}
	.learn__modules {
		width: 100%;
	}
	.learn__badge {
		left: 50%;
	}
}

@media (max-width: 860px) {
	.learn__header {
		gap: 14px;
	}
	.learn__title {
		font-size: clamp(30px, 6vw, 40px);
	}
	.learn__lede {
		font-size: 15px;
	}
	.learn__modules {
		grid-template-columns: 1fr;
	}
	.learn__module {
		grid-template-columns: 1fr;
		border-radius: 24px;
	}
	.learn__module--two {
		grid-template-columns: 1fr;
		border-radius: 24px;
	}
	.learn__media {
		min-height: clamp(240px, 60vw, 360px);
	}
	.learn__badge {
		left: clamp(64px, 22vw, 140px);
		top: 28%;
	 }
}

@media (max-width: 540px) {
	.learn__cta {
		width: 100%;
		max-width: 320px;
	}
	.learn__body {
		padding: clamp(20px, 6vw, 32px);
	}
	.learn__badge {
		left: clamp(54px, 34vw, 120px);
		width: clamp(88px, 18vw, 110px);
		top: 24%;
	}
}

.toolkits {
	padding: var(--section-gap-half) var(--layout-gutter);
	background: #fff;
}

.toolkits__header {
	text-align: center;
	max-width: 840px;
	margin: 0 auto clamp(36px, 4vw, 52px);
	display: grid;
	gap: 16px;
}

.toolkits__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-lg);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.toolkits__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.toolkits__cta {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.toolkits__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.toolkits__grid {
	width: calc(100% - (var(--layout-gutter) * 2));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(12px, 1.6vw, 18px);
}

.toolkits__card {
	background: #e9eaf6;
	border-radius: 22px;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.toolkits__media {
	width: 100%;
	aspect-ratio: 1016 / 470;
	overflow: hidden;
}

.toolkits__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.toolkits__media:hover img {
	transform: scale(1);
}

.toolkits__body {
	padding: clamp(18px, 2vw, 22px);
	display: grid;
	gap: 8px;
	align-content: start;
	color: var(--color-stratos);
}

.updates {
	padding: var(--section-gap-half) var(--layout-gutter);
	background: #fff;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.updates__header {
	text-align: center;
	max-width: 880px;
	margin: 0 auto clamp(34px, 3.6vw, 48px);
	display: grid;
	gap: 16px;
	position: relative;
	z-index: 5; /* keep CTAs above carousel track */
}

.updates__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-lg);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.updates__lede {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.updates__cta-row {
	justify-self: center;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.updates__cta {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	border-radius: 999px;
	background: #0a063b;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	position: relative;
	z-index: 6;
	pointer-events: auto;
	cursor: pointer;
	text-decoration: none;
	border: none;
	appearance: none;
}

.updates__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	background: #1a184a;
	color: #fff;
}

.updates__cta--secondary {
	background: #fff;
	color: #0a063b;
	border: 2px solid #0a063b;
	box-shadow: none;
}

.updates__cta--secondary:hover {
	background: #0a063b;
	color: #fff;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.updates__viewport {
	width: calc(100% - (var(--layout-gutter) * 2));
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.updates__track {
	display: flex;
	align-items: stretch;
	gap: clamp(12px, 1.6vw, 18px);
	animation: updates-marquee 9s linear infinite;
}

.updates__card {
	flex: 0 0 clamp(220px, 24vw, 380px);
	border-radius: 22px;
	overflow: hidden;
}

.updates__media {
	width: 100%;
	aspect-ratio: 1330 / 1570;
	overflow: hidden;
	border-radius: 22px;
}

.updates__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.updates__media:hover img {
	transform: scale(1);
}

.updates__track:hover {
	animation-play-state: paused;
}

@keyframes updates-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 900px) {
	.updates {
		padding: clamp(52px, 8vw, 72px) var(--layout-gutter);
	}
	.updates__viewport {
		width: 100%;
	}
	.updates__card {
		flex-basis: clamp(200px, 48vw, 320px);
	}
}

@media (max-width: 640px) {
	.updates__card {
		flex-basis: clamp(200px, 72vw, 320px);
	}
	.updates__track {
		gap: clamp(10px, 4vw, 14px);
	}
}

.toolkits__label {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(18px, 1.4vw, 22px);
	line-height: 1.3;
	color: #1a184a;
}

.toolkits__list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 4px;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--color-stratos);
}

@media (max-width: 900px) {
	.toolkits {
		padding: clamp(52px, 8vw, 72px) var(--layout-gutter);
	}
	.toolkits__grid {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.toolkits__grid {
		grid-template-columns: 1fr;
	}
	.toolkits__card {
		grid-template-rows: minmax(200px, 1fr) auto;
	}
	.toolkits__body {
		padding: clamp(16px, 4vw, 20px);
	}
}

.vegan {
	padding: var(--section-gap-half) 0 var(--section-gap-half);
	--vegan-media-h: clamp(220px, 22vw, 280px);
}

.vegan__inner {
	width: calc(100% - (var(--layout-gutter) * 2));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(240px, 0.28fr) minmax(240px, 0.28fr) minmax(280px, 0.44fr);
	gap: clamp(12px, 1.4vw, 18px);
}

.vegan__card {
	background: transparent;
	border-radius: 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: calc(var(--vegan-media-h) * 2);
}

.vegan__media {
	height: var(--vegan-media-h);
	overflow: hidden;
}

.vegan__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 22px 22px 0 0;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.vegan__media:hover img {
	transform: scale(1);
}

.vegan__body {
	position: relative;
	background: #e9eaf6;
	padding: clamp(22px, 3vw, 26px);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--color-stratos);
	min-height: var(--vegan-media-h);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 12px;
	border-radius: 0 0 22px 22px;
}

.vegan__badge {
	position: absolute;
	right: clamp(14px, 2vw, 18px);
	bottom: clamp(14px, 2vw, 20px);
	width: clamp(105px, 10.5vw, 131px);
	height: auto;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.vegan__card--stats {
	background: transparent;
	display: grid;
	grid-template-rows: 1fr 1fr;
}

.vegan__stats {
	padding: clamp(18px, 2vw + 4px, 26px);
	display: grid;
	gap: clamp(12px, 1.5vw, 18px);
	color: var(--color-stratos);
	border-radius: 22px 22px 0 0;
	background: #e9eaf6;
	min-height: 284px;
}

.vegan__stats-intro {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
}

.vegan__stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(120px, 1fr));
	gap: clamp(12px, 2vw, 22px);
	align-items: start;
}

.vegan__stat {
	display: grid;
	gap: 4px;
	justify-items: start;
	text-align: left;
}

.vegan__stat img {
	width: 34px;
	height: 34px;
}

.vegan__stat-figure {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-stratos);
}

.vegan__stat-label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-stratos);
}

.vegan__media--wide img {
	width: 100%;
	display: block;
	object-fit: cover;
	height: 284px;
	border-radius: 0 0 22px 22px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.vegan__media--wide {
	overflow: hidden;
	border-radius: 0 0 22px 22px;
}

.vegan__media--wide:hover img {
	transform: scale(1);
}

@media (max-width: 1100px) {
	.vegan__inner {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
	.vegan__card {
		height: auto;
	}
	.vegan__media {
		height: clamp(220px, 32vw, 284px);
	}
	.vegan__body {
		min-height: clamp(220px, 32vw, 284px);
	}
	.vegan__card--stats {
		grid-template-rows: 1fr 1fr;
	}
	.vegan__stats {
		min-height: clamp(220px, 32vw, 284px);
	}
	.vegan__media--wide img {
		height: clamp(220px, 32vw, 284px);
	}
	.vegan__stat-figure {
		font-size: 44px;
	}
	.vegan__stat-label {
		font-size: 13px;
	}
}

@media (max-width: 820px) {
	.vegan {
		padding: 62px var(--layout-gutter) 96px;
	}
	.vegan__inner {
		width: 100%;
	}
	.vegan__card {
		border-radius: 18px;
	}
	.vegan__body {
		font-size: 16px;
	}
	.vegan__badge {
		width: 82px;
		bottom: -12px;
	}
	.vegan__stats {
		gap: 10px;
	}
	.vegan__stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
	.vegan__stat-figure {
		font-size: 40px;
	}
}

@media (max-width: 540px) {
	.vegan {
		padding: 48px var(--layout-gutter) 0;
	}
	.vegan__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.vegan__card {
		min-height: 0;
	}
	.vegan__card--stats {
		grid-template-rows: auto auto;
	}
	.vegan__body {
		font-size: 15px;
		min-height: clamp(200px, 50vw, 260px);
	}
	.vegan__badge {
		right: 10px;
		width: 76px;
	}
	.vegan__stats-intro {
		font-size: 15px;
	}
	.vegan__stats {
		min-height: 0;
	}
	.vegan__stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	.vegan__stat {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 10px;
		row-gap: 2px;
		min-height: 96px;
		padding: 10px 12px;
		border-radius: 14px;
		background: #f7f8ff;
		border: 1px solid rgba(10, 16, 54, 0.08);
	}
	.vegan__stat:nth-child(2) {
		background: #ffffff;
	}
	.vegan__stat:nth-child(3) {
		grid-column: 1 / -1;
	}
	.vegan__stat img {
		width: 30px;
		height: 30px;
		grid-row: 1 / span 2;
	}
	.vegan__stat-figure {
		font-size: 32px;
		line-height: 1.15;
	}
	.vegan__stat-label {
		font-size: 12px;
	}
	.vegan__media--wide img {
		height: clamp(180px, 46vw, 220px);
	}
}

@media (max-width: 540px) {
	.pathways {
		padding: 48px var(--layout-gutter) 60px;
	}
	.pathways__header {
		margin: 0 auto 24px;
	}
}

.pathways {
	padding: var(--section-gap-half) 0 var(--section-gap-half);
	--pathways-media-h: clamp(160px, 18vw, 200px);
}

.pathways__header {
	text-align: center;
	margin: 0 auto clamp(36px, 4vw, 52px);
	max-width: min(820px, 72%);
	padding: 0 var(--layout-gutter);
}

.pathways__title {
	margin: 0 0 clamp(12px, 1.6vw, 16px);
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-lg);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.pathways__lede {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.pathways__inner {
	width: calc(100% - (var(--layout-gutter) * 2));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(12px, 1.4vw, 18px);
}

.pathways__card {
	background: #e9eaf6;
	border-radius: 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: calc(var(--pathways-media-h) + 240px);
}

.pathways__media {
	height: var(--pathways-media-h);
	overflow: hidden;
}

.pathways__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 22px 22px 0 0;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.pathways__media:hover img {
	transform: scale(1);
}

.pathways__body {
	flex: 1;
	padding: clamp(20px, 2.2vw, 24px);
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 12px;
	color: var(--color-stratos);
	min-height: clamp(220px, 22vw, 260px);
}

.pathways__card-title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(18px, 1.4vw, 23px);
	line-height: var(--lh-heading);
	color: #1a184a;
}

.pathways__text {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.pathways__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: var(--fs-cta);
	line-height: var(--lh-cta);
	color: #1a184a;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 16px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pathways__cta img {
	width: 10px;
	height: auto;
}

.pathways__cta:hover {
	background: #9c6d36;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.pathways__card {
		height: auto;
	}
	.pathways__media {
		--pathways-media-h: clamp(150px, 24vw, 200px);
	}
	.pathways__body {
		padding: clamp(18px, 3vw, 22px);
		min-height: clamp(200px, 28vw, 240px);
	}
	.pathways__card-title {
		font-size: 22px;
	}
	.pathways__text {
		font-size: 14px;
	}
}

@media (max-width: 720px) {
	.pathways {
		padding: var(--section-gap-half) var(--layout-gutter);
	}
	.pathways__title {
		font-size: clamp(28px, 6vw, 38px);
	}
	.pathways__lede {
		font-size: 15px;
	}
	.pathways__body {
		padding: clamp(16px, 4vw, 20px);
		min-height: auto;
		grid-template-rows: auto auto auto;
		gap: 8px;
	}
	.pathways__card-title {
		font-size: 21px;
	}
	.pathways__text {
		font-size: 13px;
	}
	.pathways__cta {
		font-size: 12px;
		font-weight: 500;
	}
}

.proof {
	padding: var(--section-gap-half) var(--layout-gutter);
}

.proof__header {
	text-align: center;
	margin-bottom: clamp(28px, 3.6vw, 42px);
}

.proof__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: var(--fs-title-lg);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.proof__wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(30px, 3.4vw, 46px);
	display: grid;
	grid-template-columns: auto minmax(420px, 520px) auto;
	align-items: center;
	justify-items: center;
	justify-content: center;
	column-gap: clamp(22px, 2.8vw, 34px);
}

.proof__column {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(14px, 2vw, 18px);
	align-self: center;
}

.proof__column--center {
	align-self: center;
}

.proof__column--left,
.proof__column--right {
	flex-wrap: nowrap;
	align-items: center;
}

.proof__item {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 22px;
}

.proof__item img:not(.proof__badge) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
	clip-path: inset(0 round 22px);
	transform-origin: center;
	transform: scale(1.06);
	transition: transform 0.55s ease-in-out;
}

.proof__item:hover img:not(.proof__badge) {
	transform: scale(1);
}

.proof__item--tall {
	width: clamp(160px, 11vw, 200px);
	height: clamp(420px, 34vw, 500px);
}

.proof__item--short {
	width: clamp(190px, 14vw, 230px);
	height: clamp(325px, 27.5vw, 400px);
}

.proof__item--tomatoes {
	overflow: visible;
	border-radius: 22px;
}

.proof__item--tomatoes .proof__media {
	position: relative;
	width: 100%;
	height: 100%;
	flex: 1 1 auto;
	align-self: stretch;
	overflow: hidden;
	border-radius: 22px;
}

.proof__item--tomatoes .proof__media .proof__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proof__item--tomatoes .proof__badge {
	width: clamp(108px, 10vw, 144px);
	height: auto;
	position: absolute;
	left: 0;
	top: clamp(12px, 3vw, 18px);
	transform: translate(-50%, 0);
	z-index: 1;
	pointer-events: none;
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.proof__item--tomatoes .proof__media img {
	clip-path: inset(0 round 22px);
	border-radius: 22px;
	transform-origin: center;
	transform: scale(1.06);
	transition: transform 0.55s ease-in-out;
}

.proof__item--tomatoes:hover .proof__media img {
	transform: scale(1);
}

.proof__quote {
	text-align: center;
	display: grid;
	gap: 28px;
	justify-items: center;
	padding: 0;
	width: min(620px, 100%);
	align-self: center;
	margin-left: clamp(-10px, -4vw, -28px); /* nudge closer to left image block */
}

.proof__blockquote {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 30px;
	line-height: 1.32;
	color: #9c6d36;
}

.proof__blockquote p {
	margin: 0;
	max-width: 32ch;
}

.proof__blockquote p::before,
.proof__blockquote p::after {
	content: none;
}

.proof__attribution {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-stratos);
}

@media (max-width: 1200px) {
	.proof__wrap {
		grid-template-columns: repeat(3, minmax(150px, 1fr));
		row-gap: clamp(16px, 3vw, 28px);
		padding: 0 var(--layout-gutter);
		justify-content: center;
	}
	.proof__column {
		flex-direction: column;
		align-items: center;
		gap: clamp(12px, 2vw, 16px);
	}
	.proof__column--left,
	.proof__column--right {
		flex-direction: column;
	}
	.proof__quote {
		grid-column: 1 / -1;
	}
	.proof__item--tomatoes .proof__badge {
		left: 0;
		right: auto;
		transform: translate(-50%, 0);
	}
	.proof__item--tall {
		height: clamp(360px, 40vw, 440px);
	}
	.proof__item--short {
		height: clamp(240px, 30vw, 320px);
	}
}

@media (max-width: 820px) {
	.proof {
		padding: 72px var(--layout-gutter) 104px;
	}
	.proof__wrap {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
		row-gap: clamp(18px, 4vw, 30px);
	}
	.proof__column {
		flex-direction: column;
		align-items: center;
	}
	.proof__column--left,
	.proof__column--right {
		flex-direction: column;
	}
	.proof__quote {
		grid-column: 1 / -1;
	}
	.proof__item--tomatoes .proof__badge {
		left: 0;
		right: auto;
		top: clamp(10px, 3vw, 16px);
		transform: translate(-50%, 0);
	}
}

@media (max-width: 540px) {
	.proof__wrap {
		grid-template-columns: 1fr;
	}
	.proof__column--left,
	.proof__column--right {
		flex-direction: row;
		align-items: flex-end;
		width: 100%;
	}
	.proof__column--left .proof__item,
	.proof__column--right .proof__item {
		flex: 1 1 0;
	}
	.proof__item--tall,
	.proof__item--short {
		width: 100%;
	}
	.proof__item--tall {
		height: clamp(420px, 34vw, 500px);
	}
	.proof__item--short {
		height: clamp(325px, 27.5vw, 400px);
	}
	.proof__blockquote {
		font-size: clamp(22px, 4.2vw, 30px);
	}
	.proof__attribution {
		font-size: 15px;
	}
	.proof__item--tomatoes .proof__badge {
		left: 0;
		right: auto;
		transform: translate(-50%, 0);
	}
}

@media (max-width: 540px) {
	.home .with-heart {
		padding-top: 52px;
		padding-bottom: var(--section-gap-half);
	}
	.home .vegan {
		padding-top: calc(var(--section-gap-half) + 36px);
		padding-bottom: 36px;
	}
	.home .pathways,
	.home .proof,
	.home .brand-stats {
		padding-top: var(--section-gap-half);
		padding-bottom: var(--section-gap-half);
	}
}

@media (max-width: 540px) {
	.pathways__card {
		min-height: 0;
	}
	.pathways__body {
		flex: 0 0 auto;
		min-height: 0;
		grid-template-rows: auto auto auto;
		gap: 8px;
	}
	.pathways__cta {
		padding: 6px 10px;
	}
}

.brand-stats {
	padding: var(--section-gap-half) var(--layout-gutter) var(--section-gap-half);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(32px, 6vw, 64px);
}

.brand-stats__media {
	text-align: center;
	display: grid;
	gap: clamp(18px, 3vw, 26px);
	justify-items: center;
	border-radius: 26px;
}

.brand-stats__media-frame {
	overflow: hidden;
	border-radius: 26px;
	line-height: 0;
	display: inline-block;
}

.brand-stats__media img {
	display: block;
	width: clamp(300px, 32vw, 420px);
	height: auto;
	border-radius: 26px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.brand-stats__lede {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(22px, 1.8vw, 30px);
	line-height: 1.35;
	color: var(--color-stratos);
	max-width: 560px;
}

.brand-stats__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 26px;
	background: var(--color-stratos);
	color: #fff;
	text-decoration: none;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2;
	border-radius: 26px;
	min-width: 150px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.brand-stats__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	background: #9c6d36;
	color: #fff;
}

.brand-stats__media:hover img {
	transform: scale(1);
}

.brand-stats__list {
	display: grid;
	gap: clamp(26px, 4vw, 32px);
	width: 100%;
	max-width: 640px;
}

.brand-stats__row {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: clamp(14px, 2vw, 20px);
	padding-bottom: clamp(18px, 2vw, 24px);
	border-bottom: 1px solid #050033;
}

.brand-stats__row--last {
	border-bottom: none;
	padding-bottom: 0;
}

.brand-stats__figure {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(64px, 6vw + 14px, 120px);
	line-height: 1;
	color: var(--color-stratos);
}

.brand-stats__label {
	justify-self: end;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(16px, 1vw, 17px);
	line-height: var(--lh-body);
	color: var(--color-stratos);
	text-align: right;
}

@media (max-width: 1024px) {
	.brand-stats {
		grid-template-columns: 1fr;
		gap: clamp(28px, 6vw, 40px);
		text-align: center;
	}
	.brand-stats__list {
		margin: 0 auto;
	}
	.brand-stats__row {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
		border-bottom: 1px solid #050033;
	}
	.brand-stats__label {
		justify-self: center;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.brand-stats {
		padding: var(--section-gap-half) var(--layout-gutter);
	}
	.brand-stats__lede {
		font-size: clamp(20px, 4vw, 26px);
	}
	.brand-stats__figure {
		font-size: clamp(48px, 10vw, 88px);
	}
	.brand-stats__label {
		font-size: 16px;
	}
	.page-template-page-brands .front-hero__lede br {
		display: none;
	}
}

.site-footer {
	background: var(--color-body);
	margin-top: 0;
	padding: 0 0 72px;
	color: #000000;
	font-family: var(--font-alt);
}

.site-footer__top {
	margin: 0 auto;
	padding: 64px 0 56px;
	width: calc(100% - (var(--layout-gutter) * 2));
	display: grid;
	place-items: center;
	gap: 16px;
}

.site-footer__brandlines {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.site-footer__line {
	border-top: 1px solid #e2e2e8;
	height: 1px;
}

.site-footer__logo {
	height: 44px;
	width: auto;
}

.site-footer__nav {
	margin: 0 auto;
	padding: 52px 0 56px;
	width: min(calc(100% - (var(--layout-gutter) * 2)), 1720px);
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 80px;
	color: #000000;
	font-family: var(--font-alt);
}

.footer-col {
	flex: 0 0 auto;
}

.footer-col.footer-subscribe {
	flex: 0 0 360px;
	max-width: 380px;
}

.footer-col h4 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col li {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-col.footer-subscribe p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
}

.footer-subscribe__form {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.footer-subscribe__input {
	border: none;
	border-bottom: 1px solid #b5b5b5;
	background: transparent;
	padding: 8px 0;
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-alt);
	color: #000000;
}

.footer-subscribe__input::placeholder {
	color: #000000;
	opacity: 0.6;
}

.footer-subscribe__input:focus {
	outline: none;
	border-bottom-color: #8f8f8f;
}

.footer-subscribe__button {
	border: none;
	background: #e6e6e6;
	color: #000000;
	border-radius: 20px;
	padding: 10px 18px;
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-alt);
	font-weight: 500;
	cursor: pointer;
}

.footer-subscribe__note {
	margin: 0;
	font-size: 12px !important;
	line-height: 1.5 !important;
	color: #000000;
	font-family: var(--font-alt);
	font-weight: 400;
}

.site-footer__bottom {
	border-top: 1px solid #d6d6d6;
	margin: 48px auto 0;
	padding-top: 24px;
	width: calc(100% - (var(--layout-gutter) * 2));
}

.site-footer__social {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin: 20px 0 16px;
}

.site-footer__social img {
	width: 20px;
	height: 20px;
}

.site-footer__legal {
	display: flex;
	justify-content: center;
	gap: 16px;
	font-size: 12px;
	margin-bottom: 12px;
}

.site-footer__copyright {
	text-align: center;
	font-size: 12px;
	color: #000000;
	margin: 0;
}

@media (max-width: 1024px) {
	:root {
		--mobile-header-height: 72px;
	}
	.site-header {
		border-bottom: 1px solid #ececf1;
	}
	.site-header__inner {
		padding: 12px var(--layout-gutter);
		min-height: var(--mobile-header-height);
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 12px;
	}
	.site-branding {
		justify-content: center;
	}
	.site-logo {
		height: 38px;
	}
	.site-header__toggle {
		display: inline-flex;
		border: none;
		background: transparent;
	}
	.site-header__right {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
	}
	.site-header__lang {
		display: none;
	}
	.site-header__search {
		width: auto;
		height: 44px;
		padding: 6px 10px;
		border-radius: 999px;
		border: 1px solid transparent;
		background: transparent;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.site-header__search-input {
		width: 0;
		opacity: 0;
	}
	.site-header__search.is-active {
		border-color: #e7d8c7;
		background: #f6efe8;
	}
	.site-header__search.is-active .site-header__search-input {
		width: 176px !important;
		opacity: 1;
	}
	.site-header__search-input::placeholder {
		font-size: 12px !important;
	}
	.site-header__search {
		padding-right: 3px;
	}
	.site-header__icon {
		width: 18px;
		height: 18px;
	}
	.primary-nav {
		position: fixed;
		inset: 0;
		top: var(--mobile-header-height);
		background: #fff;
		padding: 6px var(--layout-gutter) 36px;
		box-shadow: 0 18px 36px rgba(5, 0, 51, 0.08);
		transform: translateY(-6%);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease, transform 0.25s ease;
		overflow-y: auto;
		z-index: 15;
	}
	.site-header.is-open .primary-nav {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	.primary-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.primary-nav__list li {
		border-bottom: 1px solid #e8e8ee;
	}
	.primary-nav__list li:last-child {
		border-bottom: none;
	}
	.primary-nav__list a {
		padding: 18px 4px;
		font-size: 18px;
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.primary-nav__list > li > a::after {
		content: "";
		position: static;
		width: 28px;
		height: 28px;
		flex-shrink: 0;
		margin-left: 10px;
		opacity: 1;
		transform: none;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239c6d36' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M10.136 7.657a.5.5 0 0 1 .707-.021l3.822 3.596c.447.42.447 1.116 0 1.536l-3.822 3.596a.5.5 0 0 1-.686-.728l3.822-3.596c.018-.017.021-.03.021-.04s-.003-.023-.02-.04l-3.823-3.596a.5.5 0 0 1-.021-.707' clip-rule='evenodd'/%3E%3C/svg%3E") center/28px 28px no-repeat;
	}
	.primary-nav__list > li.current-menu-item > a::after,
	.menu-item-brands.is-mega-open > a::after {
		opacity: 1;
		transform: none;
	}
	.primary-nav__list > li.menu-item-brands.is-sub-open > a::after {
		transform: rotate(90deg);
	}
	.menu-item-brands .brands-mega {
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		padding: 12px 0 18px;
		background: transparent;
		display: none;
	}
	.menu-item-brands.is-sub-open .brands-mega {
		display: block;
	}
	.brands-mega__inner {
		width: 100%;
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 0 4px;
	}
	.brands-mega__title {
		margin: 0 0 8px;
		font-size: 14px;
	}
	.brands-mega__segments {
		gap: 8px;
		width: 100%;
		padding-right: 12px;
		box-sizing: border-box;
	}
	.brands-mega__segment-button {
		padding-right: 0;
	}
	.brands-mega__segment-button {
		width: 100%;
		padding: 10px 0;
		padding-right: 0;
		font-size: 15px;
	}
	.brands-mega.has-selection .brands-mega__segment {
		opacity: 1;
	}
	.brands-mega__segment {
		opacity: 1;
		border-bottom: 1px solid #ececf1;
	}
	.brands-mega__segment:last-child {
		border-bottom: none;
	}
	.brands-mega__segment-button img {
		transition: transform 0.2s ease;
	}
	.brands-mega__segment.is-open .brands-mega__segment-button img {
		transform: rotate(90deg);
	}
	.brands-mega__col--brands {
		min-height: 0;
		display: none;
	}
	.brands-mega__brands {
		margin: 6px 0 0;
		padding-left: 16px;
		font-size: 15px;
		gap: 6px;
	}
	.brands-mega__brands a {
		padding: 6px 0;
		font-size: 15px;
		line-height: 1.5;
	}
	.brands-mega__segment .brands-mega__brands {
		display: none;
	}
	.brands-mega__segment.is-open .brands-mega__brands {
		display: grid;
	}
	.site-header__backdrop {
		display: block;
	}
	.site-header.is-open .site-header__backdrop {
		opacity: 1;
		pointer-events: auto;
	}
	body.nav-open {
		overflow: hidden;
	}
	.site-footer__nav {
		flex-wrap: wrap;
		column-gap: 32px;
		row-gap: 28px;
	}
	.site-footer__brandlines {
		grid-template-columns: 1fr;
	}
	.site-footer__line {
		display: none;
	}
	.footer-col.footer-subscribe {
		flex: 1 1 100%;
	}
}

@media (max-width: 540px) {
	.site-footer__brandlines {
		grid-template-columns: 1fr auto 1fr;
	}
	.site-footer__line {
		display: block;
	}
}

/* Login page */
body.page-template-page-login,
body.page-template-page-login-php,
body.login-page-body {
	background: #fff;
	min-height: 100vh;
	padding-top: 0 !important;
}

.page-template-page-login .site-header,
.page-template-page-login-php .site-header,
.page-id-28 .site-header,
.page-template-page-login .site-footer,
.page-template-page-login-php .site-footer,
.page-id-28 .site-footer,
.login-page-body .site-header,
.login-page-body .site-footer {
	display: none !important;
}

@media (max-width: 1024px) {
	.page-template-page-login .site-header,
	.page-template-page-login-php .site-header,
	.page-id-28 .site-header,
	.login-page-body .site-header {
		display: block !important;
	}
	.page-template-page-login .site-footer,
	.page-template-page-login-php .site-footer,
	.page-id-28 .site-footer,
	.login-page-body .site-footer {
		display: block !important;
	}
	.login-page__logo {
		display: none;
	}
	.login-page__inner {
		gap: clamp(48px, 10vw, 92px);
	}
	.login-page__content {
		gap: clamp(40px, 9vw, 72px);
		padding-block: clamp(16px, 5vw, 32px);
	}
}

.page-template-page-login #wpadminbar,
.page-template-page-login-php #wpadminbar,
.page-id-28 #wpadminbar,
.login-page-body #wpadminbar {
	display: none !important;
}

.page-template-page-login .site-main,
.page-template-page-login-php .site-main,
.login-page-body .site-main {
	min-height: 100vh;
	padding: 0;
}

.login-page {
	min-height: 100vh;
	width: 100%;
	padding: clamp(32px, 4vw, 96px);
	display: grid;
	place-items: center;
	background: #fff;
}

.login-page__inner {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(32px, 5vw, 80px);
	min-height: min(1100px, calc(100vh - (clamp(32px, 4vw, 96px) * 2)));
	padding-inline: clamp(32px, 5vw, 96px);
}

.login-page__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(32px, 5vw, 56px);
	padding-inline: clamp(12px, 4vw, 48px);
}

.login-page__logo img {
	width: clamp(72px, 8vw, 120px);
	height: auto;
}

.login-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 46px;
	border-radius: 999px;
	background: var(--color-stratos);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.01em;
	box-shadow: 0 18px 44px rgba(5, 0, 51, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login-page__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 22px 52px rgba(5, 0, 51, 0.2);
	background: #9c6d36;
	color: #fff;
}

.login-page__button:focus-visible {
	outline: 2px solid #9c6d36;
	outline-offset: 3px;
}

.login-page__visual {
	display: flex;
	justify-content: flex-end;
	align-self: stretch;
	border-radius: clamp(24px, 2.6vw, 32px);
	overflow: hidden;
}

.login-page__visual img {
	width: 100%;
	max-width: clamp(360px, 45.7vw, 878px);
	aspect-ratio: 878 / 930;
	height: auto;
	object-fit: cover;
	border-radius: clamp(24px, 2.6vw, 32px);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
	display: block;
	margin-left: auto;
	transform: scale(1.06);
	transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.login-page__visual img:hover {
	transform: scale(1);
	box-shadow: 0 34px 70px rgba(0, 0, 0, 0.16);
}

/* Novotel recipes filter hero */
.recipe-filter-hero {
	background: var(--color-body);
	padding: clamp(40px, 8vw, 120px) var(--layout-gutter) var(--section-gap-half);
	display: flex;
	justify-content: center;
}

.recipe-filter-hero__inner {
	width: 100%;
	max-width: 1200px;
	text-align: center;
	display: grid;
	gap: clamp(18px, 3vw, 32px);
	align-items: center;
}

.recipe-filter-hero__brand {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(18px, 1.2vw + 6px, 24px);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #1b1aa3;
	justify-self: center;
}

.recipe-filter-hero__rule {
	display: block;
	width: 100%;
	height: 1px;
	background: #2f2c6c;
	opacity: 0.5;
}

.recipe-filter-hero__icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 68px;
	height: 68px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #e4e4eb;
	box-shadow: 0 10px 30px rgba(5, 0, 51, 0.06);
	margin: 0 auto;
}

.recipe-filter-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: clamp(34px, 3vw + 10px, 54px);
	line-height: var(--lh-heading);
	color: var(--color-stratos);
}

.recipe-filter-hero__lede {
	margin: 0;
	font-size: clamp(16px, 1vw + 12px, 18px);
	line-height: 1.6;
	color: #5a5a8a;
}

.recipe-filter-hero__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: clamp(6px, 1.6vw, 16px);
	position: relative;
}

.recipe-filter-hero__filter {
	position: relative;
}

.recipe-filter-hero__filter .filter-pill__menu {
	padding: 14px 0;
}

.recipe-filter-hero__filter:nth-child(2) .filter-pill {
	border-color: #e4dacc;
}

.recipe-filter-hero__filter:nth-child(3) .filter-pill {
	border-color: #dbe2f9;
}

.filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	min-width: 170px;
	border-radius: 999px;
	border: 1px solid #e0e0e8;
	background: #f4f4f8;
	color: #1b1aa3;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible {
	background: #fff;
	border-color: #c9c9df;
	box-shadow: 0 8px 24px rgba(5, 0, 51, 0.08);
	transform: translateY(-1px);
	outline: none;
}

.filter-pill__chevron {
	display: inline-block;
	width: 10px;
	height: 10px;
	position: relative;
}

.filter-pill__chevron::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.8;
}

.filter-pill__menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e6e6f1;
	box-shadow: 0 14px 28px rgba(5, 0, 51, 0.12);
	z-index: 5;
	list-style: none;
}

.recipe-filter-hero__filter.is-open .filter-pill__menu {
	display: block;
}

.filter-pill__option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	color: #0d1aa2;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
	position: relative;
}

.filter-pill__option::before {
	content: "";
	width: 22px;
	height: 22px;
	border-radius: 8px;
	border: 2px solid currentColor;
	display: inline-flex;
	flex-shrink: 0;
	background: transparent;
	box-shadow: inset 0 0 0 2px transparent;
}

.filter-pill__option:hover,
.filter-pill__option:focus-visible {
	background: #f3f3fb;
	color: #050033;
	outline: none;
	transform: translateY(-1px);
}

.filter-pill__option.is-selected {
	color: #0d1aa2;
}

.filter-pill__option.is-selected::before {
	background: #0d1aa2;
	box-shadow: inset 0 0 0 6px #fff;
}

.filter-pill--search {
	min-width: unset;
	background: #ebebf2;
	padding-inline: 18px 22px;
}

.filter-pill__icon {
	width: 14px;
	height: 14px;
}

/* Novotel logo bar */
.novotel-logo {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #fff;
	border-top: 0.5px solid rgba(3, 3, 3, 0.5); /* neutral top line */
	border-bottom: 0.75px solid #1e22aa; /* brand-tinted bottom line per Figma */
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 120px;
}

.novotel-logo img {
	display: block;
	height: 30px;
	max-height: 30px;
	width: auto;
}

.novotel-logo--home {
	margin-bottom: 0;
}

/* Novotel recipes page */
.novotel-page {
	padding: clamp(40px, 6vw, 68px) var(--layout-gutter) clamp(70px, 10vw, 120px);
	background: var(--color-body);
	display: grid;
	gap: clamp(80px, 10vw, 120px);
}

.novotel-hero {
	display: grid;
	gap: 20px;
	text-align: center;
	align-items: center;
	justify-items: center;
	padding-top: clamp(6px, 2vw, 18px);
}

.novotel-hero__icon img {
	width: 52px;
	height: 52px;
}

.novotel-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(36px, 3vw + 12px, 48px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1e22aa;
}

.novotel-hero__subtitle {
	margin: 0;
	color: #6164c3;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.5;
}

.novotel-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: clamp(6px, 1.5vw, 12px);
}

.novotel-filter {
	position: relative;
}

.novotel-filter__button,
.novotel-filter__search {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid #dadde8;
	background: #fff;
	color: #1e22aa;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.novotel-filter__button:hover,
.novotel-filter__button:focus-visible {
	border-color: #1e22aa;
	box-shadow: 0 10px 20px rgba(30, 34, 170, 0.12);
	outline: none;
}

.novotel-filter__chevron {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.novotel-filter.is-open .novotel-filter__chevron {
	transform: rotate(180deg);
}

.novotel-filter__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #fff;
	border: 1px solid #dadde8;
	border-radius: 16px;
	padding: 14px 14px 12px;
	box-shadow: 0 12px 26px rgba(5, 0, 51, 0.08);
	min-width: 220px;
	display: grid;
	gap: 10px;
	z-index: 5;
}

.novotel-filter__dropdown[hidden] {
	display: none;
}

.novotel-filter__option {
	display: grid;
	grid-template-columns: 22px 1fr;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 500;
	color: #1e22aa;
	cursor: pointer;
}

.novotel-filter__option input {
	width: 22px;
	height: 22px;
	border: 1.5px solid #1e22aa;
	border-radius: 6px;
	accent-color: #1e22aa;
}

.novotel-filter__search {
	border: 1px solid #dadde8;
	background: #f3f3f6;
	color: #1e22aa;
	box-shadow: 0 10px 20px rgba(5, 0, 51, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease, width 0.25s ease;
	width: clamp(160px, 22vw, 220px);
}

.novotel-filter__search:hover,
.novotel-filter__search:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(5, 0, 51, 0.06);
	outline: none;
	border-color: #1e22aa;
}

.novotel-filter__search.is-active {
	width: clamp(240px, 32vw, 360px);
}

.novotel-filter__search-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.novotel-filter__search-input {
	border: none;
	background: transparent;
	width: 100%;
	height: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: #1e22aa;
	outline: none;
	padding: 0;
}

.novotel-filter__search-input::placeholder {
	color: rgba(30, 34, 170, 0.5);
}

.recipes-find .novotel-filter__button,
.recipes-find .novotel-filter__search {
	color: #050033;
	border-color: #ebe2d7;
}

.recipes-find .novotel-filter__search {
	background: #f5f0eb;
}

.recipes-find .novotel-filter__button:hover,
.recipes-find .novotel-filter__button:focus-visible,
.recipes-find .novotel-filter__search:hover,
.recipes-find .novotel-filter__search:focus-visible {
	border-color: #ebe2d7;
	box-shadow: 0 10px 20px rgba(5, 0, 51, 0.08);
}

.recipes-find .novotel-filter__dropdown {
	border-color: #ebe2d7;
}

.recipes-find .novotel-filter__option {
	color: #050033;
}

.recipes-find .novotel-filter__option input {
	border-color: #050033;
	accent-color: #050033;
}

.recipes-find .novotel-filter__search-input {
	color: #050033;
}

.recipes-find .novotel-filter__search-input::placeholder {
	color: rgba(5, 0, 51, 0.5);
}

@media (max-width: 720px) {
	.page-template-page-recipes .recipes-find__header,
	.page-template-page-recipes-php .recipes-find__header {
		display: grid;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding-inline: var(--layout-gutter) !important;
		box-sizing: border-box;
		overflow: visible;
		text-align: center;
		justify-items: center;
		position: relative;
		z-index: 2;
	}
	.page-template-page-recipes .recipes-find__lede,
	.page-template-page-recipes-php .recipes-find__lede {
		max-width: min(520px, 100%);
	}
	.page-template-page-recipes .recipes-find__title,
	.page-template-page-recipes-php .recipes-find__title,
	.page-template-page-recipes .recipes-find__lede,
	.page-template-page-recipes-php .recipes-find__lede {
		display: block;
		opacity: 1;
		visibility: visible;
		position: relative;
		z-index: 1;
		width: 100%;
		margin: 0 auto;
	}

	.page-template-page-recipes .recipes-find__inner,
	.page-template-page-recipes .recipes-find__filters,
	.page-template-page-recipes-php .recipes-find__inner,
	.page-template-page-recipes-php .recipes-find__filters,
	.page-template-page-novotel-recipes .novotel-filters,
	.page-template-page-novotel-recipes-php .novotel-filters {
		width: 100%;
		max-width: 100%;
	}
	.page-template-page-recipes .recipes-find__inner,
	.page-template-page-recipes-php .recipes-find__inner {
		padding-inline: var(--layout-gutter);
		box-sizing: border-box;
		overflow-x: hidden;
	}
	.page-template-page-recipes .recipes-find__filters,
	.page-template-page-recipes-php .recipes-find__filters {
		display: contents;
		overflow-x: hidden;
	}
	.page-template-page-novotel-recipes .novotel-filters,
	.page-template-page-novotel-recipes-php .novotel-filters {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
		overflow-x: hidden;
	}
	.page-template-page-recipes .recipes-find .novotel-filter,
	.page-template-page-recipes .recipes-find .novotel-filter__search,
	.page-template-page-recipes-php .recipes-find .novotel-filter,
	.page-template-page-recipes-php .recipes-find .novotel-filter__search {
		width: min(320px, calc(100vw - (var(--layout-gutter) * 2)));
		max-width: 100%;
		/*margin: 0 auto 15px;*/
		box-sizing: border-box;
		min-width: 0;
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.page-template-page-recipes .recipes-find .novotel-filter__search,
	.page-template-page-recipes-php .recipes-find .novotel-filter__search {
		margin-bottom: 0;
	}
	.page-template-page-recipes .recipes-find .novotel-filter__button,
	.page-template-page-recipes .recipes-find .novotel-filter__search,
	.page-template-page-recipes-php .recipes-find .novotel-filter__button,
	.page-template-page-recipes-php .recipes-find .novotel-filter__search {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
		margin: 0;
		display: inline-flex;
		opacity: 1;
		visibility: visible;
	}
	.page-template-page-novotel-recipes .novotel-filter,
	.page-template-page-novotel-recipes .novotel-filter__search,
	.page-template-page-novotel-recipes-php .novotel-filter,
	.page-template-page-novotel-recipes-php .novotel-filter__search {
		width: min(320px, calc(100vw - (var(--layout-gutter) * 2)));
		max-width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		min-width: 0;
	}
	.page-template-page-novotel-recipes .novotel-filter__button,
	.page-template-page-novotel-recipes .novotel-filter__search,
	.page-template-page-novotel-recipes-php .novotel-filter__button,
	.page-template-page-novotel-recipes-php .novotel-filter__search {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
		margin: 0;
	}
}

.novotel-story {
	display: grid;
	grid-template-columns: minmax(320px, 0.4fr) minmax(560px, 0.6fr);
	gap: clamp(8px, 2vw, 20px);
	align-items: center;
}

.novotel-story__media {
	max-width: clamp(240px, 34vw, 520px);
	width: 100%;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: 0 26px 46px rgba(5, 0, 51, 0.14);
}

.novotel-story__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 720px;
	aspect-ratio: 708 / 720;
	object-fit: cover;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-story__media:hover img {
	transform: scale(1);
}

.novotel-story__content {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: clamp(18px, 3vw, 28px);
	align-self: stretch;
}

.novotel-story__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(20px, 2.6vw, 28px);
}

.novotel-story__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(34px, 2.6vw + 8px, 44px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1e22aa;
}

.novotel-story__dish {
	position: relative;
	flex-shrink: 0;
	width: clamp(240px, 18vw, 270px);
	height: clamp(240px, 18vw, 270px);
	overflow: visible;
	border-radius: 26px;
	box-shadow: 0 18px 34px rgba(5, 0, 51, 0.12);
}

.novotel-story__dish-frame {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 26px;
}

.novotel-story__dish-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 26px;
	transition: transform 0.45s ease-in-out;
	transform: scale(1.06);
	transform-origin: center;
}

.novotel-story__dish:hover .novotel-story__dish-image {
	transform: scale(1);
}

.novotel-story__badge {
	position: absolute;
	--badge-size: clamp(96px, 9vw, 110px);
	width: var(--badge-size);
	height: auto;
	top: -40px;
	left: -62px;
	filter: drop-shadow(0 12px 28px rgba(5, 0, 51, 0.12));
	transform: none;
	pointer-events: none;
	z-index: 3;
}

.novotel-story__copy {
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: clamp(12px, 2vw, 18px);
	align-self: end;
	align-items: start;
}

.novotel-story__copy p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
	color: #1e22aa;
}

.novotel-story__copy-col {
	display: grid;
	gap: 12px;
	align-self: start;
	margin-top: 0;
}
.novotel-signature {
	display: grid;
	grid-template-columns: minmax(280px, 0.36fr) minmax(640px, 0.64fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.novotel-signature__intro {
	display: grid;
	gap: 16px;
	max-width: 520px;
	align-self: start;
}

.novotel-signature__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 2.4vw + 6px, 40px);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1e22aa;
}

.novotel-signature__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 22px;
	background: #1e22aa;
	color: #fff;
	text-decoration: none;
	border-radius: 100px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	box-shadow: 0 12px 26px rgba(5, 0, 51, 0.12);
	transition: transform 0.2s ease, box-shadow 0.25s ease;
	width: fit-content;
}

.novotel-signature__cta:hover,
.novotel-signature__cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 18px 30px rgba(5, 0, 51, 0.16);
	outline: none;
	background: #9c6d36;
	color: #fff;
}

.novotel-signature__slider {
	overflow: hidden;
}

.novotel-signature__track {
	display: flex;
	gap: 0;
	transition: transform 0.6s ease;
	will-change: transform;
}

.novotel-signature__slide {
	min-width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: clamp(18px, 2.6vw, 24px);
}

.novotel-signature__card {
	display: grid;
	gap: 12px;
	align-content: start;
}

.novotel-signature__media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 36px rgba(5, 0, 51, 0.12);
}

.novotel-signature__image {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 0.6s ease;
	transform: scale(1.02);
	transform-origin: center;
}

.novotel-signature__card:hover .novotel-signature__image {
	transform: scale(1);
}

.novotel-signature__badge {
	position: absolute;
	--badge-size: clamp(82px, 6.5vw, 102px);
	width: var(--badge-size);
	height: auto;
	top: 14px;
	right: 14px;
	filter: drop-shadow(0 12px 28px rgba(5, 0, 51, 0.12));
	pointer-events: none;
	transition: transform 0.25s ease;
}

.novotel-signature__body {
	display: grid;
	gap: 6px;
}

.novotel-signature__card-title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #1e22aa;
}

.novotel-signature__card-desc {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
	color: #1e22aa;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 960px) {
	.novotel-story {
		grid-template-columns: 1fr;
		gap: clamp(24px, 6vw, 36px);
		justify-items: center;
		text-align: center;
	}
	.novotel-story__media {
		max-width: min(520px, 100%);
	}
	.novotel-story__content {
		justify-items: center;
	}
	.novotel-story__heading {
		flex-direction: column;
		align-items: center;
	}
	.novotel-story__dish {
		width: clamp(200px, 48vw, 260px);
		height: clamp(200px, 48vw, 260px);
	}
	.novotel-story__badge {
		top: -24px;
		left: 50%;
		transform: translateX(-50%);
	}
	.novotel-story__copy {
		grid-template-columns: 1fr;
		max-width: 560px;
		justify-items: center;
	}
	.novotel-story__copy p {
		text-align: center;
	}
	.novotel-signature {
		grid-template-columns: 1fr;
		gap: clamp(24px, 6vw, 40px);
		justify-items: center;
		text-align: center;
	}
	.novotel-signature__intro {
		max-width: 560px;
	}
	.novotel-signature__cta {
		align-self: center;
	}
	.novotel-signature__slide {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.novotel-story__dish {
		width: clamp(180px, 70vw, 240px);
		height: clamp(180px, 70vw, 240px);
	}
	.novotel-signature__slide {
		grid-template-columns: 1fr;
	}
}

.novotel-recipes {
	display: grid;
	gap: clamp(22px, 4vw, 32px);
}

.novotel-recipes__cards {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 24px);
}

.novotel-recipes__card {
	height: 100%;
}
.novotel-recipes__card.is-hidden {
	display: none;
}

.novotel-recipes__media {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: none;
	margin-bottom: 15px;
}

@media (max-width: 720px) {
	.novotel-signature__cta {
		justify-self: center;
		margin-inline: auto;
	}
	.novotel-recipes__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.novotel-recipes__card {
		min-width: 0;
	}
	.novotel-signature__card-title,
	.novotel-signature__card-desc {
		overflow-wrap: anywhere;
	}
}

.novotel-recipes__body {
	gap: 8px;
}

.novotel-recipes__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 32px 0 12px;
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 1.5;
	color: #9c6d36;
	text-align: center;
}

.novotel-recipes__more {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 50px;
	border: 1px solid rgba(30, 34, 170, 0.2);
	background: #fff;
	color: #1e22aa;
	font-family: var(--font-display);
	font-weight: 700;
	cursor: pointer;
	transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
	box-shadow: 0 12px 24px rgba(5, 0, 51, 0.12);
}

.novotel-recipes__more img {
	width: 16px;
	height: 10px;
	transition: transform 150ms ease;
}

.novotel-recipes__more:hover,
.novotel-recipes__more:focus-visible {
	transform: translateY(-1px);
	border-color: #9c6d36;
	box-shadow: 0 14px 28px rgba(5, 0, 51, 0.16);
	outline: none;
}

.novotel-recipes__more-icon.is-up {
	transform: rotate(180deg);
}

/* Novotel Home */
.novotel-home {
	background: #fafafa;
}

.novotel-home__hero {
	padding: clamp(64px, 5vw, 72px) var(--layout-gutter) clamp(48px, 4vw, 72px);
	display: grid;
	gap: clamp(20px, 3vw, 32px);
	text-align: center;
	color: #1e22aa;
}

.novotel-home__eyebrow {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-flex;
	gap: clamp(22px, 2.4vw, 32px);
	align-items: center;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: clamp(60px, 4vw, 76px);
}

.novotel-home__eyebrow a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #1e22aa;
}

.novotel-home__eyebrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.novotel-home__eyebrow-icon img {
	width: 24px;
	height: 24px;
}

.novotel-home__header {
	max-width: 860px;
	margin: 0 auto;
	display: grid;
	gap: clamp(12px, 1vw, 14px);
}

.novotel-home__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(44px, 4.2vw, 64px);
	font-weight: 400;
	line-height: 1.1;
	color: #1e22aa;
}

.novotel-home__subtitle {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 400;
	line-height: 1.3;
	color: #1e22aa;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.novotel-home__lede {
	max-width: 600px;
	margin: 0 auto;
	display: grid;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: #1e22aa;
}

.novotel-home__lede p {
	margin: 0 0 15px;
}

.novotel-home__lede p:last-child {
	margin-bottom: 0;
}

.novotel-home__video {
	margin-top: clamp(56px, 5vw, 72px);
}

.novotel-home__video-wrap {
	position: relative;
}

.novotel-home__video-el {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background: #0a0a7c;
}

.novotel-recipe__video {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.novotel-recipe__video .novotel-home__video-el {
	height: calc(100vh + 50px);
}

@media (max-width: 768px) {
	.novotel-recipe__video .novotel-home__video-el {
		height: calc(100vh + 30px);
	}
}

.novotel-home__video-toggle {
	position: absolute;
	right: clamp(12px, 2vw, 24px);
	bottom: clamp(12px, 2vw, 24px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.novotel-home__video-toggle:hover {
	transform: translateY(-2px);
}

.novotel-home__video-icon {
	position: relative;
	display: inline-flex;
	width: 17px;
	height: 17px;
}

.novotel-home__video-icon img {
	width: 100%;
	height: 100%;
	display: block;
}

.novotel-home__video-icon .novotel-home__icon-on {
	display: block;
}

.novotel-home__video-icon .novotel-home__icon-off {
	display: none;
}

.novotel-home__video-toggle.is-muted {
	background: #fff;
	color: #0a063b;
}

.novotel-home__video-toggle.is-muted .novotel-home__icon-on {
	display: none;
}

.novotel-home__video-toggle.is-muted .novotel-home__icon-off {
	display: block;
}

.novotel-home__greens {
	padding: clamp(64px, 6vw, 96px) var(--layout-gutter) clamp(56px, 5vw, 88px);
	display: grid;
	gap: clamp(32px, 4vw, 48px);
	background: #fafafa;
}

.novotel-home__greens-header {
	text-align: center;
	display: grid;
	gap: clamp(12px, 1.6vw, 18px);
	max-width: 940px;
	margin: 0 auto;
	color: #1e22aa;
}

.novotel-home__eyebrow-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(18px, 1.6vw, 20px);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.novotel-home__greens-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 400;
	line-height: 1.25;
	color: #1e22aa;
}

.novotel-home__greens-sub {
	margin: 0 auto;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: #1e22aa;
	max-width: 640px;
}

.novotel-home__greens-body {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(32px, 4vw, 44px);
	align-items: center;
}

.novotel-home__greens-media {
	position: relative;
	display: grid;
	place-items: center;
	width: min(100%, 640px);
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	min-height: 320px;
}

.novotel-home__greens-bg {
	border-radius: 18px;
	overflow: hidden;
	transition: transform 240ms ease, box-shadow 240ms ease;
	box-shadow: 0 18px 40px rgba(5, 0, 51, 0.14);
	width: 100%;
	height: 100%;
	position: relative;
}

.novotel-home__greens-bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__greens-plate {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 34%;
	max-width: 260px;
	transition: transform 240ms ease;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(5, 0, 51, 0.14);
}

.novotel-home__greens-plate img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: inherit;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__greens-media:hover .novotel-home__greens-bg,
.novotel-home__greens-media:focus-within .novotel-home__greens-bg {
	transform: translateY(-4px);
	box-shadow: 0 22px 46px rgba(5, 0, 51, 0.18);
}

.novotel-home__greens-media:hover .novotel-home__greens-bg img,
.novotel-home__greens-media:focus-within .novotel-home__greens-bg img,
.novotel-home__greens-media:hover .novotel-home__greens-plate img,
.novotel-home__greens-media:focus-within .novotel-home__greens-plate img {
	transform: scale(1);
}

.novotel-home__greens-media:hover .novotel-home__greens-plate,
.novotel-home__greens-media:focus-within .novotel-home__greens-plate {
	transform: translate(-50%, -50%) translateY(-6px);
}

.novotel-home__greens-copy {
	text-align: center;
	display: grid;
	gap: clamp(16px, 2vw, 24px);
	color: #1e22aa;
	justify-items: center;
}

.novotel-home__greens-eyebrow {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 400;
	line-height: 1.3;
}

.novotel-home__greens-text {
	max-width: 360px;
	display: grid;
	gap: 14px;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
}

.novotel-home__greens-text p {
	margin: 0;
}

.novotel-home__greens .novotel-button {
	padding: 10px 18px;
	font-size: 14px;
	margin-top: clamp(8px, 1.8vw, 16px);
}

@media (max-width: 900px) {
	.novotel-home__greens-body {
		grid-template-columns: 1fr;
	}

	.novotel-home__greens-copy {
		justify-items: center;
	}

	.novotel-home__greens-plate {
		width: 44%;
	}
}

.novotel-home__slider {
	padding: clamp(56px, 5vw, 80px) 0 clamp(64px, 5vw, 90px);
	background: #fafafa;
}

.novotel-home__slider-viewport {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.novotel-home__slider-track {
	display: flex;
	align-items: stretch;
	gap: clamp(14px, 1.8vw, 20px);
	animation: updates-marquee 9s linear infinite;
}

.novotel-home__slider-card {
	flex: 0 0 clamp(280px, 33vw, 638px);
	border-radius: 22px;
	overflow: hidden;
}

.novotel-home__slider-media {
	width: 100%;
	aspect-ratio: 638 / 491;
	overflow: hidden;
	border-radius: 22px;
}

.novotel-home__slider-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__slider-media:hover img {
	transform: scale(1);
}

.novotel-home__slider-track:hover {
	animation-play-state: paused;
}

@media (max-width: 900px) {
	.novotel-home__slider {
		padding: clamp(48px, 8vw, 64px) 0;
	}
	.novotel-home__slider-card {
		flex-basis: clamp(240px, 68vw, 520px);
	}
}

@media (max-width: 640px) {
	.novotel-home__slider-card {
		flex-basis: clamp(220px, 88vw, 480px);
	}
	.novotel-home__slider-track {
		gap: clamp(10px, 4vw, 14px);
	}
}

.novotel-home__vegetables {
	padding: clamp(72px, 6vw, 104px) var(--layout-gutter) clamp(80px, 6vw, 112px);
	background: #fafafa;
	display: grid;
	gap: clamp(40px, 4vw, 56px);
}

.novotel-home__vegetables-header {
	text-align: center;
	display: grid;
	gap: 14px;
	max-width: 880px;
	margin: 0 auto;
	color: #1e22aa;
}

.novotel-home__vegetables-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(32px, 3.4vw, 46px);
	font-weight: 400;
	line-height: 1.2;
}

.novotel-home__vegetables-sub {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
}

.novotel-home__vegetables-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 1.05fr);
	align-items: end;
	gap: clamp(16px, 1.8vw, 24px);
	width: 100%;
	margin: 0;
}

.novotel-home__vegetables-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: #ffffff;
}

.novotel-home__vegetables-card img:not(.novotel-home__vegetables-badge) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__vegetables-card:hover img {
	transform: scale(1);
}

.novotel-home__vegetables-card--tall {
	height: clamp(480px, 34vw, 640px);
}

.novotel-home__vegetables-card--callout {
	height: clamp(320px, 24vw, 480px);
	display: flex;
	align-items: stretch;
}

.novotel-home__vegetables-callout {
	background: #151fad;
	color: #fff;
	border-radius: 24px;
	display: grid;
	gap: 16px;
	align-content: center;
	justify-items: center;
	padding: clamp(22px, 3vw, 30px);
	text-align: center;
	box-shadow: 0 18px 40px rgba(5, 0, 51, 0.14);
	max-width: 260px;
	margin: 0 auto;
}

.novotel-home__vegetables-callout h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(24px, 2.3vw, 30px);
	line-height: 1.25;
}

.novotel-home__vegetables-callout p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
}

.novotel-home__vegetables-card--wide {
	height: clamp(208px, 17.6vw, 336px);
	border-radius: 22px;
	align-self: end;
}

.novotel-home__vegetables-card--wide img {
	border-radius: 22px;
}

.novotel-home__vegetables-card--portrait {
	height: clamp(320px, 24vw, 480px);
}

.novotel-home__vegetables-card--text {
	background: #f0f0f0;
	color: #1e22aa;
	border-radius: 28px;
	padding: clamp(28px, 3vw, 34px);
	display: grid;
	align-content: center;
	position: relative;
	box-shadow: 0 18px 40px rgba(5, 0, 51, 0.12);
	min-height: clamp(480px, 34vw, 640px);
	overflow: visible;
}

.novotel-home__vegetables-badge {
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	width: clamp(120px, 8vw, 153px);
	max-width: 153px;
	height: auto;
	transform: translate(-45%, -55%);
	object-fit: contain;
	pointer-events: none;
	z-index: 2;
}

.novotel-home__vegetables-copy {
	display: grid;
	gap: 14px;
	max-width: 260px;
	justify-self: end;
	text-align: center;
}

.novotel-home__vegetables-copy h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(24px, 2.5vw, 30px);
	line-height: 1.3;
}

.novotel-home__vegetables-copy p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
}

.novotel-home__vegetables-card--text:hover .novotel-home__vegetables-copy,
.novotel-home__vegetables-card--text:focus-within .novotel-home__vegetables-copy {
	transform: translateY(-1px);
}

.novotel-home__vegetables-card--text:hover,
.novotel-home__vegetables-card--text:focus-within {
	box-shadow: 0 22px 46px rgba(5, 0, 51, 0.16);
}

@media (max-width: 1100px) {
	.novotel-home__vegetables-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 1fr;
		width: 100%;
	}
	.novotel-home__vegetables-card--wide {
		grid-column: span 2;
	}
	.novotel-home__vegetables-card--text {
		grid-column: span 2;
		justify-items: center;
	}
	.novotel-home__vegetables-copy {
		justify-self: center;
		text-align: center;
		max-width: 460px;
	}
	.novotel-home__vegetables-badge {
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 720px) {
	.novotel-home__vegetables {
		padding: clamp(56px, 8vw, 72px) var(--layout-gutter);
	}
	.novotel-home__vegetables-grid {
		grid-template-columns: 1fr;
	}
	.novotel-home__vegetables-card--wide,
	.novotel-home__vegetables-card--text {
		grid-column: span 1;
	}
	.novotel-home__vegetables-card,
	.novotel-home__vegetables-card img {
		border-radius: 22px;
	}
	.novotel-home__vegetables-badge {
		left: clamp(18px, 8vw, 28px);
		transform: none;
	}
}

.novotel-home__commitment {
	padding: clamp(72px, 6vw, 104px) var(--layout-gutter) clamp(72px, 6vw, 96px);
	display: grid;
	gap: clamp(36px, 4vw, 52px);
}

.novotel-home__commitment-header {
	text-align: center;
	color: #1e22aa;
}

.novotel-home__commitment-title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3.4vw, 44px);
	line-height: 1.2;
}

.novotel-home__commitment-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	gap: clamp(16px, 2vw, 22px);
}

.novotel-home__commitment-card {
	display: grid;
	gap: 14px;
	background: #ededf2;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 34px rgba(5, 0, 51, 0.1);
}

.novotel-home__commitment-media {
	position: relative;
	aspect-ratio: 1.22 / 1;
	overflow: hidden;
}

.novotel-home__commitment-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px 24px 0 0;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__commitment-card:hover .novotel-home__commitment-media img,
.novotel-home__commitment-card:focus-within .novotel-home__commitment-media img {
	transform: scale(1);
}

.novotel-home__commitment-body {
	padding: clamp(16px, 1.8vw, 20px) clamp(18px, 2vw, 22px) clamp(18px, 2vw, 24px);
	color: #1e22aa;
	display: grid;
	gap: 10px;
}

.page-template-page-novotel-recipe-detail,
.page-template-page-novotel-recipe-detail-php {
	background: #fafafa;
}

.page-template-page-novotel-recipe-detail .novotel-logo,
.page-template-page-novotel-recipe-detail-php .novotel-logo {
	background: #ffffff;
}

.novotel-recipe {
	padding: clamp(48px, 4vw, 72px) var(--layout-gutter) clamp(88px, 6vw, 128px);
	background: #fafafa;
	display: grid;
	gap: clamp(32px, 4vw, 48px);
}

.novotel-recipe > .novotel-hero__icon {
	justify-self: center;
	margin: clamp(0px, 0.5vw, 6px) 0 clamp(4px, 0.8vw, 8px);
}

.novotel-recipe__hero {
	display: grid;
	grid-template-columns: minmax(320px, 43%) minmax(360px, 50%);
	gap: 7%;
	align-items: start;
	width: min(1380px, 100%);
	margin: 0 auto;
}

.novotel-recipe__media {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 22px 44px rgba(5, 0, 51, 0.12);
	aspect-ratio: 3 / 4;
	position: relative;
}

.novotel-recipe__media > img:not(.novotel-recipe__badge) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-recipe__media:hover > img:not(.novotel-recipe__badge),
.novotel-recipe__media:focus-within > img:not(.novotel-recipe__badge) {
	transform: scale(1);
}

.novotel-recipe__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	width: clamp(82px, 7vw, 104px);
	height: auto;
	max-width: none;
	max-height: none;
	min-width: 0;
	min-height: 0;
	object-fit: contain;
	filter: drop-shadow(0 12px 28px rgba(5, 0, 51, 0.12));
	pointer-events: none;
	transform: none;
	transition: none;
}

.novotel-recipe__media:hover .novotel-recipe__badge,
.novotel-recipe__media:focus-within .novotel-recipe__badge {
	transform: none;
}

.novotel-recipe__content {
	display: grid;
	gap: clamp(16px, 2vw, 24px);
	color: #1e22aa;
}

.novotel-recipe__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(44px, 4.6vw, 60px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #1e22aa;
}

.novotel-recipe__tags {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.novotel-recipe__tags li {
	padding: 6px 12px;
	background: #f0f0f0;
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #1e22aa;
	border: 1px solid #f0f0f0;
}

.novotel-recipe__meta {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 500;
	color: #1e22aa;
}

.novotel-recipe__print {
	justify-self: start;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.novotel-recipe__print img {
	display: block;
	width: 100%;
	height: 100%;
}

.novotel-recipe__print:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.novotel-recipe__desc {
	display: grid;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 20px;
	line-height: 1.5;
	font-weight: 300;
	color: #1e22aa;
}

.novotel-recipe__stats {
	margin: 0;
	padding: clamp(18px, 2vw, 24px) 0 0;
	border-top: 1px solid rgba(30, 34, 170, 0.2);
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 1.8vw, 18px);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
}

.novotel-recipe__stats li {
	display: grid;
	justify-items: center;
	gap: 8px;
	color: #1e22aa;
}

.novotel-recipe__stats img {
	width: 32px;
	height: 32px;
}

.novotel-recipe__stat-title {
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.novotel-recipe__nutrition {
	display: grid;
	gap: 12px;
}

.novotel-recipe__nutrition-title {
	font-family: var(--font-body);
	font-size: 22px;
	color: #1e22aa;
	font-weight: 600;
	line-height: 1.5;
}

.novotel-recipe__nutrition-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1.3fr 0.9fr 0.9fr 0.9fr;
	gap: 12px;
	max-width: 720px;
}

.novotel-recipe__nutrition-list li {
	background: #f2f2f2;
	border-radius: 16px;
	padding: 12px 10px 14px;
	display: grid;
	gap: 6px;
	justify-items: center;
	text-align: center;
	color: #1e22aa;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	border: 1px solid rgba(30, 34, 170, 0.08);
}

.novotel-recipe__nutrition-list strong {
	display: block;
	width: 100%;
	background: #fafafa;
	border-radius: 14px;
	padding: 14px 12px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
}

.novotel-recipe__steps {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #f0f0f0;
	border-radius: 32px;
	box-sizing: border-box;
	padding: clamp(48px, 5vw, 64px) clamp(64px, 8vw, 120px);
}

.novotel-recipe__steps-inner {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
	gap: clamp(24px, 4vw, 42px);
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.novotel-recipe__block {
	display: grid;
	gap: 18px;
	color: #1e22aa;
}

.novotel-recipe__block h2 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(20px, 2.6vw, 28px);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}

.novotel-recipe__ingredients {
	background: #fafafa;
	border-radius: 18px;
	box-shadow: 0 16px 32px rgba(5, 0, 51, 0.08);
	overflow: hidden;
	border: 1px solid #e6e6e6;
}

.novotel-recipe__ingredients table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-body);
	font-size: 12px;
	color: #1e22aa;
	background: #fafafa;
}

.novotel-recipe__ingredients th,
.novotel-recipe__ingredients td {
	padding: 12px 18px;
	border-bottom: 1px solid #e7e7e7;
	border-right: 1px solid #e7e7e7;
}

.novotel-recipe__ingredients th {
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-weight: 600;
	font-size: 11px;
	background: #f0f0f0;
}

.novotel-recipe__ingredients tr:last-child td {
	border-bottom: 0;
}

.novotel-recipe__ingredients th:first-child,
.novotel-recipe__ingredients td:first-child {
	width: 40%;
	font-weight: 400;
	text-align: left;
	border-left: 1px solid #e7e7e7;
}

.novotel-recipe__ingredients td:not(:first-child),
.novotel-recipe__ingredients th:not(:first-child) {
	text-align: center;
	color: #1e22aa;
}

.novotel-recipe__ingredients .is-heading td {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-size: 11px;
}

.novotel-recipe__ingredients .is-section td {
	font-weight: 700;
}

.novotel-recipe__ingredients .is-bold {
	font-weight: 700;
}

.novotel-recipe__ingredients td[colspan] {
	text-align: center;
}

.novotel-recipe__method {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	counter-reset: step;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
}

.novotel-recipe__method > li {
	position: relative;
	padding-left: 32px;
}

.novotel-recipe__method > li::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	color: #1e22aa;
	font-weight: 600;
	font-size: 12px;
}

.novotel-recipe__method ul {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.novotel-recipe__method ul li {
	position: relative;
	padding-left: 16px;
}

.novotel-recipe__method ul li::before {
	content: "-";
	position: absolute;
	left: 0;
	top: 0;
	color: #1e22aa;
	font-weight: 600;
}

.novotel-recipe__related {
	display: grid;
	gap: clamp(28px, 3vw, 38px);
	padding: clamp(48px, 5vw, 64px) 0 clamp(36px, 4vw, 56px);
	background: #fafafa;
}

.novotel-recipe__related-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(22px, 2.8vw, 30px);
	color: #1e22aa;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 42px);
}

.novotel-recipe__related-title::before,
.novotel-recipe__related-title::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(0, 0, 0, 0.15);
}

.novotel-recipe__related-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 26px);
}

.novotel-recipe__related-card a {
	display: grid;
	gap: 12px;
	color: inherit;
	text-decoration: none;
	height: 100%;
	align-content: start;
}

.novotel-recipe__related-media {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(5, 0, 51, 0.12);
	aspect-ratio: 344 / 470;
	display: block;
	background: #fafafa;
}

.novotel-recipe__related-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.novotel-recipe__related-card a:hover .novotel-recipe__related-media img,
.novotel-recipe__related-card a:focus-visible .novotel-recipe__related-media img {
	transform: scale(1.02);
	box-shadow: 0 16px 36px rgba(5, 0, 51, 0.16);
}

.novotel-recipe__related-body h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	color: #1e22aa;
	line-height: 1.3;
}

.novotel-recipe__related-body p {
	margin: 4px 0 0;
	font-family: var(--font-body);
	font-size: 13px;
	color: #1e22aa;
	line-height: 1.5;
}

.novotel-recipe--accor {
	color: #050033;
}

.novotel-recipe--accor .novotel-recipe__title,
.novotel-recipe--accor .novotel-recipe__block h2,
.novotel-recipe--accor .novotel-recipe__related-title,
.novotel-recipe--accor .novotel-recipe__nutrition-title {
	color: #9c6d36;
}

.novotel-recipe--accor .novotel-recipe__content,
.novotel-recipe--accor .novotel-recipe__meta,
.novotel-recipe--accor .novotel-recipe__desc,
.novotel-recipe--accor .novotel-recipe__stats,
.novotel-recipe--accor .novotel-recipe__stats li,
.novotel-recipe--accor .novotel-recipe__nutrition-list li,
.novotel-recipe--accor .novotel-recipe__nutrition-list strong,
.novotel-recipe--accor .novotel-recipe__block,
.novotel-recipe--accor .novotel-recipe__ingredients table,
.novotel-recipe--accor .novotel-recipe__ingredients td,
.novotel-recipe--accor .novotel-recipe__method,
.novotel-recipe--accor .novotel-recipe__method > li::before,
.novotel-recipe--accor .novotel-recipe__method ul li::before,
.novotel-recipe--accor .novotel-recipe__related-body h3,
.novotel-recipe--accor .novotel-recipe__related-body p {
	color: #050033;
}

.novotel-recipe--accor .novotel-recipe__meta {
	color: #9c6d36;
}

.novotel-recipe--accor .novotel-recipe__steps {
	background: #fbf8f4;
}

.novotel-recipe--accor .novotel-recipe__tags li {
	background: #fbf8f4;
	border-color: #fbf8f4;
	color: #050033;
}

.novotel-recipe--accor .novotel-recipe__nutrition-list li {
	background: #fbf8f4;
}

.novotel-recipe--accor .novotel-recipe__nutrition-list strong {
	background: #f5f0eb;
}

.novotel-recipe--accor .novotel-recipe__stats img:not(.novotel-recipe__stat-icon--accor-multi),
.novotel-recipe--accor > .novotel-hero__icon img {
	filter: brightness(0) saturate(100%) invert(45%) sepia(29%) saturate(707%) hue-rotate(350deg) brightness(90%) contrast(92%);
}

.novotel-recipe--accor .novotel-recipe__print img {
	filter: none;
}

.novotel-recipe--accor .novotel-recipe__stat-icon--accor-multi {
	filter: none;
}

@media (max-width: 1180px) {
	.novotel-recipe__hero {
		grid-template-columns: 1fr;
	}
	.novotel-recipe__stats,
	.novotel-recipe__nutrition-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.novotel-recipe__steps-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.novotel-recipe {
		padding: clamp(56px, 8vw, 72px) var(--layout-gutter);
	}
	.novotel-recipe__print {
		width: 45px;
		height: 45px;
		margin-top: 20px;
	}
	.novotel-recipe__steps {
		padding-inline: var(--layout-gutter);
	}
	.novotel-recipe__related-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
	.novotel-recipe__ingredients th,
	.novotel-recipe__ingredients td {
		padding: 10px 8px;
	}
	.novotel-recipe__ingredients table {
		table-layout: fixed;
		width: 100%;
		max-width: 100%;
	}
	.novotel-recipe__ingredients th,
	.novotel-recipe__ingredients td {
		box-sizing: border-box;
	}
	.novotel-recipe__ingredients th:nth-child(1),
	.novotel-recipe__ingredients td:nth-child(1) {
		width: 22%;
	}
	.novotel-recipe__ingredients th:nth-child(2),
	.novotel-recipe__ingredients td:nth-child(2),
	.novotel-recipe__ingredients th:nth-child(3),
	.novotel-recipe__ingredients td:nth-child(3) {
		width: 35%;
	}
	.novotel-recipe__ingredients th:last-child,
	.novotel-recipe__ingredients td:last-child {
		width: 27%;
	}
	.novotel-recipe__method li {
		padding-left: 28px;
	}
}

.novotel-home__commitment-body h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.25;
}

.novotel-home__commitment-body p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
}

@media (max-width: 960px) {
	.novotel-home__commitment-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}
}

.novotel-home__created {
	padding: clamp(72px, 6vw, 104px) var(--layout-gutter) clamp(80px, 6vw, 112px);
	background: #fafafa;
	display: grid;
	gap: clamp(36px, 4vw, 52px);
}

.novotel-home__created-header {
	text-align: center;
	display: grid;
	gap: 14px;
	color: #1e22aa;
	max-width: 760px;
	margin: 0 auto;
}

.novotel-home__created-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(32px, 3.4vw, 44px);
	font-weight: 400;
	line-height: 1.2;
}

.novotel-home__created-sub {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
}

.novotel-home__created-header .novotel-button {
	justify-self: center;
}

.novotel-home__created-grid {
	display: grid;
	--created-gap: clamp(16px, 2vw, 22px);
	grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
	gap: var(--created-gap);
	justify-content: center;
	margin: 0 auto;
	max-width: calc(5 * 168px + 4 * var(--created-gap));
	width: 100%;
}

.novotel-home__created-card {
	display: grid;
	gap: 12px;
	color: #1e22aa;
}

.novotel-home__created-card--empty {
	pointer-events: none;
}

.novotel-home__created-card--empty .novotel-home__created-media {
	background: #f1f2f8;
}

.novotel-home__created-media {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 22px;
	overflow: hidden;
}

.novotel-home__created-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__created-badge {
	position: absolute;
	--badge-size: clamp(82px, 6.5vw, 102px);
	width: var(--badge-size);
	height: auto;
	top: 14px;
	right: 14px;
	filter: drop-shadow(0 12px 28px rgba(5, 0, 51, 0.12));
	pointer-events: none;
	transition: transform 0.25s ease;
}

.novotel-home__created-card:hover .novotel-home__created-image,
.novotel-home__created-card:focus-within .novotel-home__created-image {
	transform: scale(1);
}

.novotel-home__created-body {
	display: grid;
	gap: 8px;
}

.novotel-home__created-body h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
}

.novotel-home__created-body p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.5;
	color: #3b3f8f;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.novotel-home__ecosystem {
	padding: clamp(72px, 6vw, 104px) var(--layout-gutter) clamp(88px, 6vw, 120px);
	background: #fafafa;
	display: grid;
	gap: clamp(38px, 4vw, 54px);
}

.novotel-home__ecosystem-header {
	text-align: center;
	display: grid;
	gap: 14px;
	max-width: 840px;
	margin: 0 auto;
	color: #1e22aa;
}

.novotel-home__ecosystem-title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(32px, 3.4vw, 44px);
	line-height: 1.2;
}

.novotel-home__ecosystem-sub {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
}

.novotel-home__ecosystem-header .novotel-button {
	justify-self: center;
}

.novotel-home__ecosystem-body {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
	grid-template-areas:
		"info media"
		"footnote media";
	gap: clamp(18px, 2vw, 24px);
	align-items: stretch;
}

.novotel-home__ecosystem-info {
	grid-area: info;
	background: #f0f0f0;
	border-radius: 24px;
	padding: clamp(22px, 2.6vw, 30px);
	display: grid;
	gap: 18px;
	color: #1e22aa;
	margin-bottom: 15px;
}

.novotel-home__ecosystem-info h3 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.3;
}

.novotel-home__ecosystem-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 1.8vw, 18px) clamp(14px, 2vw, 18px);
}

.novotel-home__ecosystem-list li {
	display: grid;
	gap: 8px;
	justify-items: center;
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.4;
	color: #1e22aa;
}

.novotel-home__ecosystem-list img {
	width: 40px;
	height: 40px;
}

.novotel-home__ecosystem-footnote {
	grid-area: footnote;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: #1e22aa;
	background: #f0f0f0;
	border-radius: 20px;
	padding: clamp(14px, 1.8vw, 18px);
}

.novotel-home__ecosystem-media {
	grid-area: media;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(5, 0, 51, 0.14);
	align-self: stretch;
}

.novotel-home__ecosystem-media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: 26px;
	transform: scale(1.06);
	transform-origin: center;
	transition: transform 0.55s ease-in-out;
}

.novotel-home__ecosystem-media:hover img,
.novotel-home__ecosystem-media:focus-within img {
	transform: scale(1);
}

@media (max-width: 1080px) {
	.novotel-home__ecosystem-body {
		grid-template-columns: 1fr;
		grid-template-areas:
			"info"
			"footnote"
			"media";
	}
	.novotel-home__ecosystem-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.novotel-home__ecosystem-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.novotel-home__commitment,
	.novotel-home__created,
	.novotel-home__ecosystem {
		padding: clamp(56px, 8vw, 72px) var(--layout-gutter);
	}
	.novotel-home__commitment-grid {
		grid-template-columns: 1fr;
	}
	.novotel-home__ecosystem-media img {
		aspect-ratio: 16 / 9;
	}
}
.novotel-featured {
	display: grid;
	gap: clamp(18px, 3vw, 26px);
}

.novotel-featured__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.novotel-featured__eyebrow {
	margin: 0;
	color: #6c6d85;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.novotel-featured__title {
	margin: 6px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(26px, 2.6vw + 10px, 36px);
	color: var(--color-stratos);
}

.novotel-featured__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(16px, 2.4vw, 22px);
}

.novotel-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(5, 0, 51, 0.1);
	display: grid;
	grid-template-rows: auto 1fr;
}

.novotel-card__media {
	position: relative;
}

.novotel-card__media img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.novotel-card__tags {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.novotel-card__tag {
	background: rgba(5, 0, 51, 0.82);
	color: #fff;
	padding: 6px 10px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 12px;
}

.novotel-card__body {
	padding: 16px 18px 20px;
	display: grid;
	gap: 6px;
}

.novotel-card__title {
	margin: 0;
	font-size: 18px;
	color: var(--color-stratos);
}

.novotel-card__desc {
	margin: 0;
	color: #52546c;
	line-height: 1.5;
}

.novotel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 12px;
	background: #0d1aa2;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 12px 28px rgba(13, 26, 162, 0.2);
	transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.novotel-button:hover,
.novotel-button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(13, 26, 162, 0.26);
	outline: none;
}

.novotel-grid {
	display: grid;
	gap: clamp(14px, 2vw, 20px);
}

.novotel-grid__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(24px, 2.2vw + 10px, 32px);
	color: var(--color-stratos);
}

.novotel-grid__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(14px, 2vw, 18px);
}

.novotel-grid-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 26px rgba(5, 0, 51, 0.1);
	display: grid;
	gap: 10px;
}

.novotel-grid-card__media {
	height: 200px;
}

.novotel-grid-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.novotel-grid-card__title {
	margin: 0 0 14px;
	padding: 0 14px;
	font-size: 16px;
	color: #1b1aa3;
	font-weight: 700;
}

@media (max-width: 900px) {
	.novotel-featured__header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.novotel-page {
		padding-inline: clamp(16px, 6vw, 24px);
	}

	.novotel-hero__title {
		font-size: clamp(26px, 6vw + 8px, 34px);
	}

	.novotel-filter {
		width: 100%;
	}
	.novotel-filter__button,
	.novotel-filter__search {
		width: 100%;
		justify-content: space-between;
	}

	.page-template-page-recipes .recipes-find .novotel-filter,
	.page-template-page-recipes .recipes-find .novotel-filter__search,
	.page-template-page-recipes-php .recipes-find .novotel-filter,
	.page-template-page-recipes-php .recipes-find .novotel-filter__search,
	.page-template-page-novotel-recipes .novotel-filter,
	.page-template-page-novotel-recipes .novotel-filter__search,
	.page-template-page-novotel-recipes-php .novotel-filter,
	.page-template-page-novotel-recipes-php .novotel-filter__search {
		width: min(320px, calc(100vw - (var(--layout-gutter) * 2)));
	}

	.novotel-grid-card__media {
		height: 180px;
	}
}

@media (max-width: 1100px) {
	.login-page {
		padding: clamp(22px, 6vw, 52px);
	}
	.login-page__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: clamp(24px, 6vw, 48px);
		padding-inline: clamp(16px, 8vw, 60px);
	}
	.login-page__visual {
		justify-content: center;
	}
	.login-page__visual img {
		width: min(90vw, 700px);
	}
}

@media (max-width: 640px) {
	.login-page {
		padding: clamp(18px, 7vw, 32px);
	}
	.login-page__content {
		gap: clamp(20px, 7vw, 32px);
	}
	.login-page__button {
		width: min(280px, 72vw);
	}
}
.brands-portal__card--image-portrait .brands-portal__image {
	transform: scale(1.01);
	object-position: center top;
}

.notfound {
	min-height: calc(100vh - 220px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
}

.notfound__inner {
	display: grid;
	gap: 12px;
}

.notfound__code {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(64px, 10vw, 140px);
	letter-spacing: 0.08em;
	color: #1e22aa;
}

.notfound__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(22px, 3vw, 32px);
	color: #141414;
}

/* Legal Notice page */
.legal-notice {
	background: #ebedf4;
	border-radius: 30px;
	width: calc(100% - (var(--layout-gutter) * 2));
	margin: 100px auto 160px;
}

.legal-notice__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.legal-notice__card {
	border-radius: 28px;
	padding: clamp(36px, 4.5vw, 72px);
}

.legal-notice__title {
	margin: 0 0 clamp(28px, 4vw, 46px);
	font-family: var(--font-heading);
	font-size: clamp(30px, 2.2vw + 10px, 44px);
	letter-spacing: 0.08em;
	text-align: center;
	color: var(--color-stratos);
	text-transform: uppercase;
}

.legal-notice__content {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.65;
	color: #151141;
}

.legal-notice__content h2 {
	margin: 28px 0 10px;
	font-family: var(--font-heading);
	font-size: 16px;
	letter-spacing: 0.02em;
	color: var(--color-stratos);
}

.legal-notice__content p {
	margin: 0 0 8px;
}

.legal-notice__content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.legal-notice {
		margin: 100px auto 120px;
	}

	.legal-notice__card {
		border-radius: 22px;
	}
}

.brands-directory {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter) var(--section-gap);
	display: block;
}

.brands-directory__inner {
	width: min(100%, 1200px);
	margin: 0 auto;
	display: grid;
	gap: clamp(24px, 3vw, 40px);
}

.brands-directory__header {
	display: grid;
	gap: 12px;
	justify-items: start;
}

.brands-directory__heading {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.25;
	color: var(--color-stratos);
}

.brands-directory__lede {
	max-width: 520px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.brands-directory {
	background: #fff;
	padding: var(--section-gap-half) var(--layout-gutter) var(--section-gap);
}

.brands-directory__inner {
	width: min(100%, 1200px);
	margin: 0 auto;
	display: grid;
	gap: clamp(24px, 3vw, 40px);
	align-items: start;
	position: relative;
	z-index: 1;
}

.brands-directory__panel {
	display: grid;
	grid-template-columns: minmax(180px, 220px) minmax(240px, 1fr);
	gap: clamp(48px, 6vw, 120px);
	align-items: start;
}

.brands-directory__title {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	color: var(--color-stratos);
}

.brands-directory__segments {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
	visibility: visible;
}

.brands-directory__segment-button {
	border: none;
	background: none;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
	cursor: pointer;
	min-width: 180px;
}

.brands-directory__segment-button img {
	width: 7px;
	height: 12px;
}

.brands-directory__segment {
	opacity: 1;
	transition: opacity 0.2s ease;
}

.brands-directory__segment.is-disabled {
	opacity: 0.4;
}

.brands-directory.has-selection .brands-directory__segment {
	opacity: 0.45;
}

.brands-directory.has-selection .brands-directory__segment.is-active {
	opacity: 1;
}

.brands-directory__col--brands {
	min-height: 220px;
	display: block;
}

.brands-directory__brands {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	gap: 12px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-stratos);
}

.brands-directory__brands.is-active {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.brands-directory__brands a:hover,
.brands-directory__brands a:focus-visible {
	color: #9c6d36;
}

/* Fallback: if the Hotel Tier page still renders mega menu markup, keep it visible. */
.page-template-page-brands-directory .brands-mega.brands-mega--page {
	position: static !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: none !important;
	padding: 0 !important;
	background: transparent !important;
	display: block !important;
}

.page-template-page-brands-directory .brands-mega.brands-mega--page .brands-mega__inner {
	width: min(100%, 1200px);
	padding: 0;
}

.page-template-page-brands-directory .brands-mega.brands-mega--page .brands-mega__segments {
	display: grid;
	gap: 16px;
}

.page-template-page-brands-directory .brands-mega.brands-mega--page .brands-mega__brands.is-active {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
}

@media (max-width: 1024px) {
	.brands-directory__inner {
		gap: 28px;
	}

	.brands-directory__panel {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
