:root {
	--orefo-bg: #050505;
	--orefo-bg-soft: #0c0c0c;
	--orefo-surface: #171717;
	--orefo-surface-strong: #232323;
	--orefo-text: #e2e2e2;
	--orefo-muted: #999999;
	--orefo-line: rgba(255, 255, 255, 0.17);
	--orefo-gold: #cfff92;
	--orefo-teal: #006aff;
	--orefo-blue: #006aff;
	--orefo-lime: #cfff92;
	--orefo-radius: 8px;
	--orefo-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
	--orefo-container: 1080px;
	--orefo-font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--orefo-font-heading: "Golos Text", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 55% 0, rgba(0, 106, 255, 0.18), transparent 28rem),
		radial-gradient(circle at 85% 16%, rgba(207, 255, 146, 0.06), transparent 18rem),
		var(--orefo-bg);
	color: var(--orefo-text);
	font-family: var(--orefo-font-body);
	font-size: 16px;
	line-height: 1.7;
}

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

a:hover,
a:focus {
	color: var(--orefo-lime);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--orefo-text);
	font-family: var(--orefo-font-heading);
	font-weight: 700;
	line-height: 1.12;
}

p {
	margin: 0 0 1.2em;
	color: var(--orefo-muted);
}

.orefo-container {
	width: min(100% - 40px, var(--orefo-container));
	margin-inline: auto;
}

.screen-reader-text {
	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 {
	top: 12px;
	left: 12px;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--orefo-blue);
	color: #fff;
	border-radius: 4px;
}

.site-header {
	--orefo-header-motion: 0px;
	--orefo-header-height: var(--orefo-header-height-desktop, 75px);
	--orefo-header-scrolled-height: var(--orefo-header-scrolled-height-desktop, 66px);
	--orefo-logo-height: var(--orefo-logo-height-desktop, 46px);
	--orefo-logo-scrolled-height: var(--orefo-logo-scrolled-height-desktop, 38px);
	--orefo-header-top-background: transparent;
	--orefo-header-scrolled-background: rgba(35, 35, 35, 0.96);
	--orefo-header-mobile-menu-background: #232323;
	--e-transform-transition-duration: 100ms;
	position: relative;
	top: 0;
	z-index: 99;
	width: 100%;
	margin-bottom: calc(var(--orefo-header-height) * -1);
	margin-top: 0;
	background: transparent;
	background-color: transparent;
	border-top: 0;
	border-bottom: 0;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	transform: translate3d(0, var(--orefo-header-motion), 0);
	transition: margin-bottom 220ms ease, box-shadow 220ms ease, background-color 220ms ease, backdrop-filter 220ms ease, -webkit-backdrop-filter 220ms ease;
	will-change: transform;
}

.site-header--solid-top {
	background-color: var(--orefo-header-top-background);
}

.site-header--top-blur {
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.site-header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--orefo-lime), var(--orefo-blue));
	pointer-events: none;
}

.site-header--no-gradient::before {
	display: none;
}

