:root {
	--ysl-color-ink: #151515;
	--ysl-color-muted: #687076;
	--ysl-color-line: #e7e2dc;
	--ysl-color-soft: #f6f3ef;
	--ysl-color-warm: #eee8df;
	--ysl-color-panel: #ffffff;
	--ysl-color-brand: #c96f2d;
	--ysl-color-brand-dark: #9f4e19;
	--ysl-color-footer: #191714;
	--ysl-shadow-header: 0 16px 40px rgba(24, 20, 16, 0.12);
	--ysl-shadow-card: 0 18px 46px rgba(24, 20, 16, 0.05);
	--ysl-shadow-card-hover: 0 24px 54px rgba(24, 20, 16, 0.11);
	--ysl-motion-card: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
	--ysl-content: min(1320px, calc(100vw - 48px));
	--ysl-radius: 6px;
	--ysl-button-radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ysl-color-ink);
	background: var(--ysl-color-panel);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body.is-search-open,
body.is-menu-open {
	overflow: hidden;
}

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

a:hover {
	color: var(--ysl-color-brand);
}

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

[hidden] {
	display: none !important;
}

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

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 2000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--ysl-color-ink);
	background: var(--ysl-color-panel);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-shadow-header);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	color: #ffffff;
	background: transparent;
	transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
	opacity: 1;
	transition: opacity 180ms ease;
	pointer-events: none;
}

.site-header.is-scrolled,
body.is-menu-open .site-header {
	color: var(--ysl-color-ink);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(21, 21, 21, 0.08);
	box-shadow: var(--ysl-shadow-header);
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
body.is-menu-open .site-header::before {
	opacity: 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 34px;
	width: var(--ysl-content);
	min-height: 92px;
	margin: 0 auto;
}

.site-header__brand {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-width: 170px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo-link img {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 58px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: filter 180ms ease, max-height 180ms ease;
}

.site-header.is-scrolled .custom-logo-link img,
body.is-menu-open .custom-logo-link img {
	filter: brightness(0);
}

.site-header__nav {
	justify-self: center;
}

.nav-menu,
.footer-menu,
.site-footer__legal {
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 13px;
	font-weight: 700;
	color: currentColor;
}

.nav-menu > li > a {
	text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	color: var(--ysl-color-brand);
}

.nav-menu .menu-item-has-children {
	position: relative;
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 280px;
	padding: 14px;
	margin: 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 42px rgba(24, 20, 16, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: flex;
	min-height: 42px;
	padding: 9px 12px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
	color: var(--ysl-color-ink);
	text-transform: none;
	border-radius: 4px;
}

.nav-menu .sub-menu a:hover {
	background: var(--ysl-color-soft);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.site-header__email {
	max-width: 190px;
	overflow: hidden;
	font-size: 13px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-header__search,
.site-header__menu-toggle,
.back-to-top,
.search-overlay__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: inherit;
	cursor: pointer;
	background: transparent;
	border: 0;
}

.site-header__search {
	width: 42px;
	height: 42px;
	font-size: 26px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 50%;
}

.site-header.is-scrolled .site-header__search,
body.is-menu-open .site-header__search {
	border-color: rgba(21, 21, 21, 0.16);
}

.site-header__cta,
.button,
.wp-block-button.button--primary > .wp-block-button__link.wp-element-button,
.wp-block-button.button--ghost > .wp-block-button__link.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 800;
	border-radius: var(--ysl-button-radius);
	box-shadow: 0 14px 30px rgba(159, 78, 25, 0.18);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.home .wp-block-button > .wp-block-button__link.wp-element-button,
.site-main .home-hero .wp-block-button > .wp-block-button__link.wp-element-button,
.site-main .home-section .wp-block-button > .wp-block-button__link.wp-element-button,
.site-main .home-cta .wp-block-button > .wp-block-button__link.wp-element-button,
.site-header__cta,
a.button {
	border-radius: var(--ysl-button-radius) !important;
	overflow: hidden;
}

.site-header__cta,
.button.button--primary,
.wp-block-button.button--primary > .wp-block-button__link.wp-element-button {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border: 1px solid var(--ysl-color-brand);
}

.site-header__cta:hover,
.button.button--primary:hover,
.wp-block-button.button--primary > .wp-block-button__link.wp-element-button:hover {
	color: #ffffff;
	background: var(--ysl-color-brand-dark);
	border-color: var(--ysl-color-brand-dark);
	transform: translateY(-1px);
	box-shadow: 0 18px 36px rgba(159, 78, 25, 0.26);
}

.button.button--ghost,
.wp-block-button.button--ghost > .wp-block-button__link.wp-element-button {
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: none;
}

.button.button--ghost:hover,
.wp-block-button.button--ghost > .wp-block-button__link.wp-element-button:hover {
	color: var(--ysl-color-ink);
	background: #ffffff;
	border-color: #ffffff;
}

.wp-block-button.button--ghost-dark > .wp-block-button__link.wp-element-button {
	color: var(--ysl-color-ink);
	background: transparent;
	border-color: var(--ysl-color-line);
}

.wp-block-button.button--ghost-dark > .wp-block-button__link.wp-element-button:hover {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-color: var(--ysl-color-brand);
}

.site-header__menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__menu-icon {
	position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.site-header__menu-icon::before {
	top: -7px;
}

.site-header__menu-icon::after {
	top: 7px;
}

body.is-menu-open .site-header__menu-icon {
	background: transparent;
}

body.is-menu-open .site-header__menu-icon::before {
	transform: translateY(7px) rotate(45deg);
}

body.is-menu-open .site-header__menu-icon::after {
	transform: translateY(-7px) rotate(-45deg);
}

.home-hero,
.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 720px;
	overflow: hidden;
	color: #ffffff;
	background: #1f1c18;
}

.home-hero > .wp-block-group__inner-container,
.home-section > .wp-block-group__inner-container,
.home-cta > .wp-block-group__inner-container {
	display: contents;
}

.home-hero__media,
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.08)), var(--ysl-page-hero-image, url("../images/home-hero.jpg"));
	background-position: center;
	background-size: cover;
}

.home-hero__media::after,
.page-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
}

.home-hero__inner,
.page-hero__inner {
	position: relative;
	z-index: 1;
	width: var(--ysl-content);
	margin: 0 auto;
	padding: 172px 0 96px;
}

.home-hero__inner {
	max-width: 820px;
	margin-left: max(24px, calc((100vw - 1320px) / 2));
}

.home-hero__inner > .wp-block-group__inner-container,
.home-section__inner > .wp-block-group__inner-container,
.home-cta__inner > .wp-block-group__inner-container {
	display: contents;
}

.home-hero p,
.page-hero p,
.section-kicker {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(42px, 5.4vw, 72px);
	line-height: 1.05;
}

.home-hero .home-hero__copy {
	max-width: 660px;
	margin: 24px 0 0;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.84);
	text-transform: none;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.page-hero {
	min-height: 440px;
}

.page-hero h1 {
	font-size: clamp(36px, 5vw, 62px);
}

.content-section {
	padding: 88px 0;
}

.content-section__inner {
	width: var(--ysl-content);
	margin: 0 auto;
}

.content-section__inner--narrow {
	max-width: 860px;
}

.content-section--intro {
	background: var(--ysl-color-soft);
}

.content-section h2 {
	margin: 0 0 18px;
	font-size: clamp(28px, 4vw, 46px);
	line-height: 1.14;
}

.content-section p {
	color: var(--ysl-color-muted);
}

.home-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 720px;
	margin-top: 46px;
}

.home-hero__metrics div {
	padding: 20px 22px;
	background: rgba(20, 17, 13, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--ysl-radius);
	backdrop-filter: blur(10px);
}

.home-hero__metrics strong {
	display: block;
	font-size: 30px;
	line-height: 1;
	color: #ffffff;
}

.home-hero__metrics span {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.76);
	text-transform: uppercase;
}

.home-section {
	padding: 88px 0;
	background: #ffffff;
}

.home-section--categories,
.home-section--advantages {
	background: var(--ysl-color-warm);
}

.home-section__inner {
	width: var(--ysl-content);
	margin: 0 auto;
}

.home-section__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
	margin-bottom: 38px;
}

.home-section__header > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
}

.home-section__header h2 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.12;
}

