/*
 * RUI LIGARE custom styles for Snow Monkey
 * 上質感・信頼感・先進性を軸にしたトップページ向けCSS
 */

/* ----------------------------------------------------------
  Base
---------------------------------------------------------- */
:root {
	--rui-color-primary: #05489b;
	--rui-color-primary-dark: #022b5f;
	--rui-color-black: #07090d;
	--rui-color-navy: #08111f;
	--rui-color-text: #1d232b;
	--rui-color-muted: #3f4752;
	--rui-color-border: #d3d3d3;
	--rui-color-gray: #f5f6f8;
	--rui-color-gray-dark: #eceff3;
	--rui-radius: 4px;
	--rui-font-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
	color: var(--rui-color-text);
	font-feature-settings: "palt";
	line-height: 1.9;
}

body,
button,
input,
select,
textarea {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--rui-color-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;
	transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus {
	color: var(--rui-color-primary-dark);
}

img {
	height: auto;
}

::selection {
	background: rgba(5, 72, 155, 0.18);
}

.p-entry-content > * + * {
	margin-top: clamp(1.4rem, 2.5vw, 2.4rem);
}

.p-entry-content p,
.p-entry-content li,
.p-entry-content td,
.p-entry-content dd,
.smb-section__body {
	color: var(--rui-color-text);
}

.c-section.p-section-front-page-content {
	padding: 0;
}

/* ----------------------------------------------------------
  Header
---------------------------------------------------------- */
.l-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(211, 211, 211, 0.75);
	box-shadow: 0 10px 34px rgba(7, 9, 13, 0.045);
	backdrop-filter: blur(12px);
}

.l-1row-header .c-container {
	max-width: 1280px;
}

.l-1row-header__branding {
	padding-top: 18px;
	padding-bottom: 18px;
}

.c-site-branding__title {
	font-family: var(--rui-font-en);
	font-size: clamp(1.05rem, 1.7vw, 1.45rem);
	font-weight: 700;
	line-height: 1.25;
}

.c-site-branding__title a {
	color: var(--rui-color-black);
	text-decoration: none;
}

.c-site-branding__title .custom-logo {
    filter: brightness(0.85);
}

.p-global-nav .c-navbar {
	gap: clamp(0.15rem, 1vw, 0.7rem);
}

.p-global-nav .c-navbar__item > a {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 0.18rem;
	padding: 18px clamp(8px, 1vw, 14px);
	color: var(--rui-color-text);
	text-decoration: none;
}

.p-global-nav .c-navbar__item > a::after {
	position: absolute;
	right: 14px;
	bottom: 10px;
	left: 14px;
	height: 1px;
	background: var(--rui-color-primary);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.28s ease;
}

.p-global-nav .c-navbar__item > a:hover::after,
.p-global-nav .c-navbar__item > a:focus::after,
.p-global-nav .c-navbar__item.current-menu-item > a::after {
	transform: scaleX(1);
}

.p-global-nav .c-navbar__item > a > span {
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
}

.p-global-nav .c-navbar__item small {
	color: var(--rui-color-primary);
	font-family: var(--rui-font-en);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.p-global-nav .sm-nav-menu-item-highlight > a {
	margin-left: clamp(6px, 1vw, 12px);
	padding-right: 22px;
	background: var(--rui-color-primary);
	color: #fff;
}

.p-global-nav .sm-nav-menu-item-highlight > a span,
.p-global-nav .sm-nav-menu-item-highlight > a small {
	color: #fff;
}

.p-global-nav .sm-nav-menu-item-highlight > a::after {
	background: #fff;
}

.p-global-nav .sm-nav-menu-item-highlight > a:hover,
.p-global-nav .sm-nav-menu-item-highlight > a:focus {
	background: var(--rui-color-black);
	color: #fff;
}

.c-hamburger-btn {
	color: var(--rui-color-black);
	font-family: var(--rui-font-en);
	font-weight: 700;
}

.c-hamburger-btn__bar {
	background-color: currentColor;
}

.c-drawer {
	background: var(--rui-color-black);
	color: #fff;
}

.c-drawer__item a {
	padding-top: 18px;
	padding-bottom: 18px;
	color: #fff;
	text-decoration: none;
}

.c-drawer__item a:hover,
.c-drawer__item a:focus {
	color: #dbe8f8;
}

/* ----------------------------------------------------------
  Headings
---------------------------------------------------------- */
.p-entry-content h2,
.p-entry-content h3,
.smb-section__title,
.smb-items__item__title,
.luxury-heading {
	color: var(--rui-color-black);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0;
}

.p-entry-content h2:not(.smb-section__title),
.p-entry-content h2.wp-block-heading,
.luxury-heading {
	position: relative;
	padding-bottom: 0.78em;
	font-size: clamp(1.75rem, 3.1vw, 2.6rem);
}

.p-entry-content h2:not(.smb-section__title)::after,
.p-entry-content h2.wp-block-heading::after,
.luxury-heading::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 72px;
	height: 2px;
	background: linear-gradient(90deg, var(--rui-color-primary), rgba(5, 72, 155, 0));
	content: "";
}

.p-entry-content h3:not(.smb-items__item__title):not(.c-entry-summary__title),
.p-entry-content h3.wp-block-heading {
	position: relative;
	padding: 0.25em 0 0.72em;
	border-bottom: 1px solid rgba(5, 72, 155, 0.28);
	font-size: clamp(1.08rem, 1.35vw, 1.32rem);
	font-weight: 800;
	line-height: 1.55;
}

.p-entry-content h3:not(.smb-items__item__title):not(.c-entry-summary__title)::before,
.p-entry-content h3.wp-block-heading::before {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 44px;
	height: 1px;
	background: var(--rui-color-primary);
	content: "";
}

.smb-section__header {
	margin-bottom: clamp(2.8rem, 5.8vw, 5rem);
}