.site-header.is-scrolled {
	--orefo-header-height: var(--orefo-header-scrolled-height);
	--orefo-logo-height: var(--orefo-logo-scrolled-height);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	background-color: var(--orefo-header-scrolled-background);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.site-header--scrolled-blur.is-scrolled {
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.site-header--static {
	position: relative;
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: min(100% - 40px, var(--orefo-container));
	min-height: var(--orefo-header-height);
	margin-inline: auto;
	transition: min-height 220ms ease;
}

.site-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 20%;
	max-width: 20%;
}

.custom-logo-link,
.site-logo {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	line-height: 0;
}

.custom-logo-link img,
.site-logo img {
	width: auto;
	height: var(--orefo-logo-height);
	max-width: none;
	max-height: var(--orefo-logo-height);
	object-fit: contain;
	transition: height 220ms ease, max-height 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.custom-logo-link:hover img,
.site-logo:hover img {
	opacity: 0.92;
	transform: translateY(-1px);
}

.site-title {
	font-family: var(--orefo-font-heading);
	font-size: 1.25rem;
	font-weight: 800;
}

.site-header__menu-area {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 18px;
	flex: 0 0 80%;
	max-width: 80%;
	min-width: 0;
	padding-inline-end: 10px;
}

.site-header--no-menu .site-header__menu-area {
	flex: 1 1 auto;
	max-width: none;
}

.site-header__nav {
	display: flex;
	justify-content: flex-end;
	flex: 0 1 auto;
	min-width: 0;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 35px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	display: block;
	color: var(--orefo-text);
	font-family: var(--orefo-font-heading);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	transition: color 180ms ease, transform 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus {
	color: var(--orefo-blue);
	transform: translateY(-1px);
}

.primary-menu .menu-item-has-children > a {
	padding-right: 14px;
}

.primary-menu .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 5px;
	height: 5px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	transition: transform 180ms ease, border-color 180ms ease;
}

.primary-menu .menu-item-has-children > a:hover::after,
.primary-menu .menu-item-has-children > a:focus::after {
	transform: translateY(-45%) rotate(45deg);
}

.site-header__action {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-header__button,
.button,
.front-hero .site-header__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid rgba(0, 106, 255, 0.8);
	border-radius: 5px;
	background: var(--orefo-blue);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
	box-shadow: 0 12px 28px rgba(0, 106, 255, 0.32);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-header__button {
	min-height: 36px;
	padding: 0 17px;
	font-family: var(--orefo-font-heading);
	font-size: 0.86rem;
	box-shadow: none;
}

.site-header__button::before {
	content: "";
	width: 12px;
	height: 12px;
	margin-right: 9px;
	background: currentColor;
	clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
	opacity: 0.9;
}

.site-header--no-cta-icon .site-header__button::before {
	display: none;
}

.site-header__button:hover,
.button:hover,
.front-hero .site-header__button:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 106, 255, 0.42);
}

.site-header__button:hover {
	box-shadow: 0 8px 18px rgba(0, 106, 255, 0.28);
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 1px solid var(--orefo-line);
	border-radius: 6px;
	background: var(--orefo-surface);
	color: var(--orefo-text);
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-header__toggle span[aria-hidden="true"] {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: opacity 180ms ease, transform 180ms ease;
	transform-origin: center;
}

.site-header.is-open .site-header__toggle span[aria-hidden="true"]:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle span[aria-hidden="true"]:nth-of-type(3) {
	opacity: 0;
}

.site-header.is-open .site-header__toggle span[aria-hidden="true"]:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--orefo-lime);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.front-hero,
.page-hero,
.archive-header,
.single-hero,
.not-found {
	position: relative;
	padding: 96px 0;
	overflow: hidden;
}

.front-hero::after,
.page-hero::after,
.archive-header::after,
.single-hero::after,
.not-found::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--orefo-teal), var(--orefo-gold), transparent);
	opacity: 0.6;
}

.front-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
	align-items: center;
	gap: 60px;
}

.front-hero h1,
.page-hero h1,
.archive-header h1,
.single-hero h1,
.not-found h1 {
	max-width: 840px;
	font-size: clamp(2.35rem, 6vw, 5.5rem);
	letter-spacing: 0;
}

.front-hero p:not(.eyebrow) {
	max-width: 640px;
	font-size: 1.08rem;
}

.front-hero__mark {
	display: grid;
	place-items: center;
	min-height: 360px;
	border: 1px solid var(--orefo-line);
	border-radius: var(--orefo-radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
		var(--orefo-surface);
	box-shadow: var(--orefo-shadow);
}

.front-hero__mark img {
	width: min(75%, 360px);
	filter: drop-shadow(0 22px 55px rgba(0, 106, 255, 0.24));
}

.front-content,
.page-content,
.content-grid,
.single-content,
.comments-area {
	padding: 64px 0;
}

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

.content-card,
.widget,
.no-results,
.entry-content,
.comment-respond,
.comment-list .comment-body {
	border: 1px solid var(--orefo-line);
	border-radius: var(--orefo-radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	box-shadow: var(--orefo-shadow);
}

.content-card {
	overflow: hidden;
}

.content-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--orefo-surface-strong);
}

.content-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-card__body {
	padding: 24px;
}

.content-card__title {
	font-size: 1.15rem;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--orefo-muted);
	font-size: 0.85rem;
}

.entry-content {
	padding: 34px;
}

.entry-content a,
.single-content__main a {
	color: var(--orefo-blue);
	text-decoration: underline;
}

.single-hero {
	padding-bottom: 0;
}

.single-hero__image {
	width: min(100% - 40px, var(--orefo-container));
	max-height: 520px;
	margin: 42px auto 0;
	overflow: hidden;
	border: 1px solid var(--orefo-line);
	border-radius: var(--orefo-radius);
}