.home-section__link,
.home-card-link {
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.home-section__link .wp-block-button__link {
	min-height: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	text-transform: inherit;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.home-section__link:hover,
.home-card-link:hover {
	color: var(--ysl-color-brand-dark);
}

.home-section--company {
	overflow: hidden;
	background: #ffffff;
}

.home-company {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 54px;
	align-items: center;
	width: var(--ysl-content);
	margin: 0 auto;
}

.home-company.wp-block-columns,
.home-category-grid.wp-block-columns,
.home-product-grid.wp-block-columns,
.home-split.wp-block-columns,
.home-proof-grid.wp-block-columns,
.home-advantage-grid.wp-block-columns,
.home-service.wp-block-columns,
.home-service__steps.wp-block-columns,
.home-network.wp-block-columns,
.home-news-grid.wp-block-columns {
	display: grid !important;
}

.home-company__content h2,
.home-service__content h2 {
	margin: 0 0 20px;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
}

.home-company__content p,
.home-service__content p {
	max-width: 680px;
	color: var(--ysl-color-muted);
}

.home-company__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

.home-company__media {
	position: relative;
	min-height: 420px;
}

.home-company__media figure,
.home-company__media .wp-block-image {
	height: 100%;
}

.home-company__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	border-radius: var(--ysl-radius);
	box-shadow: 0 22px 60px rgba(24, 20, 16, 0.12);
}

.home-company__media figure,
.home-split__media figure,
.home-service__media figure,
.home-network figure,
.home-product-card__image,
.home-category-card__media {
	margin: 0;
}

.home-company__note {
	position: absolute;
	right: 28px;
	bottom: -28px;
	max-width: 360px;
	padding: 24px;
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-radius: var(--ysl-radius);
	box-shadow: 0 24px 56px rgba(128, 72, 32, 0.24);
}

.home-company__note strong,
.home-company__note span,
.home-company__note p strong,
.home-company__note p span {
	display: block;
}

.home-company__note p {
	margin: 0;
}

.home-company__note strong {
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.2;
}

.home-company__note span {
	color: rgba(255, 255, 255, 0.78);
}

.home-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.home-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 218px;
	padding: 14px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-shadow-card);
	transition: transform var(--ysl-motion-card), border-color var(--ysl-motion-card), box-shadow var(--ysl-motion-card);
}

.home-category-card::after {
	content: "";
	position: absolute;
	right: -26px;
	bottom: -30px;
	width: 92px;
	height: 92px;
	background: rgba(201, 111, 45, 0.1);
	border-radius: 50%;
}

.home-category-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	width: 100%;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	background: var(--ysl-color-soft);
	border-radius: calc(var(--ysl-radius) - 2px);
}

.home-category-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ysl-motion-card);
}

.home-category-card__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-width: 0;
	min-height: 28px;
	padding: 0;
	font-size: 12px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	background: transparent;
	border-radius: 0;
}

.home-category-card h3 {
	display: block;
	position: relative;
	z-index: 1;
	margin: 4px 0 0;
	font-size: 18px;
	line-height: 1.2;
	color: var(--ysl-color-ink);
	transition: color var(--ysl-motion-card);
}

.home-category-card h3 a {
	color: inherit;
}

.home-category-card:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 111, 45, 0.32);
	box-shadow: var(--ysl-shadow-card-hover);
}

.home-category-card:hover .home-category-card__media img {
	transform: scale(1.02);
}

.home-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.home-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-shadow-card);
	transition: transform var(--ysl-motion-card), border-color var(--ysl-motion-card), box-shadow var(--ysl-motion-card);
}

.home-product-card:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 111, 45, 0.32);
	box-shadow: var(--ysl-shadow-card-hover);
}

.home-product-card:hover h3 a {
	color: var(--ysl-color-brand);
}

.home-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 11;
	padding: 18px;
	background: linear-gradient(180deg, #ffffff, var(--ysl-color-soft));
	border-bottom: 1px solid var(--ysl-color-line);
}

.home-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

figure.home-product-card__image {
	margin: 0;
}

.home-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 26px 28px;
}

.home-product-card__body > .wp-block-group__inner-container,
.news-card__body > .wp-block-group__inner-container {
	display: contents;
}

.home-product-card h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.18;
}

.home-product-card h3 a {
	color: var(--ysl-color-ink);
	transition: color var(--ysl-motion-card);
}

.home-product-card h3 a:hover {
	color: var(--ysl-color-brand);
}

.home-product-card p {
	margin: 0 0 22px;
	color: var(--ysl-color-muted);
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.home-product-card .home-card-link {
	margin-top: auto;
}

.home-section--split {
	padding: 0;
}

.home-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: 620px;
}

.home-split__media,
.home-split__media figure,
.home-split__media .wp-block-image {
	height: 100%;
	min-height: 620px;
}

.home-split__media img,
.home-network img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-split__media img {
	min-height: 620px;
}

.home-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px max(24px, calc((100vw - 1320px) / 2)) 80px 76px;
	background: #1c1915;
	color: #ffffff;
}

.home-split__content .button {
	align-self: flex-start;
	min-width: 240px;
}

.home-split__content h2,
.home-network h2,
.home-cta h2 {
	margin: 0 0 20px;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
}

.home-split__content p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.76);
}

.home-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 32px 0;
}

.home-proof-grid p,
.home-service__steps p {
	margin: 0;
}

.home-proof-grid div {
	padding: 22px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ysl-radius);
}

.home-proof-grid strong {
	display: block;
	font-size: 38px;
	line-height: 1;
	color: #ffffff;
}

.home-proof-grid span {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.72);
	text-transform: uppercase;
}

.home-advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.home-advantage-grid a,
.home-advantage-card {
	display: flex;
	flex-direction: column;
	min-height: 260px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-shadow-card);
	transition: transform var(--ysl-motion-card), border-color var(--ysl-motion-card), box-shadow var(--ysl-motion-card);
}

.home-advantage-grid a:hover,
.home-advantage-card:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 111, 45, 0.32);
	box-shadow: var(--ysl-shadow-card-hover);
}

.home-advantage-grid a:hover strong,
.home-advantage-card:hover h3 {
	color: var(--ysl-color-brand);
}

.home-advantage-grid span,
.home-advantage-card span {
	margin-bottom: 34px;
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
}

.home-advantage-grid strong,
.home-advantage-card h3 {
	margin-bottom: 12px;
	font-size: 22px;
	line-height: 1.2;
	color: var(--ysl-color-ink);
	transition: color var(--ysl-motion-card);
}

.home-advantage-grid p,
.home-advantage-card p {
	margin: 0;
	color: var(--ysl-color-muted);
}

.home-advantage-card p:first-child {
	margin-bottom: 34px;
}

.home-section--service {
	background: #ffffff;
}

.home-service {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	width: var(--ysl-content);
	margin: 0 auto;
	overflow: hidden;
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 24px 68px rgba(24, 20, 16, 0.08);
}

.home-service__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
}

.home-service__media,
.home-service__media figure,
.home-service__media .wp-block-image {
	height: 100%;
}

.home-service__content {
	padding: 58px;
}

.home-service__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 30px 0;
}

.home-service__steps div {
	padding: 18px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.home-service__steps span {
	display: block;
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 900;
	color: var(--ysl-color-brand);
}

.home-service__steps strong {
	display: block;
	font-size: 18px;
	line-height: 1.22;
}

.home-network {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 48px;
	align-items: center;
	width: var(--ysl-content);
	margin: 0 auto;
}

.home-network p {
	max-width: 680px;
	color: var(--ysl-color-muted);
}

.home-network img {
	aspect-ratio: 16 / 9;
	border-radius: var(--ysl-radius);
	box-shadow: 0 22px 60px rgba(24, 20, 16, 0.1);
}

.home-network figure,
.home-network .wp-block-image {
	margin: 0;
}

.home-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.home-cta {
	padding: 98px 0;
	color: #ffffff;
	background: linear-gradient(90deg, rgba(20, 17, 13, 0.96), rgba(20, 17, 13, 0.74)), url("../images/home-showroom.jpg") center / cover;
}

.home-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 880px);
	gap: 28px;
	align-items: start;
	width: var(--ysl-content);
	margin: 0 auto;
}

.home-cta h2 {
	max-width: 860px;
	margin-bottom: 8px;
}

.home-cta .button {
	align-self: start;
	width: min(100%, 320px);
}

.ysl-contact-pattern {
	margin-top: -18px;
}

.ysl-overview-pattern h2 {
	margin-bottom: 18px;
}

.ysl-overview-pattern--about {
	margin-top: -18px;
}

.ysl-split-hero {
	display: grid !important;
	grid-template-columns: var(--ysl-split-hero-columns, minmax(0, 1fr) minmax(0, 1fr));
	gap: var(--ysl-split-hero-gap, 30px);
	align-items: stretch;
	margin: var(--ysl-split-hero-margin, 0 0 28px);
}