.smb-section__subtitle {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--rui-color-primary);
	font-family: var(--rui-font-en);
	font-size: clamp(2.45rem, 5.8vw, 5.4rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0;
	text-transform: uppercase;
}

.smb-section__title {
	position: relative;
	margin-top: 0;
	padding-bottom: 1.25rem;
	font-size: clamp(1.12rem, 1.65vw, 1.45rem);
	font-weight: 800;
	line-height: 1.75;
}

.smb-section__title::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 84px;
	height: 2px;
	background: linear-gradient(90deg, rgba(5, 72, 155, 0), var(--rui-color-primary), rgba(5, 72, 155, 0));
	content: "";
	transform: translateX(-50%);
}

.smb-section-side-heading__title::after {
	left: 0;
	background: linear-gradient(90deg, var(--rui-color-primary), rgba(5, 72, 155, 0));
	transform: none;
}

.smb-section-side-heading__subtitle {
	font-size: clamp(1.85rem, 2.7vw, 2.9rem);
	line-height: 1.08;
	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
}

.smb-section__lede,
.wf-section__text {
	color: var(--rui-color-text);
	font-size: clamp(0.98rem, 1.35vw, 1.08rem);
	line-height: 2.05;
}

.smb-section__lede-wrapper {
	margin-top: clamp(1rem, 2vw, 1.6rem);
}

/* ----------------------------------------------------------
  Buttons
---------------------------------------------------------- */
.wp-block-button__link,
.smb-btn,
.luxury-button,
.p-entry-content a.wp-element-button,
.p-entry-content .wp-block-read-more {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.92em 2.25em;
	overflow: hidden;
	border: 1px solid var(--rui-color-primary);
	border-radius: var(--rui-radius);
	background: var(--rui-color-primary);
	color: #fff;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wp-block-button__link::after,
.smb-btn::after,
.luxury-button::after,
.p-entry-content a.wp-element-button::after,
.p-entry-content .wp-block-read-more::after {
	display: inline-block;
	margin-left: 0.75em;
	content: ">";
	font-family: var(--rui-font-en);
	font-weight: 700;
	transform: translateX(0);
	transition: transform 0.25s ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.smb-btn:hover,
.smb-btn:focus,
.luxury-button:hover,
.luxury-button:focus,
.p-entry-content a.wp-element-button:hover,
.p-entry-content a.wp-element-button:focus,
.p-entry-content .wp-block-read-more:hover,
.p-entry-content .wp-block-read-more:focus {
	border-color: var(--rui-color-black);
	background: var(--rui-color-black);
	color: #fff;
}

.wp-block-button__link:hover::after,
.wp-block-button__link:focus::after,
.smb-btn:hover::after,
.smb-btn:focus::after,
.luxury-button:hover::after,
.luxury-button:focus::after,
.p-entry-content a.wp-element-button:hover::after,
.p-entry-content a.wp-element-button:focus::after,
.p-entry-content .wp-block-read-more:hover::after,
.p-entry-content .wp-block-read-more:focus::after {
	transform: translateX(5px);
}

.wf-button--secondary .smb-btn,
.wp-block-button.is-style-outline .wp-block-button__link,
.luxury-button.is-secondary {
	border-color: rgba(5, 72, 155, 0.42);
	background: #fff;
	color: var(--rui-color-primary);
}

.wf-button--secondary .smb-btn:hover,
.wf-button--secondary .smb-btn:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.luxury-button.is-secondary:hover,
.luxury-button.is-secondary:focus {
	border-color: var(--rui-color-primary);
	background: var(--rui-color-primary);
	color: #fff;
}

.smb-buttons,
.wp-block-buttons {
	gap: 0.9rem 1rem;
}

/* ----------------------------------------------------------
  First View
---------------------------------------------------------- */
.smb-section-with-bgimage.smb-section--full {
	min-height: min(760px, calc(100svh - 72px));
	background: var(--rui-color-black);
}

.smb-section-with-bgimage.smb-section--full .smb-section__inner {
	display: flex;
	align-items: center;
	min-height: inherit;
	padding-top: clamp(6rem, 10vw, 9rem);
	padding-bottom: clamp(5rem, 8vw, 8rem);
}

.smb-section-with-bgimage.smb-section--full .smb-section__body {
	max-width: 880px;
	color: #fff;
}

.smb-section-with-bgimage.smb-section--full .smb-section-with-bgimage__bgimage::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 9, 13, 0.86) 0%, rgba(7, 9, 13, 0.62) 46%, rgba(7, 9, 13, 0.28) 100%),
		linear-gradient(0deg, rgba(7, 9, 13, 0.58), rgba(7, 9, 13, 0.08) 42%);
	content: "";
}

.smb-section-with-bgimage.smb-section--full img {
	object-fit: cover;
	object-position: center;
	filter: saturate(0.9) contrast(1.08);
}