.single-hero__image img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
}

.single-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 36px;
}

.single-content__main,
.single-content__sidebar {
	min-width: 0;
}

.single-content__main {
	font-size: 1.03rem;
}

.widget {
	padding: 24px;
	margin-bottom: 20px;
}

.comments-area {
	border-top: 1px solid var(--orefo-line);
}

.comment-list {
	padding: 0;
	margin: 0 0 34px;
	list-style: none;
}

.comment-list .comment-body,
.comment-respond {
	padding: 24px;
	margin-bottom: 20px;
}

input,
textarea,
select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--orefo-line);
	border-radius: 5px;
	background: var(--orefo-surface);
	color: var(--orefo-text);
	font: inherit;
}

button,
input[type="submit"] {
	width: auto;
	cursor: pointer;
}

.site-footer {
	padding: 0;
	border-top: 0;
	background: #050505;
	overflow: hidden;
}

.site-footer--bg-plain {
	background: #070707;
}

.site-footer--bg-glass {
	background:
		radial-gradient(circle at 18% 20%, rgba(0, 106, 255, 0.12), transparent 34%),
		radial-gradient(circle at 82% 78%, rgba(207, 255, 146, 0.08), transparent 30%),
		#050505;
}

.site-footer__inner {
	position: relative;
	width: min(100% - 70px, 1512px);
	margin-inline: auto;
	padding: 3px;
	border-radius: 23px;
	background: linear-gradient(180deg, var(--orefo-blue) 0%, #0c0c0c 70%);
	transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}

.site-footer.is-observed .site-footer__inner {
	opacity: 0;
	transform: translateY(34px);
}

.site-footer__content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 250px;
	padding: 3em;
	overflow: hidden;
	border-radius: 20px;
	background-color: #232323;
	background-image: url("https://demokit.creativemox.com/zentiv/wp-content/uploads/sites/18/2025/06/Grid.png");
	background-position: top right;
	background-repeat: no-repeat;
}

.site-footer__content::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: radial-gradient(at top center, rgba(0, 106, 255, 0.6) 0%, rgba(12, 12, 12, 0.96) 50%);
	opacity: 0.4;
	pointer-events: none;
}

.site-footer__glow {
	position: absolute;
	inset-block-start: -18px;
	inset-inline-end: 20px;
	z-index: 1;
	width: min(500px, 55%);
	height: 60px;
	background: radial-gradient(at center center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 30%);
	pointer-events: none;
}

.site-footer--no-glow .site-footer__glow {
	display: none;
}

.site-footer.is-visible .site-footer__inner {
	opacity: 1;
	transform: translateY(0);
	filter: drop-shadow(0 0 28px rgba(0, 106, 255, 0.18));
}

.site-footer__brand,
.site-footer__columns {
	position: relative;
	z-index: 1;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 40%;
	min-height: 180px;
	padding: 1em 1em 1em 0;
	transition: opacity 460ms ease 120ms, transform 460ms ease 120ms;
}

.site-footer--no-columns .site-footer__brand {
	width: 100%;
	padding-inline-end: 1em;
}

.site-footer.is-observed .site-footer__brand {
	opacity: 0;
	transform: translateY(18px);
}

.site-footer.is-visible .site-footer__brand {
	opacity: 1;
	transform: translateY(0);
}

.site-footer__brand p {
	display: none;
	max-width: 360px;
	margin-top: 18px;
}

.site-footer .custom-logo-link img,
.site-footer .site-logo img {
	width: auto;
	height: 42px;
	max-height: 42px;
	object-fit: contain;
	object-position: center center;
}

.site-footer__social,
.site-footer__legal,
.site-footer__column ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__social {
	display: flex;
	gap: 5px;
	margin-top: auto;
}

.site-footer__social a {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: var(--orefo-lime);
	color: #0c0c0c;
	transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-footer__social svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
	animation: orefo-footer-float 700ms ease both;
	background: var(--orefo-blue);
	color: #fff;
	box-shadow: 0 10px 24px rgba(0, 106, 255, 0.26);
}

.site-footer__columns {
	display: flex;
	flex-wrap: wrap;
	width: 60%;
	padding: 0;
	justify-content: flex-start;
}