.ysl-split-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--ysl-split-hero-content-padding, 0);
}

.ysl-split-hero h2 {
	max-width: var(--ysl-split-hero-title-width, none);
	margin: 0 0 var(--ysl-split-hero-title-gap, 22px);
	font-size: var(--ysl-split-hero-title-size, clamp(40px, 5vw, 70px));
	line-height: var(--ysl-split-hero-title-line-height, 1.04);
}

.ysl-split-hero__content p:not(.section-kicker) {
	max-width: var(--ysl-split-hero-copy-width, none);
	margin: 0;
	font-size: 18px;
	color: var(--ysl-color-muted);
}

.ysl-split-hero__actions {
	gap: 12px;
	margin-top: 30px;
}

.ysl-split-hero__media figure {
	height: 100%;
	min-height: var(--ysl-split-hero-media-height, 440px);
	margin: 0;
}

.ysl-split-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--ysl-radius);
	box-shadow: 0 22px 60px rgba(24, 20, 16, 0.11);
}

.ysl-overview-hero {
	--ysl-split-hero-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	--ysl-split-hero-copy-width: 700px;
	--ysl-split-hero-gap: 44px;
	--ysl-split-hero-margin: 0 0 28px;
	--ysl-split-hero-title-gap: 18px;
	--ysl-split-hero-title-size: clamp(38px, 4vw, 64px);
	--ysl-split-hero-title-width: 760px;
}

.ysl-stat-strip {
	display: grid !important;
	gap: 0;
	overflow: hidden;
	border-radius: var(--ysl-radius);
}

.ysl-stat-strip--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ysl-stat-strip--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ysl-stat-strip--dark {
	background: #1c1915;
}

.ysl-stat-strip--light {
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
}

.ysl-stat-strip .wp-block-column {
	margin: 0;
	padding: 28px 32px;
	border-right: 1px solid var(--ysl-stat-strip-divider, rgba(255, 255, 255, 0.12));
}

.ysl-stat-strip .wp-block-column:last-child {
	border-right: 0;
}

.ysl-stat-strip--light .wp-block-column {
	--ysl-stat-strip-divider: var(--ysl-color-line);
}

.ysl-stat-strip p {
	margin: 0;
}

.ysl-stat-strip strong,
.ysl-stat-strip span {
	display: block;
}

.ysl-stat-strip strong {
	margin-bottom: 8px;
	font-size: 36px;
	line-height: 1;
}

.ysl-stat-strip--dark strong {
	color: #ffffff;
}

.ysl-stat-strip--light strong {
	color: var(--ysl-color-ink);
}

.ysl-stat-strip span {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.ysl-stat-strip--dark span {
	color: rgba(255, 255, 255, 0.68);
}

.ysl-stat-strip--light span {
	color: var(--ysl-color-muted);
}

.ysl-numbered-card-grid {
	display: grid !important;
	gap: var(--ysl-numbered-card-grid-gap, 18px);
}

.ysl-numbered-card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ysl-numbered-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ysl-numbered-card-grid--mosaic {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ysl-numbered-card-grid--mosaic .ysl-numbered-card {
	grid-column: span 2;
}

.ysl-numbered-card-grid--mosaic .ysl-numbered-card:nth-child(n + 4) {
	grid-column: span 3;
}

.ysl-numbered-card {
	position: relative;
	min-height: var(--ysl-numbered-card-min-height, 300px);
	margin: 0;
	padding: var(--ysl-numbered-card-padding, 30px);
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
	transition: transform var(--ysl-motion-card), border-color var(--ysl-motion-card), box-shadow var(--ysl-motion-card);
}

.ysl-numbered-card::after {
	content: "";
	position: absolute;
	right: var(--ysl-numbered-card-orb-right, -38px);
	bottom: var(--ysl-numbered-card-orb-bottom, -42px);
	width: var(--ysl-numbered-card-orb-size, 132px);
	height: var(--ysl-numbered-card-orb-size, 132px);
	background: rgba(201, 111, 45, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.ysl-numbered-card:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 111, 45, 0.32);
	box-shadow: var(--ysl-shadow-card-hover);
}

.ysl-numbered-card__index {
	position: relative;
	z-index: 1;
	margin: 0 0 var(--ysl-numbered-card-index-gap, 66px);
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
}

.ysl-numbered-card h3,
.ysl-numbered-card p:not(.ysl-numbered-card__index) {
	position: relative;
	z-index: 1;
}

.ysl-numbered-card h3 {
	margin-bottom: 14px;
	font-size: var(--ysl-numbered-card-heading-size, 28px);
}

.ysl-numbered-card h3 a {
	color: inherit;
}

.ysl-numbered-card p:not(.ysl-numbered-card__index) {
	margin: 0;
	color: var(--ysl-color-muted);
}

.ysl-numbered-card:hover h3 {
	color: var(--ysl-color-brand);
}

.ysl-overview-stats {
	margin: 34px 0 64px;
}

.ysl-overview-section-head {
	margin-bottom: 24px;
}

.ysl-overview-section-head h3 {
	max-width: 720px;
	margin: 0;
	font-size: 34px;
	line-height: 1.12;
}

.ysl-overview-pattern__grid {
	gap: 18px;
	margin-top: 34px;
}

.ysl-overview-pattern__grid .wp-block-column {
	padding: 24px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-shadow-card);
	transition: transform var(--ysl-motion-card), border-color var(--ysl-motion-card), box-shadow var(--ysl-motion-card);
}

.news-card:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 111, 45, 0.32);
	box-shadow: var(--ysl-shadow-card-hover);
}

.ysl-overview-pattern__grid h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.25;
}

.ysl-overview-card-grid {
	margin-top: 0;
	--ysl-numbered-card-heading-size: 24px;
	--ysl-numbered-card-index-gap: 54px;
	--ysl-numbered-card-orb-bottom: -36px;
	--ysl-numbered-card-orb-right: -32px;
	--ysl-numbered-card-orb-size: 116px;
	--ysl-numbered-card-padding: 28px;
}

.ysl-advantages-overview {
	margin-top: -8px;
}

.ysl-advantages-overview h2,
.ysl-advantages-overview h3,
.ysl-advantages-overview p {
	max-width: none;
}

.ysl-advantages-overview__hero {
	--ysl-split-hero-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
	--ysl-split-hero-content-padding: 18px 0;
	--ysl-split-hero-margin: 0 0 28px;
}

.ysl-proof-panel {
	display: grid !important;
	grid-template-columns: repeat(var(--ysl-proof-panel-columns, 1), minmax(0, 1fr));
	gap: 1px;
	align-self: stretch;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--ysl-radius);
	box-shadow: 0 22px 60px rgba(24, 20, 16, 0.1);
}

.ysl-proof-panel--stack {
	--ysl-proof-panel-columns: 1;
}

.ysl-proof-panel--2 {
	--ysl-proof-panel-columns: 2;
}

.ysl-proof-panel p {
	display: flex;
	min-height: var(--ysl-proof-panel-item-min-height, auto);
	flex: var(--ysl-proof-panel-item-flex, initial);
	flex-direction: column;
	justify-content: var(--ysl-proof-panel-item-justify, flex-start);
	margin: 0;
	padding: var(--ysl-proof-panel-item-padding, 28px);
	background: #1c1915;
	color: var(--ysl-proof-panel-copy-color, rgba(255, 255, 255, 0.7));
}

.ysl-proof-panel strong,
.ysl-proof-panel span {
	display: block;
}

.ysl-proof-panel strong {
	margin-bottom: var(--ysl-proof-panel-title-gap, 10px);
	font-size: var(--ysl-proof-panel-title-size, 22px);
	line-height: var(--ysl-proof-panel-title-line-height, 1.2);
	color: #ffffff;
}

.ysl-proof-panel span {
	font-size: var(--ysl-proof-panel-label-size, 15px);
	font-weight: var(--ysl-proof-panel-label-weight, 400);
	line-height: var(--ysl-proof-panel-label-line-height, 1.55);
	text-transform: var(--ysl-proof-panel-label-transform, none);
}

.ysl-advantages-overview__panel {
	--ysl-proof-panel-copy-color: rgba(255, 255, 255, 0.7);
	--ysl-proof-panel-item-flex: 1;
	--ysl-proof-panel-item-padding: 30px;
	--ysl-proof-panel-label-line-height: 1.55;
	--ysl-proof-panel-label-size: 15px;
	--ysl-proof-panel-title-gap: 12px;
	--ysl-proof-panel-title-size: 22px;
}