.fv-title {
	margin-bottom: 1.25rem;
	color: #fff;
	font-weight: 800;
	line-height: 1.32;
	text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.smb-section-with-bgimage.smb-section--full .fv-title,
.smb-section-with-bgimage.smb-section--full .fv-title strong,
.smb-section-with-bgimage.smb-section--full .fv-title span {
	color: #fff;
}

.fv-title .has-sm-xl-font-size {
	font-size: clamp(2.15rem, 5.2vw, 4.6rem);
	letter-spacing: 0;
}

p.fv-title.wp-block-paragraph {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
}

.fv-title + p {
	/* max-width: 760px; */
	color: rgba(255, 255, 255, 0.88);
	/* font-size: clamp(0.98rem, 1.35vw, 1.1rem); */
	line-height: 2;
}

.p-entry-content .smb-section-with-bgimage.smb-section--full .fv-title + p {
	color: rgba(255, 255, 255, 0.92);
}

.wf-hero__buttons {
	margin-top: clamp(1.8rem, 3vw, 2.8rem);
}

.wf-hero__buttons .wf-button--secondary .smb-btn {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	backdrop-filter: blur(10px);
}

.wf-hero__buttons .wf-button--secondary .smb-btn:hover,
.wf-hero__buttons .wf-button--secondary .smb-btn:focus {
	border-color: #fff;
	background: #fff;
	color: var(--rui-color-black);
}

/* ----------------------------------------------------------
  Sections
---------------------------------------------------------- */
.smb-section--fit,
.section-luxury {
	padding-top: clamp(4.5rem, 8vw, 8rem);
	padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.section-gray,
.wf-section--reason,
.wf-section--service {
	background: linear-gradient(180deg, #fff 0%, var(--rui-color-gray) 100%);
}

.section-dark,
.wf-section--stock,
.wf-section--business {
	background:
		linear-gradient(135deg, rgba(5, 72, 155, 0.18), rgba(5, 72, 155, 0) 42%),
		var(--rui-color-navy);
	color: #fff;
}

.section-dark .smb-section__title,
.section-dark .smb-section__lede,
.section-dark .smb-section__subtitle,
.section-dark .smb-section__body,
.p-entry-content .section-dark p,
.wf-section--stock .smb-section__title,
.wf-section--stock .smb-section__lede,
.wf-section--stock .smb-section__body,
.p-entry-content .wf-section--stock p,
.wf-section--stock .wf-section__note,
.wf-section--business .smb-section__title,
.wf-section--business .smb-section__lede,
.wf-section--business .smb-section__body,
.p-entry-content .wf-section--business p {
	color: #fff;
}

.section-dark .smb-section__subtitle,
.wf-section--stock .smb-section__subtitle,
.wf-section--business .smb-section__subtitle {
	color: #dbe8f8;
}

.section-dark .smb-section__title::after,
.wf-section--stock .smb-section__title::after,
.wf-section--business .smb-section__title::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
}

.wf-section--company {
	background: #fff;
	border-top: 1px solid rgba(211, 211, 211, 0.8);
}

.wf-section__note {
	margin-top: 1.2rem;
	color: var(--rui-color-muted);
	font-size: 0.88rem;
}

/* ----------------------------------------------------------
  Cards / Posts
---------------------------------------------------------- */
.luxury-card,
.wf-card .smb-items__item,
.c-entries:not(.c-entries--text2) .c-entry-summary {
	height: 100%;
	overflow: hidden;
	border: 0;
	border-radius: var(--rui-radius);
	background: #fff;
}

.c-entries:not(.c-entries--text2) .c-entry-summary {
	background: var(--rui-color-gray);
}

.section-dark .c-entries:not(.c-entries--text2) .c-entry-summary,
.wf-section--stock .c-entries:not(.c-entries--text2) .c-entry-summary,
.wf-section--business .c-entries:not(.c-entries--text2) .c-entry-summary {
	background: rgba(255, 255, 255, 0.06);
}

.wf-card .smb-items__item__figure,
.c-entries:not(.c-entries--text2) .c-entry-summary__figure,
.luxury-card__image {
	overflow: hidden;
	background: var(--rui-color-gray-dark);
}

.smb-media-text__figure img {
    border-radius: var(--rui-radius);
	}

.wf-card .smb-items__item__figure img,
.c-entries:not(.c-entries--text2) .c-entry-summary__figure img,
.luxury-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.wf-card .smb-items__item:hover .smb-items__item__figure img,
.c-entries:not(.c-entries--text2) a:hover .c-entry-summary__figure img,
.c-entries:not(.c-entries--text2) a:focus .c-entry-summary__figure img,
.luxury-card:hover img {
	filter: saturate(0.95) contrast(1.04);
	transform: scale(1.045);
}

.wf-card .smb-items__item__body,
.luxury-card {
	padding: clamp(1.35rem, 2.5vw, 2rem);
}

.c-entries:not(.c-entries--text2) .c-entry-summary__body {
	padding: clamp(1.35rem, 2.4vw, 1.9rem);
}

.smb-items__item__title,
.c-entries:not(.c-entries--text2) .c-entry-summary__title {
	position: relative;
	padding-bottom: 0.72rem;
	font-size: clamp(0.98rem, 1.18vw, 1.12rem);
	font-weight: 800;
	line-height: 1.62;
}

.smb-items__item__title::after,
.c-entries:not(.c-entries--text2) .c-entry-summary__title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 34px;
	height: 1px;
	background: var(--rui-color-primary);
	content: "";
}

.smb-items__item__content,
.c-entries:not(.c-entries--text2) .c-entry-summary__content {
	margin-top: 0.9rem;
	color: var(--rui-color-text);
	font-size: 0.95rem;
	line-height: 1.95;
}

.c-entries:not(.c-entries--text2) .c-entry-summary__meta {
	margin-top: 1.15rem;
}

.c-entries--text2 {
	border-top: 1px solid rgba(211, 211, 211, 0.75);
	border-bottom: 1px solid rgba(211, 211, 211, 0.75);
}

.c-entries--text2 .c-entries__item + .c-entries__item {
	border-top: 1px solid rgba(211, 211, 211, 0.55);
}

.c-entries--text2 .c-entry-summary {
	padding-top: clamp(1.4rem, 2.5vw, 2rem);
	padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
	border: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.c-entries--text2 a:hover .c-entry-summary,
.c-entries--text2 a:focus .c-entry-summary {
	background: transparent;
	box-shadow: none;
	transform: none;
}

.c-entries--text2 .c-entry-summary__title {
	padding-bottom: 0;
	font-size: 1rem;
	line-height: 1.7;
}

.c-entries--text2 .c-entry-summary__title::after {
	content: none;
}

.c-entries--text2 .c-entry-summary__content {
	margin-top: 0.5rem;
}

.c-entries--text2 .c-entry-summary__meta {
	margin-top: 0.8rem;
}

.c-entries a {
	color: inherit;
	text-decoration: none;
}

.c-entry-summary__term {
	border-radius: 0;
	background: var(--rui-color-primary);
	color: #fff;
	font-weight: 700;
}

.c-meta {
	color: var(--rui-color-muted);
	font-family: var(--rui-font-en);
	font-size: 0.82rem;
}

.c-meta__item--author {
	display: none;
}

/* ----------------------------------------------------------
  Tables / Forms
---------------------------------------------------------- */
.wf-table table,
.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	background: #fff;
}

.wf-table th,
.wf-table td,
.wp-block-table th,
.wp-block-table td {
	padding: 1.15rem 1.2rem;
	border: 0;
	border-bottom: 1px solid rgba(211, 211, 211, 0.8);
	vertical-align: top;
}

.wf-table th,
.wp-block-table th {
	width: 28%;
	color: var(--rui-color-primary);
	font-weight: 800;
	text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select,
.smf-text-control__control,
.smf-textarea-control__control {
	border: 1px solid rgba(211, 211, 211, 0.9);
	border-radius: var(--rui-radius);
	background: #fff;
	box-shadow: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus,
select:focus,
.smf-text-control__control:focus,
.smf-textarea-control__control:focus {
	border-color: var(--rui-color-primary);
	box-shadow: 0 0 0 3px rgba(5, 72, 155, 0.12);
	outline: 0;
}

.smf-item__label__text {
	font-weight: 800;
}

.smf-item__description {
	color: var(--rui-color-primary);
	font-weight: 700;
}

.smf-button-control__control {
	border-radius: var(--rui-radius);
	background: var(--rui-color-primary);
	color: #fff;
	font-weight: 800;
}

/* ----------------------------------------------------------
  Lower pages
---------------------------------------------------------- */
.fv-second {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(5, 72, 155, 0.36), rgba(5, 72, 155, 0) 46%),
		linear-gradient(90deg, #07090d 0%, #08111f 58%, #101722 100%);
	color: #fff;
}

.fv-second.smb-section--fit {
	padding-top: 0;
	padding-bottom: 0;
}

.fv-second::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(42vw, 620px);
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58));
	content: "";
}