.site-footer__column {
	width: calc(100% / var(--orefo-footer-active-columns, 3));
	padding: 1em;
	transition: opacity 420ms ease, transform 420ms ease;
}

.site-footer--columns-1 .site-footer__columns {
	justify-content: center;
}

.site-footer--columns-1 .site-footer__column {
	width: min(100%, 360px);
}

.site-footer--columns-2 .site-footer__column {
	width: 50%;
}

.site-footer--no-animation .site-footer__inner,
.site-footer--no-animation .site-footer__brand,
.site-footer--no-animation .site-footer__column,
.site-footer--no-animation .site-footer__meta {
	opacity: 1;
	transform: none;
	transition: none;
}

.site-footer--no-animation .site-footer__social a:hover,
.site-footer--no-animation .site-footer__social a:focus {
	animation: none;
}

.site-footer__column:last-child {
	padding-inline-end: 0;
}

.site-footer.is-observed .site-footer__column {
	opacity: 0;
	transform: translateY(18px);
}

.site-footer.is-visible .site-footer__column {
	opacity: 1;
	transform: translateY(0);
}

.site-footer.is-visible .site-footer__column:nth-child(1) {
	transition-delay: 180ms;
}

.site-footer.is-visible .site-footer__column:nth-child(2) {
	transition-delay: 260ms;
}

.site-footer.is-visible .site-footer__column:nth-child(3) {
	transition-delay: 340ms;
}

.site-footer__column h2 {
	margin-bottom: 16px;
	color: var(--orefo-lime);
	font-family: var(--orefo-font-heading);
	font-size: 1.05rem;
	font-weight: 500;
}

.site-footer__column li + li {
	margin-top: 7px;
}

.site-footer__column a,
.site-footer__legal a {
	color: #b9b9b9;
	font-size: 0.86rem;
	line-height: 1.5;
	transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column a {
	display: inline-block;
}

.site-footer__column a:hover,
.site-footer__column a:focus,
.site-footer__legal a:hover,
.site-footer__legal a:focus {
	color: var(--orefo-lime);
	transform: translateX(3px);
}

[dir="rtl"] .site-footer__column a:hover,
[dir="rtl"] .site-footer__column a:focus,
[dir="rtl"] .site-footer__legal a:hover,
[dir="rtl"] .site-footer__legal a:focus,
body.rtl .site-footer__column a:hover,
body.rtl .site-footer__column a:focus,
body.rtl .site-footer__legal a:hover,
body.rtl .site-footer__legal a:focus {
	transform: translateX(-3px);
}

.site-footer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	width: min(100% - 70px, 1512px);
	margin-inline: auto;
	padding: 2em 1em;
	border-top: 0;
	transition: opacity 420ms ease 420ms, transform 420ms ease 420ms;
}

.site-footer.is-observed .site-footer__meta {
	opacity: 0;
	transform: translateY(14px);
}

.site-footer.is-visible .site-footer__meta {
	opacity: 1;
	transform: translateY(0);
}

.site-footer__meta p {
	margin: 0;
	color: #777;
	font-size: 0.75rem;
}

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

.site-footer__legal a {
	font-size: 0.75rem;
}

.orefo-scroll-top {
	--orefo-scroll-progress: 0deg;
	position: fixed;
	inset-inline-end: clamp(16px, 2.5vw, 34px);
	bottom: clamp(16px, 3vw, 34px);
	z-index: 98;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 999px;
	background:
		conic-gradient(var(--orefo-lime) var(--orefo-scroll-progress), rgba(255, 255, 255, 0.15) 0deg),
		rgba(12, 12, 12, 0.78);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(0, 106, 255, 0.16);
	color: var(--orefo-lime);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 14px, 0) scale(0.88);
	transition: opacity 260ms ease, transform 260ms ease, box-shadow 220ms ease;
}

.orefo-scroll-top::before {
	content: "";
	position: absolute;
	inset: 4px;
	z-index: 0;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: inherit;
	background: rgba(12, 12, 12, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.orefo-scroll-top__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
}

.orefo-scroll-top svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.orefo-scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
}

.orefo-scroll-top.is-returning {
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, -12px, 0) scale(0.76);
}

.orefo-scroll-top:hover,
.orefo-scroll-top:focus-visible {
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4), 0 0 34px rgba(207, 255, 146, 0.2);
	transform: translate3d(0, -3px, 0) scale(1.03);
}