.ysl-advantages-overview__proof {
	margin: 0 0 44px;
}

.ysl-advantages-overview__proof .wp-block-column {
	padding: 26px;
}

.ysl-advantages-overview__proof strong {
	font-size: clamp(28px, 3vw, 40px);
}

.ysl-advantages-overview__proof span {
	line-height: 1.35;
}

.ysl-advantages-overview__grid {
	margin: 0 0 48px;
	--ysl-numbered-card-index-gap: 70px;
}

.ysl-feature-band {
	display: grid !important;
	grid-template-columns: var(--ysl-feature-band-columns, minmax(0, 1fr) minmax(0, 1fr));
	gap: var(--ysl-feature-band-gap, 0);
	align-items: stretch;
	margin: var(--ysl-feature-band-margin, 0 0 48px);
	padding: var(--ysl-feature-band-padding, 0);
	overflow: hidden;
	background: var(--ysl-feature-band-background, var(--ysl-color-soft));
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-feature-band-shadow, none);
}

.ysl-feature-band .wp-block-column {
	margin: 0;
}

.ysl-feature-band__media,
.ysl-feature-band__media figure {
	height: 100%;
	margin: 0;
}

.ysl-feature-band__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: var(--ysl-feature-band-media-height, 440px);
	object-fit: cover;
}

.ysl-feature-band__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--ysl-feature-band-content-padding, 48px);
}

.ysl-feature-band__content h3 {
	max-width: var(--ysl-feature-band-heading-width, none);
	margin-bottom: 18px;
	font-size: var(--ysl-feature-band-heading-size, clamp(30px, 3vw, 46px));
	line-height: var(--ysl-feature-band-heading-line-height, 1.1);
}

.ysl-feature-band__content p:not(.section-kicker) {
	max-width: var(--ysl-feature-band-copy-width, none);
	margin: 0 0 var(--ysl-feature-band-copy-gap, 18px);
	font-size: 18px;
	color: var(--ysl-color-muted);
}

.ysl-feature-band__content p:last-child {
	margin-bottom: 0;
}

.ysl-advantages-overview__feature {
	--ysl-feature-band-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	--ysl-feature-band-copy-gap: 26px;
}