.fv-second .smb-section__inner {
	position: relative;
	padding-top: clamp(5rem, 8vw, 8rem);
	padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.fv-second .smb-section__header {
	margin-bottom: 0;
	text-align: center;
}

.fv-second .smb-section__subtitle {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.95);
	font-size: clamp(3rem, 8vw, 6.6rem);
	line-height: 0.98;
}

.fv-second .smb-section__title {
	color: #fff;
	font-size: clamp(1.08rem, 1.65vw, 1.45rem);
}

.fv-second .smb-section__lede {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.98rem;
}

.fv-second .smb-section__title::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
}

.breadcrumbs-section {
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(211, 211, 211, 0.72);
	background: #fff;
}

.breadcrumbs-section.smb-section--fit {
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

.breadcrumbs-section .smb-section__contents-wrapper,
.breadcrumbs-section .smb-section__body {
	margin: 0;
}

.c-breadcrumbs {
	color: var(--rui-color-muted);
	font-size: 0.82rem;
}

.c-breadcrumbs a {
	color: var(--rui-color-muted);
	text-decoration: none;
}

.c-breadcrumbs a:hover,
.c-breadcrumbs a:focus {
	color: var(--rui-color-primary);
}

.wf-section--philosophy,
.wf-section--access,
.wf-section--service-overview,
.wf-section--service-maintenance,
.wf-section--service-coating,
.wf-section--ev-anxiety,
.wf-section--ev-lineup,
.wf-section--business-consultation,
.wf-section--business-flow,
.wf-section--contact-form,
.wf-section--solution-trust,
.wf-section--nanozone-feature,
.wf-section--solution-results,
.wf-section--solution-service {
	background: linear-gradient(180deg, #fff 0%, var(--rui-color-gray) 100%);
}

.wf-section--message .smb-section-side-heading__body,
.wf-section--service-sales .smb-section-side-heading__body,
.wf-section--service-purchase .smb-section-side-heading__body,
.wf-section--service-maintenance .smb-section-side-heading__body,
.wf-section--service-repair .smb-section-side-heading__body,
.wf-section--service-coating .smb-section-side-heading__body,
.wf-section--service-support .smb-section-side-heading__body {
	line-height: 2.05;
}

.wf-section--message .smb-section-side-heading__body > * + *,
.wf-section--service-sales .smb-section-side-heading__body > * + *,
.wf-section--service-purchase .smb-section-side-heading__body > * + *,
.wf-section--service-maintenance .smb-section-side-heading__body > * + *,
.wf-section--service-repair .smb-section-side-heading__body > * + *,
.wf-section--service-coating .smb-section-side-heading__body > * + *,
.wf-section--service-support .smb-section-side-heading__body > * + * {
	margin-top: 1.25rem;
}

.wf-message__signature {
	margin-top: 2rem;
	font-weight: 800;
	text-align: right;
}

.wf-message__sns {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.4rem;
	color: var(--rui-color-primary);
	font-weight: 800;
	text-decoration: none;
}

.wf-items--policy .smb-items__item,
.wf-items--shop .smb-items__item,
.wf-items--service-summary .smb-items__item,
.wf-items--ev-anxiety .smb-items__item,
.wf-items--ev-reason .smb-items__item,
.wf-items--ev-lineup .smb-items__item,
.wf-items--contact-method .smb-items__item,
.wf-items--business-consultation .smb-items__item,
.wf-items--business-strength .smb-items__item {
	background: #fff;
}

.wf-card--shop .smb-items__item {
	background: var(--rui-color-gray);
}

.wf-card--ev-reason .smb-items__item {
	background: var(--rui-color-gray);
}

.wf-card--policy .smb-items__item__body,
.wf-card--contact-method .smb-items__item__body,
.wf-card--business-strength .smb-items__item__body {
	padding-top: clamp(1.6rem, 3vw, 2.35rem);
	padding-bottom: clamp(1.6rem, 3vw, 2.35rem);
}

/* ----------------------------------------------------------
  Environmental Hygiene Solution page
---------------------------------------------------------- */
.wf-solution-fv .smb-section__subtitle {
	font-size: clamp(2.55rem, 6.7vw, 5.9rem);
}

.wf-solution-fv__text {
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(0.98rem, 1.4vw, 1.08rem);
	line-height: 2.05;
}

.wf-items--solution-trust .smb-items__item,
.wf-items--nanozone-feature .smb-items__item,
.wf-items--solution-strength .smb-items__item,
.wf-items--solution-service .smb-items__item,
.wf-items--facility .smb-items__item,
.wf-columns--solution-results .wp-block-column {
	background: #fff;
}

.wf-card--solution-strength .smb-items__item {
	background: var(--rui-color-gray);
}

.wf-card--solution-trust .smb-items__item__body,
.wf-card--nanozone-feature .smb-items__item__body {
	position: relative;
	padding-top: clamp(4.4rem, 6vw, 5.2rem);
}

.wf-card--solution-trust .smb-items__item__body::before,
.wf-card--nanozone-feature .smb-items__item__body::before {
	position: absolute;
	top: clamp(1.35rem, 2.4vw, 1.8rem);
	left: clamp(1.35rem, 2.5vw, 2rem);
	display: inline-grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: var(--rui-radius);
	background: var(--rui-color-primary);
	color: #fff;
	content: "";
	font: var(--fa-font-solid);
	font-size: 1rem;
}

.wf-items--solution-trust .c-row__col:nth-child(1) .smb-items__item__body::before {
	content: "\f594";
}

.wf-items--solution-trust .c-row__col:nth-child(2) .smb-items__item__body::before {
	content: "\f19d";
}

.wf-items--solution-trust .c-row__col:nth-child(3) .smb-items__item__body::before {
	content: "\f0a3";
}

.wf-items--nanozone-feature .c-row__col:nth-child(1) .smb-items__item__body::before {
	content: "\f043";
}

.wf-items--nanozone-feature .c-row__col:nth-child(2) .smb-items__item__body::before {
	content: "\f5fd";
}

.wf-items--nanozone-feature .c-row__col:nth-child(3) .smb-items__item__body::before {
	content: "\f017";
}

.wf-items--nanozone-feature .c-row__col:nth-child(4) .smb-items__item__body::before {
	content: "\f3ed";
}

.wf-items--nanozone-feature .c-row__col:nth-child(5) .smb-items__item__body::before {
	content: "\f51a";
}

.wf-items--nanozone-feature .c-row__col:nth-child(6) .smb-items__item__body::before {
	content: "\f46c";
}

.wf-section--solution-strength .smb-section__body,
.wf-section--facility .smb-section__body,
.wf-section--solution-service .smb-section__body {
	margin-top: clamp(0.5rem, 1.5vw, 1rem);
}

.wf-card--solution-strength .smb-items__item__figure img,
.wf-card--solution-service .smb-items__item__figure img,
.wf-card--facility .smb-items__item__figure img {
	aspect-ratio: 16 / 9;
}

.wf-card--solution-strength .smb-items__item__title,
.wf-card--solution-service .smb-items__item__title {
	font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.wf-section--facility {
	background: #fff;
}

.wf-card--facility .smb-items__item {
	background: var(--rui-color-gray);
}

.wf-section--solution-results .wf-columns--solution-results {
	gap: clamp(1rem, 2.2vw, 1.6rem);
	margin-top: clamp(1rem, 2.5vw, 1.8rem);
}

.wf-columns--solution-results .wp-block-column {
	padding: clamp(1.35rem, 2.6vw, 2rem);
	border-radius: var(--rui-radius);
}

.p-entry-content .wf-columns--solution-results h3.wp-block-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-bottom-color: rgba(5, 72, 155, 0.2);
	font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.p-entry-content .wf-columns--solution-results h3.wp-block-heading::before {
	position: static;
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: var(--rui-radius);
	background: var(--rui-color-primary);
	color: #fff;
	content: "\f058";
	font: var(--fa-font-solid);
	font-size: 0.84rem;
}

.p-entry-content .wf-columns--solution-results:first-of-type .wp-block-column:nth-child(1) h3.wp-block-heading::before {
	content: "\f594";
}

.p-entry-content .wf-columns--solution-results:first-of-type .wp-block-column:nth-child(2) h3.wp-block-heading::before {
	content: "\f19d";
}

.p-entry-content .wf-columns--solution-results:nth-of-type(2) .wp-block-column:nth-child(1) h3.wp-block-heading::before {
	content: "\f0f8";
}

.p-entry-content .wf-columns--solution-results:nth-of-type(2) .wp-block-column:nth-child(2) h3.wp-block-heading::before {
	content: "\f66f";
}

.p-entry-content .wf-columns--solution-results h3.wp-block-heading::after {
	content: none;
}

.wf-columns--solution-results ul {
	padding-left: 0;
	list-style: none;
}

.wf-columns--solution-results li {
	position: relative;
	padding: 0.55rem 0 0.55rem 1.35rem;
	border-bottom: 1px solid rgba(211, 211, 211, 0.55);
	font-size: 0.94rem;
	line-height: 1.75;
}

.wf-columns--solution-results li::before {
	position: absolute;
	top: 0.78rem;
	left: 0;
	color: var(--rui-color-primary);
	content: "\f00c";
	font: var(--fa-font-solid);
	font-size: 0.76rem;
}

.wf-section--solution-faq {
	background: #fff;
}

.wf-section--solution-faq .wf-faq {
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
}

.wf-media-text .smb-media-text__contents-wrapper {
	padding: clamp(1rem, 2vw, 1.4rem) 0;
}

.wf-media-text .smb-media-text__figure {
	overflow: hidden;
	border-radius: var(--rui-radius);
	background: var(--rui-color-gray-dark);
}

.wf-media-text .smb-media-text__figure img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.wf-list--ev-check {
	padding-left: 0;
	list-style: none;
}

.wf-list--ev-check li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.8rem 0 0.8rem 1.8rem;
	border-bottom: 1px solid rgba(211, 211, 211, 0.7);
}

.wf-list--ev-check li::before {
	position: static;
	flex: 0 0 auto;
	width: 0.7rem;
	height: 0.7rem;
	margin-left: -1.8rem;
	border: 2px solid var(--rui-color-primary);
	border-top: 0;
	border-left: 0;
	content: "";
	transform: translateY(-1px) rotate(45deg);
}

.wf-flow .smb-step__item__title {
	align-items: center;
	color: var(--rui-color-black);
	font-size: clamp(1rem, 1.4vw, 1.16rem);
	font-weight: 800;
	line-height: 1.55;
}

.wf-flow .smb-step__item__number {
	border-color: var(--rui-color-primary);
	background: var(--rui-color-primary);
	color: #fff;
	font-family: var(--rui-font-en);
	font-weight: 800;
}

.wf-flow .smb-step__item__summary {
	margin-top: 0.6rem;
}

.wf-faq .smb-faq__item {
	padding: clamp(1.2rem, 2.5vw, 1.8rem) 0;
	border-top: 1px solid rgba(211, 211, 211, 0.82);
}

.wf-faq .smb-faq__item:last-child {
	border-bottom: 1px solid rgba(211, 211, 211, 0.82);
}

.wf-faq .smb-faq__item__question,
.wf-faq .smb-faq__item__answer {
	align-items: center;
	gap: 0.9rem;
}

.wf-faq .smb-faq__item__question__label,
.wf-faq .smb-faq__item__answer__label {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: var(--rui-radius);
	font-family: var(--rui-font-en);
	font-weight: 800;
	line-height: 1;
}

.wf-faq .smb-faq__item__question__label {
	background: var(--rui-color-primary);
	color: #fff;
}

.wf-faq .smb-faq__item__answer__label {
	background: var(--rui-color-gray-dark);
	color: var(--rui-color-primary);
}

.wf-faq .smb-faq__item__question__body {
	color: var(--rui-color-black);
	font-weight: 800;
}

.wf-faq .smb-faq__item__question__body > *,
.wf-faq .smb-faq__item__answer__body > * {
	margin-top: 0;
	margin-bottom: 0;
}

.wf-table--access table,
.wf-section--contact-form .snow-monkey-form {
	background: #fff;
}

.wf-access__buttons,
.wf-cta__buttons,
.wf-items .smb-items__item__action {
	margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.wf-section--access iframe,
.wp-block-embed iframe {
	width: 100%;
	border: 0;
	border-radius: var(--rui-radius);
	filter: grayscale(0.12) contrast(1.03);
}

.wf-section--contact-lead .wf-card--contact-method .smb-btn {
	width: 100%;
}

.wf-section--contact-lead .wf-card--contact-method a.smb-btn[href^="tel:"] {
	--smb-btn--background-color: #fff;
	--smb-btn--color: var(--rui-color-primary);
	border-color: rgba(5, 72, 155, 0.42);
	background: #fff;
	color: var(--rui-color-primary);
}

.wf-section--contact-lead .wf-card--contact-method a.smb-btn[href^="tel:"]:hover,
.wf-section--contact-lead .wf-card--contact-method a.smb-btn[href^="tel:"]:focus {
	--smb-btn--background-color: var(--rui-color-primary);
	--smb-btn--color: #fff;
	border-color: var(--rui-color-primary);
	background: var(--rui-color-primary);
	color: #fff;
}

.wf-section--contact-form .snow-monkey-form {
	padding: clamp(1.4rem, 3.5vw, 2.8rem);
	border-radius: var(--rui-radius);
}

.smf-progress-tracker {
	margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.smf-progress-tracker__item__number {
	border-color: var(--rui-color-primary);
	color: var(--rui-color-primary);
	font-family: var(--rui-font-en);
	font-weight: 800;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number {
	background: var(--rui-color-primary);
	color: #fff;
}

.wf-section--business-overview .wf-section__note {
	padding: 1rem 1.1rem;
	border-left: 2px solid var(--rui-color-primary);
	background: var(--rui-color-gray);
}

/* ----------------------------------------------------------
  CTA
---------------------------------------------------------- */
.luxury-cta,
.wf-section--cta {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(5, 72, 155, 0.32), rgba(5, 72, 155, 0) 48%),
		url("https://programmerchris.com/rui-ligare/wp-content/uploads/2026/06/Lgazo1.jpg") center / cover no-repeat,
		var(--rui-color-black);
	color: #fff;
}

.wf-section--cta .smb-section-with-bgimage__bgimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.wf-section--cta .smb-section-with-bgimage__bgimage::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 9, 13, 0.9), rgba(7, 9, 13, 0.76));
	content: "";
}

.wf-section--cta .smb-section__inner {
	position: relative;
	padding-top: clamp(4.5rem, 8vw, 7.5rem);
	padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.wf-section--cta .smb-section__title,
.wf-section--cta .smb-section__subtitle,
.wf-section--cta .smb-section__lede,
.wf-section--cta .smb-section__body,
.p-entry-content .wf-section--cta p {
	color: #fff;
}

.wf-section--cta .smb-section__subtitle {
	color: #dbe8f8;
}

.wf-section--cta .smb-section__title::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
}

.wf-section--cta .wf-button--secondary .smb-btn {
	border-color: rgba(255, 255, 255, 0.68);
	background: #fff;
	color: var(--rui-color-primary);
}

.wf-section--cta .wf-button--secondary .smb-btn:hover,
.wf-section--cta .wf-button--secondary .smb-btn:focus {
	border-color: var(--rui-color-primary);
	background: var(--rui-color-primary);
	color: #fff;
}

a.smb-btn[href*="line.me"],
.wp-block-button__link[href*="line.me"],
.luxury-button[href*="line.me"] {
	--smb-btn--background-color: #06c755;
	--smb-btn--color: #fff;
	border-color: #06c755;
	background: #06c755;
	color: #fff;
}

.wf-section--cta .wf-button--secondary a.smb-btn[href*="line.me"],
.wf-section--cta a.smb-btn[href*="line.me"] {
	--smb-btn--background-color: #06c755;
	--smb-btn--color: #fff;
	border-color: #06c755;
	background: #06c755;
	background-color: #06c755;
	color: #fff;
}

a.smb-btn[href*="line.me"]:hover,
a.smb-btn[href*="line.me"]:focus,
.wp-block-button__link[href*="line.me"]:hover,
.wp-block-button__link[href*="line.me"]:focus,
.luxury-button[href*="line.me"]:hover,
.luxury-button[href*="line.me"]:focus {
	border-color: #05ad49;
	background: #05ad49;
	color: #fff;
}

.wf-section--cta .wf-button--secondary a.smb-btn[href*="line.me"]:hover,
.wf-section--cta .wf-button--secondary a.smb-btn[href*="line.me"]:focus,
.wf-section--cta a.smb-btn[href*="line.me"]:hover,
.wf-section--cta a.smb-btn[href*="line.me"]:focus {
	--smb-btn--background-color: #06c755;
	--smb-btn--color: #fff;
	border-color: #06c755;
	background: #06c755;
	background-color: #06c755;
	color: #fff;
}

/* ----------------------------------------------------------
  Footer
---------------------------------------------------------- */
.l-footer {
	background: var(--rui-color-black);
	color: rgba(255, 255, 255, 0.82);
}

.l-footer-widget-area {
	padding-top: clamp(3.5rem, 7vw, 6rem);
	padding-bottom: clamp(2.8rem, 5vw, 4rem);
	background:
		linear-gradient(135deg, rgba(5, 72, 155, 0.16), rgba(5, 72, 155, 0) 38%),
		var(--rui-color-black);
	color: rgba(255, 255, 255, 0.82);
}

.footer-site-title {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	color: #fff;
	font-family: var(--rui-font-en);
	font-size: clamp(2.2rem, 6vw, 5.2rem);
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.footer-link-en {
	margin-bottom: 0.45rem;
	color: #dbe8f8;
	font-family: var(--rui-font-en);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.footer-link {
	margin-top: 0;
}

.footer-link a,
.l-footer a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.footer-link a:hover,
.footer-link a:focus,
.l-footer a:hover,
.l-footer a:focus {
	color: #fff;
}

.c-copyright {
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #020305;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--rui-font-en);
	font-size: 0.78rem;
	text-align: center;
}

.c-page-top a {
	border: 1px solid rgba(5, 72, 155, 0.28);
	background: #fff;
	color: var(--rui-color-primary);
}

.p-footer-sticky-nav {
	z-index: 9990;
	padding: 8px max(12px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
	border-top: 1px solid rgba(211, 211, 211, 0.72);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
}

.p-footer-sticky-nav .c-navbar {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
	max-width: 520px;
	margin-right: auto;
	margin-left: auto;
}

.p-footer-sticky-nav .c-navbar__item {
	min-width: 0;
}

.p-footer-sticky-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	border: 1px solid rgba(5, 72, 155, 0.18);
	border-radius: var(--rui-radius);
	background: #fff;
	color: var(--rui-color-primary);
	text-decoration: none;
	transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.p-footer-sticky-nav a:hover,
.p-footer-sticky-nav a:focus {
	border-color: var(--rui-color-primary);
	background: var(--rui-color-primary);
	color: #fff;
}

.p-footer-sticky-nav svg {
	display: block;
	width: 19px;
	height: 19px;
}

.p-footer-sticky-nav .menu-item-207 a {
	color: #06c755;
}

.p-footer-sticky-nav .menu-item-207 a:hover,
.p-footer-sticky-nav .menu-item-207 a:focus {
	border-color: #06c755;
	background: #06c755;
	color: #fff;
}

/* ----------------------------------------------------------
  Opening animation
---------------------------------------------------------- */
body.is-rui-opening {
	overflow: hidden;
}

.rui-opening-loader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: var(--rui-color-black);
	color: #fff;
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.rui-opening-loader__panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50.5%;
	background:
		linear-gradient(135deg, rgba(5, 72, 155, 0.24), rgba(5, 72, 155, 0) 46%),
		var(--rui-color-black);
	transition: transform 0.95s cubic-bezier(0.78, 0, 0.2, 1);
}

.rui-opening-loader__panel--left {
	left: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	transform: translateX(0);
}

.rui-opening-loader__panel--right {
	right: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	transform: translateX(0);
}

.rui-opening-loader__content {
	position: relative;
	z-index: 1;
	padding: 0 24px;
	text-align: center;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.rui-opening-loader__brand {
	margin: 0;
	color: #fff;
	font-family: var(--rui-font-en);
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.rui-opening-loader__copy {
	margin: 1rem 0 0;
	color: #fff;
	font-family: var(--rui-font-en);
	font-size: clamp(1.9rem, 5.5vw, 4.8rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.rui-opening-loader__copy::after {
	display: block;
	width: 84px;
	height: 1px;
	margin: 1.35rem auto 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
	content: "";
}

.rui-opening-loader.is-ready .rui-opening-loader__content {
	opacity: 1;
	transform: translateY(0);
}

.rui-opening-loader.is-open .rui-opening-loader__content {
	opacity: 0;
	transform: translateY(-12px);
	transition-duration: 0.35s;
}

.rui-opening-loader.is-open .rui-opening-loader__panel--left {
	transform: translateX(-101%);
}

.rui-opening-loader.is-open .rui-opening-loader__panel--right {
	transform: translateX(101%);
}

.rui-opening-loader.is-finished {
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	body.is-rui-opening {
		overflow: auto;
	}

	.rui-opening-loader {
		display: none;
	}
}

/* ----------------------------------------------------------
  Utility classes for blocks
---------------------------------------------------------- */
.section-luxury {
	background: #fff;
}

.section-gray {
	background: var(--rui-color-gray);
}

.section-dark {
	background-color: var(--rui-color-navy);
}

.image-100 img,
.luxury-image img {
	width: 100%;
	object-fit: cover;
}

.luxury-image img {
	aspect-ratio: 16 / 9;
	filter: saturate(0.95) contrast(1.04);
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

/* ----------------------------------------------------------
  Mobile
---------------------------------------------------------- */
@media (max-width: 1023px) {
	.l-1row-header__branding {
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.c-site-branding__title {
		font-size: 1rem;
	}

	.smb-section-side-heading__header {
		margin-bottom: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.smb-section-side-heading__header {
		min-width: 0;
		padding-right: clamp(2rem, 4vw, 4rem);
	}

	.smb-section-side-heading__body {
		min-width: 0;
	}
}

@media (max-width: 639px) {
	body {
		line-height: 1.85;
	}

	.c-drawer--highlight-type-background-color .c-drawer__item.sm-nav-menu-item-highlight {
    background-color: var(--accent-color);
	}

	.smb-section--fit,
	.section-luxury {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.smb-section__header {
		margin-bottom: 2.4rem;
	}

	.smb-section__subtitle {
		margin-bottom: 0.65rem;
		font-size: clamp(2.25rem, 10.8vw, 3.45rem);
		line-height: 1.02;
	}

	.smb-section-side-heading__subtitle {
		font-size: clamp(2rem, 8vw, 2.8rem);
		white-space: normal;
	}

	.smb-section__title {
		font-size: clamp(1rem, 4.6vw, 1.22rem);
		line-height: 1.72;
		padding-bottom: 1.05rem;
	}

	.fv-second .smb-section__inner {
		padding-top: 4.2rem;
		padding-bottom: 4rem;
	}

	.fv-second .smb-section__subtitle {
		font-size: clamp(2.5rem, 13vw, 4rem);
		line-height: 1;
		overflow-wrap: anywhere;
	}

	.fv-second .smb-section__lede {
		font-size: 0.9rem;
		line-height: 1.9;
	}

	.breadcrumbs-section {
		padding-top: 0.7rem;
		padding-bottom: 0.7rem;
	}

	.p-entry-content h3:not(.smb-items__item__title):not(.c-entry-summary__title),
	.p-entry-content h3.wp-block-heading {
		font-size: 1.04rem;
		line-height: 1.55;
	}

	.smb-items__item__title,
	.c-entries:not(.c-entries--text2) .c-entry-summary__title {
		font-size: 1rem;
	}

	.smb-section__lede,
	.wf-section__text {
		font-size: 0.94rem;
		line-height: 1.9;
	}

	.smb-section-with-bgimage.smb-section--full {
		min-height: 680px;
	}

	.smb-section-with-bgimage.smb-section--full .smb-section__inner {
		align-items: flex-end;
		padding-top: 5.25rem;
		padding-bottom: 4rem;
	}

	.smb-section-with-bgimage.smb-section--full .smb-section-with-bgimage__bgimage::after {
		background:
			linear-gradient(0deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.62) 58%, rgba(7, 9, 13, 0.22) 100%),
			linear-gradient(90deg, rgba(7, 9, 13, 0.45), rgba(7, 9, 13, 0.2));
	}

	.fv-title {
		margin-bottom: 1rem;
	}

	.fv-title .has-sm-xl-font-size {
		font-size: clamp(1.9rem, 9vw, 2.7rem);
	}

	.fv-title + p {
		font-size: 0.92rem;
		line-height: 1.9;
	}

	.smb-buttons,
	.wp-block-buttons {
		width: 100%;
	}

	.smb-btn-wrapper,
	.wp-block-button {
		width: 100%;
	}

	.wp-block-button__link,
	.smb-btn,
	.luxury-button,
	.p-entry-content a.wp-element-button,
	.p-entry-content .wp-block-read-more {
		width: 100%;
		min-height: 54px;
		padding-right: 1.4em;
		padding-left: 1.4em;
	}

	.wf-card .smb-items__item__body,
	.luxury-card {
		padding: 1.25rem;
	}

	.c-entries:not(.c-entries--text2) .c-entry-summary__body {
		padding: 1.25rem;
	}

	.wf-card--policy .smb-items__item__body,
	.wf-card--contact-method .smb-items__item__body,
	.wf-card--business-strength .smb-items__item__body,
	.wf-section--contact-form .snow-monkey-form {
		padding: 1.25rem;
	}

	.wf-faq .smb-faq__item__question,
	.wf-faq .smb-faq__item__answer {
		gap: 0.65rem;
	}

	.wf-faq .smb-faq__item__question__label,
	.wf-faq .smb-faq__item__answer__label {
		width: 1.75rem;
		height: 1.75rem;
	}

	.wf-table th,
	.wf-table td,
	.wp-block-table th,
	.wp-block-table td {
		display: block;
		width: 100%;
		padding: 0.95rem 0;
	}

	.wf-table th,
	.wp-block-table th {
		padding-bottom: 0.2rem;
		border-bottom: 0;
	}

	.footer-site-title {
		text-align: left;
	}

	.l-footer-widget-area .c-row[data-columns="2"] > .c-row__col {
		width: 100%;
	}

	.p-footer-sticky-nav a {
		min-height: 52px;
	}
}