.orefo-scroll-top:focus-visible {
	outline: 2px solid var(--orefo-lime);
	outline-offset: 4px;
}

.orefo-whatsapp-float {
	position: fixed;
	inset-inline-start: clamp(16px, 2.5vw, 34px);
	bottom: clamp(16px, 3vw, 34px);
	z-index: 98;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	max-width: min(260px, calc(100vw - 110px));
	padding: 8px 16px 8px 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background:
		radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
		linear-gradient(135deg, rgba(37, 211, 102, 0.98), rgba(18, 140, 126, 0.96)),
		#25d366;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(37, 211, 102, 0.12), 0 0 34px rgba(37, 211, 102, 0.24);
	color: #fff;
	text-decoration: none;
	transform: translate3d(0, 0, 0);
	transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

[dir="rtl"] .orefo-whatsapp-float,
body.rtl .orefo-whatsapp-float {
	padding: 8px 8px 8px 16px;
}

.orefo-whatsapp-float::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: inherit;
	pointer-events: none;
}

.orefo-whatsapp-float::after {
	content: "";
	position: absolute;
	inset: -5px;
	z-index: -1;
	border: 1px solid rgba(37, 211, 102, 0.42);
	border-radius: inherit;
	opacity: 0;
	transform: scale(0.92);
	animation: orefo-whatsapp-pulse 3.6s ease-out infinite;
	pointer-events: none;
}

.orefo-whatsapp-float__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 999px;
	background: rgba(7, 7, 7, 0.18);
	box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16), 0 8px 18px rgba(0, 0, 0, 0.12);
	animation: orefo-whatsapp-ring 1.85s ease-in-out infinite;
	transform-origin: 50% 54%;
}

.orefo-whatsapp-float__icon svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.orefo-whatsapp-float__text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.1;
}

.orefo-whatsapp-float__text strong {
	font-size: 0.9rem;
	font-weight: 800;
	white-space: nowrap;
}

.orefo-whatsapp-float__text span {
	margin-top: 3px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0;
	opacity: 0.78;
}

.orefo-whatsapp-float:hover,
.orefo-whatsapp-float:focus-visible {
	color: #fff;
	filter: saturate(1.1) brightness(1.02);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(37, 211, 102, 0.18), 0 0 44px rgba(37, 211, 102, 0.34);
	transform: translate3d(0, -4px, 0);
}

.orefo-whatsapp-float:hover .orefo-whatsapp-float__icon,
.orefo-whatsapp-float:focus-visible .orefo-whatsapp-float__icon {
	animation-duration: 1.35s;
}

.orefo-whatsapp-float:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

@keyframes orefo-whatsapp-ring {
	0% { transform: rotate(0deg) scale(1); }
	12% { transform: rotate(-9deg) scale(1.04); }
	24% { transform: rotate(8deg) scale(1.05); }
	36% { transform: rotate(-6deg) scale(1.03); }
	48% { transform: rotate(4deg) scale(1.02); }
	60% { transform: rotate(0deg) scale(1); }
	100% { transform: rotate(0deg) scale(1); }
}

@keyframes orefo-whatsapp-pulse {
	0%,
	52% {
		opacity: 0;
		transform: scale(0.92);
	}

	68% {
		opacity: 0.58;
	}

	100% {
		opacity: 0;
		transform: scale(1.18);
	}
}