.ysl-dark-cta {
	display: grid !important;
	grid-template-columns: var(--ysl-dark-cta-columns, minmax(280px, 0.9fr) minmax(0, 1.1fr));
	gap: var(--ysl-dark-cta-gap, 42px);
	align-items: start;
	margin: var(--ysl-dark-cta-margin, 0);
	padding: var(--ysl-dark-cta-padding, 38px 42px);
	background: var(--ysl-dark-cta-background, #1c1915);
	border-radius: var(--ysl-radius);
}

.ysl-dark-cta .wp-block-column {
	margin: 0;
}

.ysl-dark-cta h3 {
	margin: 0;
	font-size: var(--ysl-dark-cta-heading-size, clamp(28px, 3vw, 42px));
	line-height: var(--ysl-dark-cta-heading-line-height, 1.12);
	color: #ffffff;
}

.ysl-dark-cta p {
	margin: 0 0 var(--ysl-dark-cta-copy-gap, 24px);
	font-size: 18px;
	color: rgba(255, 255, 255, 0.74);
}

.ysl-dark-cta p:last-child {
	margin-bottom: 0;
}

.ysl-advantages-overview__cta {
	--ysl-dark-cta-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.ysl-about-detail {
	max-width: 100%;
}

.ysl-page-lead {
	align-items: flex-start;
	gap: var(--ysl-page-lead-gap, 54px);
	margin-bottom: var(--ysl-page-lead-margin-bottom, 46px);
}

.ysl-page-lead h2 {
	font-size: var(--ysl-page-lead-title-size, clamp(38px, 4vw, 56px));
	line-height: var(--ysl-page-lead-title-line-height, 1.08);
}

.ysl-about-detail h2 {
	margin-bottom: 18px;
}

.ysl-about-detail h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.24;
}

.ysl-visual-band {
	--ysl-feature-band-content-padding: 34px;
	--ysl-feature-band-gap: 30px;
	--ysl-feature-band-margin: 42px 0 54px;
	--ysl-feature-band-media-height: 340px;
}

.ysl-visual-band--reverse {
	--ysl-feature-band-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

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

.ysl-wide-image {
	--ysl-wide-media-margin: 42px 0 54px;
}

.ysl-wide-media {
	margin: var(--ysl-wide-media-margin, 42px 0 54px);
}

.ysl-wide-media img {
	aspect-ratio: var(--ysl-wide-media-aspect-ratio, 16 / 7);
	border-radius: var(--ysl-radius);
	box-shadow: 0 22px 60px rgba(24, 20, 16, 0.1);
}

.ysl-statement-panel {
	display: flex;
	align-items: center;
	min-height: var(--ysl-statement-panel-min-height, auto);
	margin: var(--ysl-statement-panel-margin, 34px 0);
	padding: var(--ysl-statement-panel-padding, 30px);
	background: var(--ysl-statement-panel-background, #1c1915);
	border-radius: var(--ysl-radius);
}

.ysl-statement-panel p {
	max-width: var(--ysl-statement-panel-copy-width, 860px);
	margin: 0;
	font-size: var(--ysl-statement-panel-copy-size, 22px);
	line-height: var(--ysl-statement-panel-copy-line-height, 1.45);
	color: var(--ysl-statement-panel-copy-color, rgba(255, 255, 255, 0.84));
}

.ysl-statement-panel--hero {
	--ysl-statement-panel-copy-size: 24px;
	--ysl-statement-panel-copy-line-height: 1.42;
	--ysl-statement-panel-margin: 0;
	--ysl-statement-panel-min-height: 260px;
}

.ysl-statement-panel--light {
	--ysl-statement-panel-background: var(--ysl-color-soft);
	--ysl-statement-panel-copy-color: var(--ysl-color-muted);
	border: 1px solid var(--ysl-color-line);
}

.ysl-network-detail {
	margin-top: -8px;
}

.ysl-network-detail h2,
.ysl-network-detail h3,
.ysl-network-detail p {
	max-width: none;
}

.ysl-network-detail__hero {
	--ysl-split-hero-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	--ysl-split-hero-content-padding: 24px 0;
	--ysl-split-hero-margin: 0 0 44px;
	--ysl-split-hero-title-line-height: 1.03;
	--ysl-split-hero-title-size: clamp(42px, 5vw, 72px);
}

.ysl-network-stats {
	--ysl-proof-panel-columns: 2;
	--ysl-proof-panel-copy-color: rgba(255, 255, 255, 0.68);
	--ysl-proof-panel-item-justify: space-between;
	--ysl-proof-panel-item-min-height: 146px;
	--ysl-proof-panel-item-padding: 26px;
	--ysl-proof-panel-label-line-height: 1.35;
	--ysl-proof-panel-label-size: 13px;
	--ysl-proof-panel-label-transform: uppercase;
	--ysl-proof-panel-label-weight: 800;
	--ysl-proof-panel-title-gap: 0;
	--ysl-proof-panel-title-line-height: 1;
	--ysl-proof-panel-title-size: clamp(30px, 4vw, 48px);
}

.ysl-network-panel {
	--ysl-feature-band-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ysl-network-regions {
	margin: 0 0 48px;
	--ysl-numbered-card-index-gap: 72px;
	--ysl-numbered-card-min-height: 260px;
	--ysl-numbered-card-padding: 28px;
}

.ysl-network-cooperation {
	--ysl-dark-cta-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
	--ysl-dark-cta-copy-gap: 16px;
}

.ysl-about-detail__stats {
	margin: 0 0 54px;
}

.ysl-info-card-grid {
	display: grid !important;
	grid-template-columns: repeat(var(--ysl-info-card-grid-columns, 3), minmax(0, 1fr));
	gap: var(--ysl-info-card-grid-gap, 20px);
	margin: var(--ysl-info-card-grid-margin, 34px 0 42px);
}

.ysl-info-card-grid--2 {
	--ysl-info-card-grid-columns: 2;
}

.ysl-info-card-grid--3 {
	--ysl-info-card-grid-columns: 3;
}

.ysl-info-card-grid--4 {
	--ysl-info-card-grid-columns: 4;
}

.ysl-info-card {
	margin: 0;
	padding: var(--ysl-info-card-padding, 28px);
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.ysl-info-card h3 {
	margin-bottom: 12px;
	font-size: var(--ysl-info-card-heading-size, 20px);
}

.ysl-info-card p:last-child,
.ysl-info-card ul:last-child {
	margin-bottom: 0;
}

.ysl-info-card ul {
	padding-left: 20px;
	margin-top: 18px;
	color: var(--ysl-color-muted);
}

.ysl-info-card li + li {
	margin-top: 8px;
}

.ysl-about-detail__stats .wp-block-column {
	padding: 28px;
}

.ysl-about-detail__stats strong {
	font-size: 36px;
}

.ysl-about-detail__stats span {
	line-height: 1.4;
}

.ysl-note-panel {
	max-width: var(--ysl-note-panel-width, none);
	margin: var(--ysl-note-panel-margin, 0);
	padding: var(--ysl-note-panel-padding, 28px 32px);
	background: var(--ysl-note-panel-background, var(--ysl-color-soft));
	border: 1px solid var(--ysl-note-panel-border, var(--ysl-color-line));
	border-radius: var(--ysl-radius);
	box-shadow: var(--ysl-note-panel-shadow, none);
}

.ysl-note-panel--accent {
	--ysl-note-panel-background: #ffffff;
	--ysl-note-panel-border: var(--ysl-color-line);
	--ysl-note-panel-padding: 36px 40px;
	--ysl-note-panel-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
	border-left: 3px solid var(--ysl-color-brand);
}

.ysl-note-panel p {
	max-width: none;
	margin: 0;
	font-size: var(--ysl-note-panel-copy-size, 18px);
	color: var(--ysl-note-panel-copy-color, var(--ysl-color-ink));
}

.ysl-note-panel p + p {
	margin-top: 18px;
}

.ysl-note-panel h3:not(:first-child) {
	margin-top: 30px;
}

.ysl-about-detail__article {
	--ysl-note-panel-margin: 0;
}

.ysl-about-detail__article h3:not(:first-child) {
	margin-top: 30px;
}

.ysl-about-feature {
	--ysl-feature-band-background: #ffffff;
	--ysl-feature-band-content-padding: 44px;
	--ysl-feature-band-copy-width: 680px;
	--ysl-feature-band-heading-line-height: 1.12;
	--ysl-feature-band-heading-size: 34px;
	--ysl-feature-band-heading-width: 620px;
	--ysl-feature-band-margin: 34px 0;
	--ysl-feature-band-media-height: 360px;
	--ysl-feature-band-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.ysl-about-feature--manufacturing {
	--ysl-feature-band-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
}

.ysl-about-feature--quality {
	--ysl-feature-band-background: var(--ysl-color-soft);
	--ysl-feature-band-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
}

.ysl-philosophy-hero {
	--ysl-split-hero-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
	--ysl-split-hero-gap: 44px;
	--ysl-split-hero-margin: 0 0 34px;
}

.ysl-philosophy-hero h2 {
	font-size: clamp(38px, 4vw, 58px);
	line-height: 1.08;
}

.ysl-philosophy-statement {
	--ysl-statement-panel-copy-size: 24px;
	--ysl-statement-panel-copy-line-height: 1.42;
	--ysl-statement-panel-margin: 0;
	--ysl-statement-panel-min-height: 260px;
}

.ysl-philosophy-principles {
	margin: 34px 0 0;
	--ysl-numbered-card-min-height: 310px;
	--ysl-numbered-card-orb-bottom: -38px;
	--ysl-numbered-card-orb-right: -34px;
	--ysl-numbered-card-orb-size: 124px;
}

.ysl-philosophy-note {
	--ysl-note-panel-margin: 22px 0 0;
}

.ysl-philosophy-note p {
	--ysl-note-panel-copy-size: 18px;
	--ysl-note-panel-copy-color: var(--ysl-color-ink);
}

.ysl-design-support-grid {
	margin: 34px 0 0;
	--ysl-numbered-card-heading-size: 26px;
	--ysl-numbered-card-index-gap: 60px;
	--ysl-numbered-card-orb-bottom: -38px;
	--ysl-numbered-card-orb-right: -34px;
	--ysl-numbered-card-orb-size: 124px;
}

.ysl-design-support-note {
	--ysl-note-panel-margin: 22px 0 0;
}

.ysl-design-support-note p {
	--ysl-note-panel-copy-size: 18px;
	--ysl-note-panel-copy-color: var(--ysl-color-ink);
}

.ysl-about-cards {
	--ysl-info-card-grid-gap: 20px;
	--ysl-info-card-grid-margin: 34px 0 42px;
}

.ysl-about-cards .ysl-info-card p {
	margin-bottom: 0;
}

.ysl-about-cards--network {
	--ysl-info-card-grid-columns: 4;
}

.ysl-about-cards--network .ysl-info-card {
	margin: 0;
}

.ysl-advantage-detail ul {
	padding-left: 20px;
	margin: 18px 0 0;
	color: var(--ysl-color-muted);
}

.ysl-advantage-detail li + li {
	margin-top: 8px;
}

.ysl-process-steps {
	display: grid !important;
	grid-template-columns: repeat(var(--ysl-process-steps-columns, 4), minmax(0, 1fr));
	gap: var(--ysl-process-steps-gap, 18px);
	margin: var(--ysl-process-steps-margin, 38px 0 0);
}

.ysl-process-steps--3 {
	--ysl-process-steps-columns: 3;
}

.ysl-process-steps--4 {
	--ysl-process-steps-columns: 4;
}

.ysl-process-step {
	position: relative;
	margin: 0;
	padding: var(--ysl-process-step-padding, 28px);
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-process-step__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ysl-process-step-index-size, 42px);
	height: var(--ysl-process-step-index-size, 42px);
	margin: 0 0 var(--ysl-process-step-index-gap, 20px);
	font-size: var(--ysl-process-step-index-font-size, 13px);
	font-weight: 900;
	color: var(--ysl-color-brand-dark);
	background: #fbefe3;
	border: 1px solid rgba(201, 111, 45, 0.34);
	border-radius: 50%;
	box-shadow: 0 8px 18px rgba(159, 78, 25, 0.1);
}

.ysl-process-step h3 {
	margin-bottom: var(--ysl-process-step-heading-gap, 10px);
	font-size: var(--ysl-process-step-heading-size, 20px);
}

.ysl-process-step p:not(.ysl-process-step__index) {
	margin-bottom: 0;
}

.ysl-advantage-steps,
.ysl-check-card-grid {
	gap: 18px;
	margin-top: 38px;
}

.ysl-check-card {
	position: relative;
	padding: var(--ysl-check-card-padding, 28px);
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-check-card::before {
	content: "";
	display: block;
	width: var(--ysl-check-card-mark-width, 28px);
	height: var(--ysl-check-card-mark-height, 3px);
	margin-bottom: var(--ysl-check-card-mark-gap, 20px);
	background: var(--ysl-color-brand);
}

.ysl-advantage-steps h3,
.ysl-check-card h3 {
	margin-bottom: 10px;
	font-size: var(--ysl-check-card-heading-size, 20px);
}

.ysl-advantage-steps p:not(.ysl-process-step__index),
.ysl-check-card p {
	margin-bottom: 0;
}

.ysl-advantage-paths {
	align-items: stretch;
	--ysl-info-card-grid-columns: 2;
	--ysl-info-card-padding: 34px;
	--ysl-info-card-heading-size: 24px;
}

.ysl-advantage-paths h3 {
	font-size: 24px;
}

.ysl-mini-process {
	--ysl-process-step-index-font-size: 12px;
	--ysl-process-step-index-gap: 18px;
	--ysl-process-step-index-size: 40px;
	--ysl-process-step-padding: 24px;
	--ysl-process-steps-columns: 3;
	--ysl-process-steps-gap: 16px;
	--ysl-process-steps-margin: 34px 0;
}

.ysl-contact-pattern__intro {
	gap: 54px;
	margin-bottom: 72px;
}

.ysl-pattern-kicker {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.ysl-contact-pattern h2 {
	max-width: 680px;
	margin: 0 0 18px;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
}

.ysl-contact-pattern h3 {
	margin: 0 0 22px;
	font-size: 24px;
	line-height: 1.2;
}

.ysl-contact-pattern p {
	max-width: 640px;
	color: var(--ysl-color-muted);
}

.ysl-contact-pattern__image {
	margin: 0;
}

.ysl-contact-pattern__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--ysl-radius);
}

.ysl-contact-layout,
.ysl-contact-pattern__body {
	align-items: stretch;
	gap: 28px;
}

.ysl-contact-process,
.ysl-contact-pattern__process {
	--ysl-process-step-padding: 26px;
	--ysl-process-steps-gap: 18px;
	--ysl-process-steps-margin: 0 0 38px;
}

.ysl-contact-step {
	--ysl-process-step-index-gap: 18px;
}

.ysl-contact-panel,
.ysl-contact-pattern__details,
.ysl-contact-pattern__form {
	padding: 34px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 20px 52px rgba(24, 20, 16, 0.06);
}

.ysl-contact-card {
	padding: 20px 0;
	border-top: 1px solid var(--ysl-color-line);
}

.ysl-contact-card:first-of-type {
	border-top: 0;
}

.ysl-contact-card p {
	margin: 0;
}

.ysl-contact-card p + p {
	margin-top: 8px;
}

.ysl-contact-card__label {
	font-size: 12px;
	font-weight: 900;
	color: var(--ysl-color-brand) !important;
	text-transform: uppercase;
}

.ysl-contact-form-panel .wpcf7,
.ysl-contact-form-panel form,
.ysl-contact-pattern__form .wpcf7,
.ysl-contact-pattern__form form {
	margin-top: 24px;
}

.ysl-contact-form-panel input:not([type="submit"]),
.ysl-contact-form-panel textarea,
.ysl-contact-form-panel select,
.ysl-contact-pattern__form input:not([type="submit"]),
.ysl-contact-pattern__form textarea,
.ysl-contact-pattern__form select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	font: inherit;
	color: var(--ysl-color-ink);
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-contact-form-panel textarea,
.ysl-contact-pattern__form textarea {
	min-height: 132px;
	padding-top: 12px;
}

.ysl-contact-form-panel input[type="submit"],
.ysl-contact-form-panel button[type="submit"],
.ysl-contact-pattern__form input[type="submit"],
.ysl-contact-pattern__form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	font: inherit;
	font-weight: 800;
	color: #ffffff;
	cursor: pointer;
	background: var(--ysl-color-brand);
	border: 1px solid var(--ysl-color-brand);
	border-radius: var(--ysl-radius);
}

.post-card {
	padding: 26px 0;
	border-bottom: 1px solid var(--ysl-color-line);
}

.post-card h2 {
	margin: 0 0 10px;
	font-size: 26px;
}

.page-section-nav {
	padding: 0 0 82px;
	background: #ffffff;
}

.page-section-nav__inner {
	width: var(--ysl-content);
	margin: 0 auto;
	padding-top: 34px;
	border-top: 1px solid var(--ysl-color-line);
}

.page-section-nav__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.page-section-nav__grid a {
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 18px;
	color: var(--ysl-color-ink);
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.page-section-nav__grid a:hover,
.page-section-nav__grid a.is-active {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-color: var(--ysl-color-brand);
}

.page-section-nav__grid span {
	font-weight: 800;
	line-height: 1.22;
}

.page-hero__copy {
	max-width: 620px;
	margin-top: 22px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.84);
}

.news-archive__section {
	padding: 82px 0 96px;
	background: #ffffff;
}

.news-archive__inner {
	width: var(--ysl-content);
	margin: 0 auto;
}

.news-archive__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
	margin-bottom: 38px;
}

.news-archive__header h2 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
}

.news-archive__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	max-width: 560px;
}

.news-archive__filters a,
.news-archive__back {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 800;
	color: var(--ysl-color-ink);
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.news-archive__filters a:hover,
.news-archive__filters a.is-active,
.news-archive__back:hover {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-color: var(--ysl-color-brand);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.news-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.news-card--featured {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.news-card__media {
	display: block;
	min-height: 240px;
	margin: 0;
	overflow: hidden;
	background: var(--ysl-color-soft);
}

.news-card__media a {
	display: block;
	height: 100%;
}

.news-card--featured .news-card__media {
	min-height: 100%;
}

.news-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform var(--ysl-motion-card);
}

.news-card:hover .news-card__media img {
	transform: scale(1.02);
}

.news-card:hover .news-card__title a {
	color: var(--ysl-color-brand);
}

.news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.news-card__title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.18;
}

.news-card__title a {
	transition: color var(--ysl-motion-card);
}

.news-card--featured .news-card__title {
	font-size: clamp(28px, 3vw, 40px);
}

.news-card__excerpt {
	color: var(--ysl-color-muted);
}

.news-card__excerpt p,
p.news-card__excerpt {
	margin: 0;
	color: inherit;
}

.news-card__link {
	align-self: flex-start;
	margin-top: auto;
	padding-top: 24px;
	font-size: 13px;
	font-weight: 900;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.news-empty {
	padding: 42px;
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.navigation.pagination {
	margin-top: 42px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	font-weight: 800;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.page-numbers.current,
.page-numbers:hover {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-color: var(--ysl-color-brand);
}

.ysl-product-layout-section {
	padding: 78px 0 96px;
	background: #ffffff;
}

.ysl-product-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 42px;
	align-items: start;
	width: var(--ysl-content);
	margin: 0 auto;
}

.ysl-product-sidebar {
	display: grid;
	gap: 40px;
}

.ysl-product-sidebar__panel {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.ysl-product-sidebar__heading {
	margin: 0;
	padding: 17px 20px;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.3;
	color: #ffffff;
	background: var(--ysl-color-brand);
}

.ysl-product-categories ul {
	padding: 8px 20px 0;
	margin: 0;
	list-style: none;
}

.ysl-product-categories li {
	border-bottom: 1px solid var(--ysl-color-line);
}

.ysl-product-categories a {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 51px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	color: #091827;
}

.ysl-product-categories a span {
	font-size: 20px;
	font-weight: 400;
	color: var(--ysl-color-brand);
	transform: translateY(-1px);
}

.ysl-product-categories a:hover,
.ysl-product-categories a.is-active {
	color: var(--ysl-color-brand);
}

.ysl-hot-products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
}

.ysl-hot-product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 178px;
	padding: 12px 8px 10px;
	text-align: center;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-hot-product__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 0.86;
	margin-bottom: 10px;
	background: var(--ysl-color-soft);
	border-radius: calc(var(--ysl-radius) - 2px);
}

.ysl-hot-product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ysl-hot-product__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.18;
	font-weight: 700;
	color: var(--ysl-color-ink);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ysl-product-main {
	min-width: 0;
}

.ysl-product-main__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
}

.ysl-product-main__header h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 1.13;
}

.ysl-product-seo {
	margin-bottom: 28px;
	color: var(--ysl-color-muted);
}

.ysl-product-main .naibabiji-b2b-products-grid,
.ysl-product-detail .naibabiji-b2b-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ysl-product-main .naibabiji-b2b-product-card,
.ysl-product-detail .naibabiji-b2b-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.ysl-product-main .naibabiji-b2b-product-thumbnail {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 20px;
	background: #ffffff;
	border-bottom: 1px solid var(--ysl-color-line);
}

.ysl-product-main .naibabiji-b2b-product-thumbnail a {
	display: contents;
}

.ysl-product-main .naibabiji-b2b-product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ysl-product-main .naibabiji-b2b-product-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.ysl-product-main .naibabiji-b2b-product-title {
	margin: 0 0 10px;
	font-size: 21px;
	line-height: 1.25;
}

.ysl-product-main .naibabiji-b2b-product-title a:hover {
	color: var(--ysl-color-brand);
}

.ysl-products-page a {
	color: var(--ysl-color-brand);
}

.ysl-products-page a:hover {
	color: var(--ysl-color-brand-dark);
}

.ysl-product-main .naibabiji-b2b-product-excerpt {
	color: var(--ysl-color-muted);
}

.ysl-product-main .naibabiji-b2b-product-excerpt p {
	margin: 0;
}

.ysl-product-main .naibabiji-b2b-product-meta {
	margin-top: 14px;
	font-size: 13px;
	color: var(--ysl-color-muted);
}

.ysl-product-main .naibabiji-b2b-product-actions {
	margin-top: auto;
	padding-top: 18px;
}

.ysl-product-main .naib-b2b-btn,
.ysl-product-detail .naib-b2b-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 900;
	color: #ffffff;
	text-transform: uppercase;
	background: var(--ysl-color-brand);
	border: 1px solid var(--ysl-color-brand);
	border-radius: var(--ysl-radius);
}