@keyframes orefo-footer-float {
	0% {
		transform: translateY(0);
	}

	45% {
		transform: translateY(-8px);
	}

	100% {
		transform: translateY(-4px);
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.site-footer__content {
		padding: 3em 2em 2em;
	}

	.site-footer__brand {
		width: 30%;
	}

	.site-footer__columns {
		width: 70%;
	}

	.site-footer__column:nth-child(1),
	.site-footer__column:nth-child(2),
	.site-footer__column:nth-child(3) {
		width: calc(100% / var(--orefo-footer-active-columns, 3));
	}
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	grid-column: 1 / -1;
	margin-top: 12px;
}

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

.page-numbers.current {
	background: var(--orefo-blue);
	color: #fff;
}

@media (max-width: 1024px) {
	.site-header {
		--orefo-header-height: var(--orefo-header-height-tablet, 66px);
		--orefo-header-scrolled-height: var(--orefo-header-scrolled-height-tablet, 58px);
		--orefo-logo-height: var(--orefo-logo-height-tablet, 38px);
		--orefo-logo-scrolled-height: var(--orefo-logo-scrolled-height-tablet, 32px);
	}

	.site-header.is-open {
		background-color: rgba(35, 35, 35, 0.96);
		box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
	}

	.site-header__inner {
		flex-wrap: nowrap;
		gap: 0;
		padding: 0;
	}

	.site-header__brand {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.site-header__toggle {
		display: inline-flex;
		margin-inline-start: auto;
	}

	.site-header__menu-area {
		justify-content: flex-end;
		flex-wrap: nowrap;
		gap: 0;
		flex: 0 0 75%;
		max-width: 75%;
		padding-inline-end: 0;
	}

	.site-header__nav {
		position: absolute;
		inset-block-start: calc(100% + 8px);
		inset-inline: 0;
		z-index: 100;
		display: block;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0);
		border-radius: 10px;
		background: var(--orefo-header-mobile-menu-background);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0);
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transform: translateY(-8px);
		transition: max-height 280ms ease, padding 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
	}

	.site-header__action {
		display: none;
		width: 100%;
	}

	.site-header.is-open .site-header__nav {
		max-height: calc(100vh - 90px);
		overflow-y: auto;
		padding: 10px;
		border-color: rgba(255, 255, 255, 0.14);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-menu {
		display: grid;
		align-items: stretch;
		gap: 0;
		padding: 0;
	}

	.primary-menu a {
		padding: 11px 13px;
		border-radius: 8px;
		line-height: 1.35;
		transform: none;
	}

	.primary-menu a:hover,
	.primary-menu a:focus {
		background: var(--orefo-blue);
		color: #fff;
		transform: none;
	}

	.primary-menu .menu-item-has-children > a {
		padding-inline-end: 28px;
	}

	.primary-menu .menu-item-has-children > a::after {
		inset-inline-end: 13px;
		right: auto;
	}

	.site-header__button {
		width: 100%;
	}

	.front-hero__inner,
	.single-content,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding-top: 0;
	}

	.site-footer__inner {
		padding: 3px;
	}

	.site-footer__content {
		padding: 3em 2em 2em;
	}

	.site-footer__brand {
		width: 30%;
		min-height: 150px;
		padding: 1em 1em 1em 0;
	}

	.front-hero__mark {
		min-height: 260px;
	}

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

	.site-footer__columns {
		width: 70%;
		gap: 0;
		padding: 0;
	}

	.site-footer__column {
		width: calc(100% / var(--orefo-footer-active-columns, 3));
	}

	.site-footer__column:nth-child(1),
	.site-footer__column:nth-child(2),
	.site-footer__column:nth-child(3) {
		width: calc(100% / var(--orefo-footer-active-columns, 3));
	}

	.site-footer__meta {
		width: min(100% - 70px, 1512px);
		align-items: center;
		flex-direction: row;
		padding: 2em 1em;
	}
}

@media (max-width: 767px) {
	.site-footer__inner {
		width: min(100% - 28px, var(--orefo-container));
		padding: 3px;
		border-radius: 23px;
		text-align: center;
	}

	.site-footer__content {
		padding: 21px;
	}

	.site-footer__glow {
		inset-inline-end: 50%;
		width: 75%;
		transform: translateX(50%);
	}

	[dir="rtl"] .site-footer__glow,
	body.rtl .site-footer__glow {
		transform: translateX(-50%);
	}

	.site-footer__brand {
		align-items: center;
		width: 100%;
		min-height: 110px;
		padding: 1em 0;
	}

	.site-footer .custom-logo-link img,
	.site-footer .site-logo img {
		height: 35px;
		max-height: 35px;
	}

	.site-footer__social {
		justify-content: center;
	}

	.site-footer__social a {
		width: 32px;
		height: 32px;
	}

	.site-footer__social svg {
		width: 14px;
		height: 14px;
	}

	.site-footer__columns {
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.site-footer__column,
	.site-footer__column:nth-child(1) {
		width: 100%;
		padding: 1em 0;
	}

	.site-footer__column:nth-child(2),
	.site-footer__column:nth-child(3) {
		width: 100%;
		padding: 1em 0;
	}

	.site-footer__column:last-child {
		padding-inline-end: 0.5em;
	}

	.site-footer__meta {
		width: min(100% - 28px, var(--orefo-container));
		align-items: center;
		flex-direction: column;
		gap: 10px;
		padding: 2em 1em;
		text-align: center;
	}

	.site-footer__legal {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.site-header {
		--orefo-header-height: var(--orefo-header-height-mobile, 62px);
		--orefo-header-scrolled-height: var(--orefo-header-scrolled-height-mobile, 54px);
		--orefo-logo-height: var(--orefo-logo-height-mobile, 34px);
		--orefo-logo-scrolled-height: var(--orefo-logo-scrolled-height-mobile, 29px);
	}

	.site-header__inner {
		min-height: var(--orefo-header-height);
	}

	.site-header__brand {
		flex: 0 0 80%;
		max-width: 80%;
	}

	.site-header__menu-area {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.orefo-container,
	.site-header__inner,
	.site-footer__inner,
	.single-hero__image {
		width: min(100% - 28px, var(--orefo-container));
	}

	.site-footer {
		padding-top: 0;
	}

	.site-footer__inner {
		padding: 3px;
		border-radius: 23px;
		text-align: center;
	}

	.site-footer__content {
		padding: 21px;
	}

	.site-footer__glow {
		inset-inline-end: 50%;
		width: 75%;
		transform: translateX(50%);
	}

	[dir="rtl"] .site-footer__glow,
	body.rtl .site-footer__glow {
		transform: translateX(-50%);
	}

	.site-footer__brand {
		align-items: center;
		width: 100%;
		min-height: 110px;
		padding: 1em 0;
	}

	.site-footer .custom-logo-link img,
	.site-footer .site-logo img {
		height: 35px;
		max-height: 35px;
	}

	.site-footer__social {
		justify-content: center;
	}

	.site-footer__social a {
		width: 32px;
		height: 32px;
	}

	.site-footer__social svg {
		width: 14px;
		height: 14px;
	}

	.site-footer__columns {
		width: 100%;
		text-align: center;
	}

	.site-footer__column {
		width: 100%;
		padding: 1em 0;
	}

	.site-footer__column:nth-child(2),
	.site-footer__column:nth-child(3) {
		width: 100%;
		padding-inline: 0;
	}

	.site-footer__meta {
		width: min(100% - 28px, var(--orefo-container));
		align-items: center;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.site-footer__legal {
		justify-content: center;
	}

	.orefo-scroll-top {
		inset-inline-end: 14px;
		bottom: 14px;
		width: 46px;
		height: 46px;
	}

	.orefo-scroll-top__icon {
		width: 22px;
		height: 22px;
	}

	.orefo-whatsapp-float {
		min-height: 48px;
		max-width: 48px;
		padding: 3px;
		border-radius: 999px;
	}

	[dir="rtl"] .orefo-whatsapp-float,
	body.rtl .orefo-whatsapp-float {
		padding: 3px;
	}

	.orefo-whatsapp-float__icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.orefo-whatsapp-float__text {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		white-space: nowrap;
	}

	.front-hero,
	.page-hero,
	.archive-header,
	.single-hero,
	.not-found {
		padding: 70px 0;
	}

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

	.entry-content,
	.comment-respond,
	.comment-list .comment-body {
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header,
	.custom-logo-link img,
	.site-logo img,
	.primary-menu a,
	.primary-menu .menu-item-has-children > a::after,
	.site-header__button,
	.button,
	.site-header__toggle,
	.site-header__toggle span[aria-hidden="true"],
	.site-header__nav,
	.site-footer__inner,
	.site-footer__brand,
	.site-footer__column,
	.site-footer__meta,
	.site-footer__social a,
	.site-footer__column a,
	.site-footer__legal a,
	.orefo-scroll-top,
	.orefo-whatsapp-float {
		transition: none;
	}

	.site-header,
	.primary-menu a,
	.site-header__button,
	.button,
	.custom-logo-link:hover img,
	.site-logo:hover img,
	.site-footer__inner,
	.site-footer__brand,
	.site-footer__column,
	.site-footer__meta,
	.site-footer__social a:hover,
	.site-footer__column a:hover,
	.site-footer__legal a:hover,
	.orefo-scroll-top,
	.orefo-scroll-top:hover,
	.orefo-whatsapp-float,
	.orefo-whatsapp-float:hover {
		transform: none;
	}

	.orefo-whatsapp-float::after,
	.orefo-whatsapp-float__icon {
		animation: none;
	}
}