.ysl-product-detail {
	min-width: 0;
}

.ysl-product-detail__main {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 34px;
	align-items: start;
	padding: 30px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
	box-shadow: 0 18px 46px rgba(24, 20, 16, 0.05);
}

.ysl-product-detail .naibabiji-b2b-breadcrumbs {
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ysl-color-muted);
}

.ysl-product-detail .naibabiji-b2b-breadcrumbs a {
	color: var(--ysl-color-brand);
}

.ysl-product-detail .naibabiji-b2b-breadcrumbs .separator,
.ysl-product-detail .naibabiji-b2b-breadcrumbs .current {
	color: var(--ysl-color-muted);
}

.ysl-product-detail__images {
	min-width: 0;
}

.ysl-product-detail .naibabiji-b2b-product-featured-image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-product-detail .naibabiji-b2b-featured-image {
	width: 100%;
	max-height: 480px;
	object-fit: contain;
}

.ysl-product-detail__summary h2 {
	margin: 0 0 18px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.14;
}

.ysl-product-detail .naibabiji-b2b-product-short-description {
	margin-bottom: 22px;
	color: var(--ysl-color-muted);
}

.ysl-product-specs {
	display: block;
	margin: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-product-specs__item {
	display: grid;
	grid-template-columns: minmax(118px, 0.34fr) minmax(0, 0.66fr);
	gap: 18px;
	min-width: 0;
	padding: 12px 16px;
	border-bottom: 1px solid var(--ysl-color-line);
}

.ysl-product-specs__item:nth-child(odd) {
	background: #fbfaf8;
}

.ysl-product-specs__item:last-child {
	border-bottom: 0;
}

.ysl-product-specs dt {
	margin: 0;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	color: var(--ysl-color-ink);
}

.ysl-product-specs dd {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ysl-color-muted);
	overflow-wrap: anywhere;
}

.ysl-product-detail .naibabiji-b2b-product-short-description p,
.ysl-product-detail .naibabiji-b2b-product-inquiry p {
	margin: 0 0 14px;
}

.ysl-product-detail .naibabiji-b2b-product-meta {
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 800;
	color: var(--ysl-color-brand);
}

.ysl-product-detail .naibabiji-b2b-product-inquiry {
	padding: 24px;
	background: #fff8f1;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-product-detail .naibabiji-b2b-inquiry-title {
	margin: 0 0 10px;
	font-size: 20px;
}

.ysl-product-detail__content {
	margin-top: 34px;
	padding: 34px;
	background: #ffffff;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.ysl-product-detail .naibabiji-b2b-product-content-title {
	margin: 0 0 22px;
	font-size: 30px;
}

.ysl-product-detail .naibabiji-b2b-product-description {
	color: var(--ysl-color-muted);
}

.ysl-product-detail .naibabiji-b2b-product-description p {
	margin: 0 0 18px;
}

.ysl-product-sidebar .ysl-product-categories a {
	color: var(--ysl-color-ink);
}

.ysl-product-sidebar .ysl-product-categories a:hover,
.ysl-product-sidebar .ysl-product-categories a.is-active {
	color: var(--ysl-color-brand);
}

.ysl-products-page .naib-b2b-btn,
.ysl-products-page .naib-b2b-btn:hover {
	color: #ffffff;
}

.ysl-product-main .naibabiji-b2b-product-title a,
.ysl-product-detail .naibabiji-b2b-product-title a {
	color: var(--ysl-color-ink);
}

.ysl-product-main .naibabiji-b2b-product-title a:hover,
.ysl-product-detail .naibabiji-b2b-product-title a:hover {
	color: var(--ysl-color-brand);
}

.single-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
	font-size: 13px;
	font-weight: 800;
	color: var(--ysl-color-brand);
	text-transform: uppercase;
}

.single-article__content {
	font-size: 18px;
	line-height: 1.78;
}

.single-article__content h2,
.single-article__content h3 {
	margin: 34px 0 14px;
	line-height: 1.22;
}

.single-article__content h2 {
	font-size: 30px;
}

.single-article__content h3 {
	font-size: 22px;
}

.single-article__content p,
.single-article__content ul,
.single-article__content ol {
	max-width: none;
	margin: 0 0 18px;
	color: var(--ysl-color-muted);
}

.single-article__content ul,
.single-article__content ol {
	padding-left: 24px;
}

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 1500;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 112px 20px 20px;
	background: rgba(0, 0, 0, 0.58);
}

.search-overlay__panel {
	position: relative;
	width: min(720px, 100%);
	padding: 34px;
	background: #ffffff;
	border-radius: var(--ysl-radius);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.search-overlay__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	font-size: 28px;
	color: var(--ysl-color-ink);
}

.search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	margin-top: 20px;
}

.search-field {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	font: inherit;
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.search-submit {
	min-height: 52px;
	padding: 0 22px;
	font: inherit;
	font-weight: 800;
	color: #ffffff;
	cursor: pointer;
	background: var(--ysl-color-brand);
	border: 1px solid var(--ysl-color-brand);
	border-radius: var(--ysl-radius);
}

.search-results-page__form .search-form {
	min-width: min(440px, 100%);
	margin-top: 0;
}

.search-result-card .news-card__meta span {
	color: var(--ysl-color-ink);
}

.search-empty .search-form,
.not-found-panel .search-form {
	max-width: 760px;
}

.search-empty__links,
.not-found-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

a.button--ghost-dark,
.button.button--ghost-dark {
	color: var(--ysl-color-ink);
	background: transparent;
	border: 1px solid var(--ysl-color-line);
}

a.button--ghost-dark:hover,
.button.button--ghost-dark:hover {
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-color: var(--ysl-color-brand);
}

.not-found-section {
	padding: 82px 0 96px;
	background: #ffffff;
}

.not-found-section__inner {
	width: var(--ysl-content);
	margin: 0 auto;
}

.not-found-panel {
	padding: 48px;
	background: var(--ysl-color-soft);
	border: 1px solid var(--ysl-color-line);
	border-radius: var(--ysl-radius);
}

.not-found-panel h2 {
	max-width: 760px;
	margin: 0 0 22px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
}

.site-footer {
	color: rgba(255, 255, 255, 0.78);
	background: var(--ysl-color-footer);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(240px, 1.25fr) 0.75fr 0.75fr 1.1fr;
	gap: 42px;
	width: var(--ysl-content);
	padding: 72px 0 54px;
	margin: 0 auto;
}

.site-footer h2 {
	margin: 0 0 18px;
	font-size: 15px;
	color: #ffffff;
	text-transform: uppercase;
}

.site-footer__brand .custom-logo-link img {
	max-width: 180px;
	margin-bottom: 22px;
	filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer li {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

.footer-menu li + li,
.site-footer__contact li + li {
	margin-top: 10px;
}

.site-footer__contact ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer a:hover {
	color: #ffffff;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: var(--ysl-content);
	padding: 22px 0;
	margin: 0 auto;
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer__credit {
	color: rgba(255, 255, 255, 0.68);
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 900;
	width: 46px;
	height: 46px;
	color: #ffffff;
	background: var(--ysl-color-brand);
	border-radius: 50%;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@media (max-width: 1100px) {
	.site-header__inner {
		gap: 18px;
	}

	.nav-menu {
		gap: 20px;
	}

	.site-header__email {
		display: none;
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
		min-height: 72px;
	}

	.site-header__menu-toggle {
		display: inline-flex;
		order: 3;
		justify-self: end;
	}

	.site-header__nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100vh - 72px);
		padding: 18px 20px 28px;
		overflow: auto;
		color: var(--ysl-color-ink);
		background: #ffffff;
		border-top: 1px solid var(--ysl-color-line);
	}

	body.is-menu-open .site-header__nav {
		display: block;
	}

	.nav-menu {
		display: block;
	}

	.nav-menu a {
		min-height: 48px;
	}

	.nav-menu .sub-menu {
		position: static;
		display: block;
		padding: 0 0 0 18px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
	}

	.site-header__actions {
		justify-self: end;
	}

	.site-header__cta {
		display: none;
	}

	.custom-logo-link img {
		max-width: 158px;
		max-height: 48px;
	}

	.home-hero,
	.page-hero {
		min-height: 570px;
	}

	.home-hero__inner,
	.page-hero__inner {
		padding-top: 128px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.ysl-contact-pattern__intro,
	.ysl-contact-pattern__body {
		gap: 24px;
	}

	.ysl-page-lead,
	.ysl-about-cards,
	.ysl-process-steps,
	.ysl-advantage-checklist,
	.ysl-split-hero,
	.ysl-dark-cta {
		gap: 18px;
	}

	.ysl-stat-strip--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ysl-stat-strip--3 {
		grid-template-columns: 1fr;
	}

	.ysl-stat-strip .wp-block-column {
		border-right: 1px solid var(--ysl-stat-strip-divider, rgba(255, 255, 255, 0.12));
		border-bottom: 1px solid var(--ysl-stat-strip-divider, rgba(255, 255, 255, 0.12));
	}

	.ysl-stat-strip--3 .wp-block-column {
		border-right: 0;
	}

	.ysl-stat-strip--3 .wp-block-column:last-child {
		border-bottom: 0;
	}

	.ysl-stat-strip--4 .wp-block-column:nth-child(even) {
		border-right: 0;
	}

	.ysl-stat-strip--4 .wp-block-column:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.ysl-about-cards--network {
		--ysl-info-card-grid-columns: 2;
	}

	.ysl-info-card-grid--4,
	.ysl-network-regions,
	.ysl-numbered-card-grid--4,
	.ysl-numbered-card-grid--mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ysl-numbered-card-grid--mosaic .ysl-numbered-card,
	.ysl-numbered-card-grid--mosaic .ysl-numbered-card:nth-child(n + 4) {
		grid-column: auto;
	}

	.ysl-split-hero,
	.ysl-overview-card-grid,
	.ysl-numbered-card-grid--3,
	.ysl-philosophy-principles,
	.ysl-design-support-grid {
		grid-template-columns: 1fr;
	}

	.ysl-feature-band,
	.ysl-dark-cta,
	.ysl-about-feature {
		grid-template-columns: 1fr;
	}

	.ysl-about-feature {
		--ysl-feature-band-content-padding: 32px;
	}

	.ysl-philosophy-statement {
		min-height: 0;
	}

	.ysl-feature-band {
		--ysl-feature-band-content-padding: 26px;
	}

	.news-archive__header {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.news-archive__filters {
		justify-content: flex-start;
	}

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

	.news-card--featured {
		grid-column: span 2;
		grid-template-columns: 1fr;
	}

	.home-section__header,
	.home-cta__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.home-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-product-grid,
	.home-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-split,
	.home-network,
	.home-company,
	.home-service {
		grid-template-columns: 1fr;
	}

	.home-company__media {
		min-height: 360px;
	}

	.home-service__media img {
		min-height: 360px;
	}

	.home-service__content {
		padding: 42px;
	}

	.home-split__content {
		padding: 72px max(24px, calc((100vw - 1320px) / 2));
	}

	.home-advantage-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.page-section-nav__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ysl-product-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.ysl-product-sidebar {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 22px;
	}

	.ysl-product-main .naibabiji-b2b-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ysl-product-detail__main {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	:root {
		--ysl-content: min(100vw - 28px, 1320px);
	}

	.site-header__inner {
		gap: 10px;
	}

	.site-header__search {
		width: 40px;
		height: 40px;
	}

	.home-hero,
	.page-hero {
		min-height: 540px;
	}

	.home-hero h1,
	.page-hero h1 {
		font-size: 40px;
	}

	.home-hero__copy {
		font-size: 17px;
	}

	.home-hero__metrics,
	.home-proof-grid,
	.home-category-grid,
	.home-product-grid,
	.home-news-grid,
	.home-advantage-grid {
		grid-template-columns: 1fr;
	}

	.home-section {
		padding: 62px 0;
	}

	.home-section__header {
		margin-bottom: 28px;
	}

	.home-category-card {
		min-height: 210px;
	}

	.home-product-card__body,
	.home-advantage-grid a {
		padding: 22px;
	}

	.home-split {
		min-height: 0;
	}

	.home-split__content {
		padding: 58px 14px;
	}

	.home-network {
		gap: 28px;
	}

	.home-company {
		gap: 34px;
	}

	.home-company__media,
	.home-company__media img {
		min-height: 300px;
	}

	.home-company__note {
		position: static;
		max-width: none;
		margin-top: 14px;
	}

	.home-company__links,
	.search-empty__links,
	.not-found-panel__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.home-service {
		display: block;
	}

	.home-service__media img {
		min-height: 260px;
	}

	.home-service__content {
		padding: 24px;
	}

	.home-service__steps,
	.page-section-nav__grid {
		grid-template-columns: 1fr;
	}

	.ysl-overview-hero {
		--ysl-split-hero-title-size: 38px;
	}

	.ysl-split-hero__media figure {
		min-height: 300px;
	}

	.ysl-overview-stats {
		margin-bottom: 46px;
	}

	.ysl-overview-section-head h3 {
		font-size: 28px;
	}

	.ysl-overview-card-grid .ysl-numbered-card {
		min-height: 0;
		padding: 24px;
	}

	.ysl-page-lead h2 {
		font-size: 34px;
	}

	.ysl-stat-strip--3,
	.ysl-stat-strip--4 {
		grid-template-columns: 1fr;
	}

	.ysl-stat-strip .wp-block-column,
	.ysl-stat-strip--4 .wp-block-column:nth-child(even),
	.ysl-stat-strip--4 .wp-block-column:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 1px solid var(--ysl-stat-strip-divider, rgba(255, 255, 255, 0.12));
	}

	.ysl-stat-strip .wp-block-column:last-child {
		border-bottom: 0;
	}

	.home-cta {
		padding: 64px 0;
	}

	.button {
		width: 100%;
	}

	.content-section {
		padding: 64px 0;
	}

	.ysl-contact-pattern__intro {
		margin-bottom: 42px;
	}

	.ysl-contact-panel,
	.ysl-contact-pattern__details,
	.ysl-contact-pattern__form,
	.ysl-contact-pattern__process .wp-block-column {
		padding: 24px;
	}

	.page-section-nav {
		padding-bottom: 62px;
	}

	.ysl-info-card,
	.ysl-check-card,
	.ysl-advantage-paths .wp-block-column {
		padding: 22px;
	}

	.ysl-note-panel--accent {
		padding-left: 18px;
	}

	.ysl-about-cards--network {
		--ysl-info-card-grid-columns: 1;
	}

	.ysl-info-card-grid,
	.ysl-network-regions {
		grid-template-columns: 1fr;
	}

	.ysl-numbered-card-grid--3,
	.ysl-numbered-card-grid--4,
	.ysl-numbered-card-grid--mosaic {
		grid-template-columns: 1fr;
	}

	.ysl-numbered-card-grid--mosaic .ysl-numbered-card,
	.ysl-numbered-card-grid--mosaic .ysl-numbered-card:nth-child(n + 4) {
		grid-column: auto;
	}

	.ysl-feature-band,
	.ysl-split-hero,
	.ysl-dark-cta,
	.ysl-process-steps {
		display: block;
	}

	.ysl-feature-band {
		--ysl-feature-band-content-padding: 22px;
		--ysl-feature-band-media-height: 220px;
	}

	.ysl-statement-panel,
	.ysl-process-step {
		padding: 22px;
	}

	.ysl-network-stats {
		grid-template-columns: 1fr;
		margin-top: 24px;
	}

	.ysl-proof-panel p,
	.ysl-dark-cta {
		padding: 22px;
	}

	.ysl-stat-strip .wp-block-column {
		padding: 22px;
	}

	.ysl-numbered-card {
		min-height: 0;
		padding: 22px;
	}

	.ysl-numbered-card__index {
		margin-bottom: 38px;
	}

	.ysl-philosophy-hero h2 {
		font-size: 34px;
	}

	.ysl-philosophy-statement p {
		font-size: 20px;
	}

	.ysl-process-step + .ysl-process-step {
		margin-top: 14px;
	}

	.ysl-wide-media {
		--ysl-wide-media-aspect-ratio: 4 / 3;
	}

	.news-archive__section {
		padding: 62px 0 72px;
	}

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

	.news-card--featured {
		grid-column: auto;
	}

	.news-card__media {
		min-height: 220px;
	}

	.news-card__body,
	.news-empty {
		padding: 24px;
	}

	.ysl-product-layout-section {
		padding: 58px 0 72px;
	}

	.ysl-product-sidebar {
		grid-template-columns: 1fr;
	}

	.ysl-product-sidebar__heading {
		font-size: 22px;
	}

	.ysl-product-categories a {
		min-height: 48px;
		font-size: 17px;
	}

	.ysl-product-main .naibabiji-b2b-products-grid {
		grid-template-columns: 1fr;
	}

	.ysl-product-detail__main,
	.ysl-product-detail__content {
		padding: 22px;
	}

	.ysl-product-specs__item {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 12px 14px;
	}

	.search-overlay {
		padding-top: 88px;
	}

	.search-overlay__panel {
		padding: 28px 18px 20px;
	}

	.search-form {
		grid-template-columns: 1fr;
	}

	.search-results-page__form .search-form {
		min-width: 0;
	}

	.not-found-section {
		padding: 58px 0 72px;
	}

	.not-found-panel {
		padding: 24px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 56px 0 42px;
	}

	.site-footer__bottom {
		display: block;
	}

	.site-footer__legal {
		margin-top: 14px;
	}
}
