/* ==========================================================================
	 Fonts
	 ========================================================================== */

/* Thin 100 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 100;
	src: url('../fonts/gazpacho-thin.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 100;
	src: url('../fonts/gazpacho-italic-thin.woff2') format('woff2');
}

/* Light 300 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/gazpacho-light.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/gazpacho-italic-light.woff2') format('woff2');
}

/* Regular 400 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/gazpacho-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/gazpacho-italic-regular.woff2') format('woff2');
}

/* Medium 500 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/gazpacho-medium.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 500;
	src: url('../fonts/gazpacho-italic-medium.woff2') format('woff2');
}

/* Bold 700 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/gazpacho-bold.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/gazpacho-italic-bold.woff2') format('woff2');
}

/* Black 900 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/gazpacho-black.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 900;
	src: url('../fonts/gazpacho-italic-black.woff2') format('woff2');
}

/* Heavy 950 */
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: normal;
	font-weight: 950;
	src: url('../fonts/gazpacho-heavy.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Gazpacho';
	font-style: italic;
	font-weight: 950;
	src: url('../fonts/gazpacho-italic-heavy.woff2') format('woff2');
}

/* ==========================================================================
	 CSS Custom Properties (Design Tokens)
	 ========================================================================== */
:root {
	--font-gazpacho: 'Gazpacho', ui-sans-serif, system-ui, sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
		'Noto Color Emoji', serif;

	--default-font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

	/* Colors */
	--color-background: #ffffff;
	--color-graphite: #252525;
	--color-energy-yellow: #EAFF6E;
	--color-quality-green: #2E393A;
	--color-quality-light: #5F8C8C;
	--color-primary: #EAFF6E;
	--color-secondary: #2E393A;
	--color-text: #252525;
	--color-text-inverted: #ffffff;
}

/* ==========================================================================
	 Reset / Base
	 ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
	color: var(--color-text);
	background-color: var(--color-background);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

/* ==========================================================================
	 Utilities
	 ========================================================================== */

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/* No underline utility */
.no-underline {
	text-decoration: none !important;
}

/* Line clamp */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ==========================================================================
	 Layout
	 ========================================================================== */
.container-xl {
	width: 100%;
	max-width: 1536px; /* max-w-screen-2xl */
	margin-left: auto;
	margin-right: auto;
}

.container-7xl {
	width: 100%;
	max-width: 1280px; /* max-w-7xl */
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
	 Header
	 ========================================================================== */
.site-header {
	position: fixed;
	top: var(--wp-admin--admin-bar--height, 0px);
	left: 0;
	right: 0;
	padding: 0 1.5rem;
	color: #fff;
	background-color: transparent;
	z-index: 900;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header[data-hidden="true"] {
	transform: translateY(-100%);
}

.site-header[data-solid="true"] {
	color: var(--color-text);
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #e5e5e5;
}

.site-header__inner {
	max-width: 1536px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem 0;
	transition: padding 0.3s ease;
}

.site-header[data-solid="true"] .site-header__inner {
	padding: 0.75rem 0;
}

.site-header__nav-wrap {
	flex: 1;
}

.site-header__actions {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2rem;
}

/* Logo link */
.logo-link {
	color: var(--color-text-inverted);
	text-decoration: none;
	transition: color 0.3s;
}
.logo-link:hover {
	color: var(--color-energy-yellow);
}
.site-header[data-solid="true"] .logo-link {
	color: var(--color-text);
}
.site-header[data-solid="true"] .logo-link:hover {
	color: var(--color-quality-green);
}

.logo-link svg {
	flex-shrink: 0;
	width: 5.5rem;  /* size-22 */
	height: 5.5rem;
	transition: all 0.3s ease;
}
.site-header[data-solid="true"] .logo-link svg {
	width: 4rem;   /* size-16 */
	height: 4rem;
}

/* ==========================================================================
	 Primary Navigation
	 ========================================================================== */
.nav {
	display: flex;
	gap: 3.75rem; /* gap-15 */
	list-style: none;
	font-family: var(--font-gazpacho);
	padding: 0;
	margin: 0;
}

.nav > li.menu-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	transition: color 0.2s;
}

.nav > li.menu-item > a,
.nav > li.menu-item > .dropdown-toggle,
.header-columns__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 22px;
	font-family: var(--font-gazpacho);
	color: var(--color-text-inverted);
	line-height: 120%;
	text-decoration: none;
	transition: color 0.2s;
}
.nav > li.menu-item > a:hover,
.nav > li.menu-item > .dropdown-toggle:hover,
.header-columns__link:hover {
	color: var(--color-energy-yellow);
}
.site-header[data-solid="true"] .nav > li.menu-item > a,
.site-header[data-solid="true"] .nav > li.menu-item > .dropdown-toggle,
.site-header[data-solid="true"] .header-columns__link {
	color: var(--color-text);
	font-weight: 500;
}
.site-header[data-solid="true"] .nav > li.menu-item > a:hover,
.site-header[data-solid="true"] .nav > li.menu-item > .dropdown-toggle:hover,
.site-header[data-solid="true"] .header-columns__link:hover {
	color: var(--color-quality-green);
}

/* Header WhatsApp icon */
.header-whatsapp {
	display: inline-flex;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.375rem;
	color: var(--color-text-inverted);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}
.header-whatsapp:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-energy-yellow);
}
.site-header[data-solid="true"] .header-whatsapp {
	color: var(--color-text);
}
.site-header[data-solid="true"] .header-whatsapp:hover {
	background-color: rgba(0, 0, 0, 0.05);
	color: var(--color-quality-green);
}

/* Header WhatsApp icon */
.header-whatsapp {
	display: inline-flex;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.375rem;
	color: var(--color-text-inverted);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}
.header-whatsapp:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-energy-yellow);
}
.site-header[data-solid="true"] .header-whatsapp {
	color: var(--color-text);
}
.site-header[data-solid="true"] .header-whatsapp:hover {
	background-color: rgba(0, 0, 0, 0.05);
	color: var(--color-quality-green);
}

/* ==========================================================================
   Burger Button
   ========================================================================== */
.nav-menu-btn__responsive {
	display: none; /* shown only in tablet/mobile via media query */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 3rem;
	height: 3rem;
	padding: 0.375rem;
	margin-left: auto;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text-inverted);
	border-radius: 0.5rem;
	transition: color 0.3s, background-color 0.3s;
	flex-shrink: 0;
	z-index: 1000;
}
.nav-menu-btn__responsive:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.site-header[data-solid="true"] .nav-menu-btn__responsive {
	color: var(--color-text);
}
.site-header[data-solid="true"] .nav-menu-btn__responsive:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
.burger__bar {
	display: block;
	width: 1.375rem;
	height: 2px;
	background-color: currentColor;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
	transform-origin: center;
}

/* ==========================================================================
   Mobile Menu Drawer
   ========================================================================== */
.mobile-menu {
	display: none; /* block only on tablet/mobile */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 800;
	background-color: var(--color-quality-green);
	color: var(--color-text-inverted);
	overflow-y: auto;
	/* slide-in animation */
	transform: translateX(-100%);
	transition: transform 0.35s ease;
}
.mobile-menu[data-open="true"] {
	transform: translateX(0);
}
.mobile-menu__inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	min-height: 100%;
	padding: 3rem 1rem 3rem;
}

/* Mobile nav — reuse .nav but stack vertically */
.mobile-menu__nav .mobile-nav, .mobile-menu__nav .mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}
.mobile-menu__nav .mobile-nav li.menu-item > a,
.mobile-menu__nav .mobile-nav li.menu-item > .dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 40rem;
	margin: 0 auto;
	width: 100%;
	padding: 1rem;
	font-size: 1.5rem;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	color: var(--color-text-inverted);
	text-decoration: none;
	transition: color 0.2s;
}
.mobile-menu__nav .mobile-nav li.menu-item > a:hover,
.mobile-menu__nav .mobile-nav li.menu-item > .dropdown-toggle:hover {
	color: var(--color-energy-yellow);
}
/* Dropdown toggle inside mobile nav */
.mobile-menu__nav .dropdown-toggle svg {
	width: 1rem;
	height: 1rem;
}
/* Mobile sub-menu — visibility controlled by jQuery (.slideDown / .slideUp) */
.mobile-menu__nav ul.dropdown {
	position: static;
	flex-direction: column;
	box-shadow: none;
	border: none;
	width: 100%;
	max-width: 40rem;
	margin: 0 auto;
	padding: 0.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	overflow: hidden;
}
.mobile-menu__nav .dropdown li.menu-item a {
	padding: 0.625rem 0;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.75);
	background: none;
}
.mobile-menu__nav .dropdown li.menu-item a:hover {
	color: var(--color-energy-yellow);
	background: none;
}
.mobile-menu__inner hr {
	width: 8rem;
	height: 2px;
	margin: 0 auto 1.5rem;
	background-color: var(--color-primary);
	border: 0;
	opacity: 0.5;
}

/* Mobile actions strip */
.mobile-menu__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2.5rem;
	padding-top: 1rem;
}
.mobile-menu__phone {
	font-size: 1.5rem !important;
	color: var(--color-text-inverted) !important;
}
.mobile-menu__phone:hover {
	color: var(--color-energy-yellow) !important;
}
.mobile-menu__whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
	color: var(--color-text-inverted);
	text-decoration: none;
	font-family: var(--font-gazpacho);
	font-size: 1.125rem;
	font-weight: 500;
	transition: color 0.2s;
}
.mobile-menu__whatsapp svg {
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
}
.mobile-menu__whatsapp:hover {
	color: var(--color-energy-yellow);
}
.mobile-menu__cta {
	width: fit-content;
}

/* Dropdown toggle button */
.dropdown-toggle {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: inherit;
}
.dropdown-toggle svg {
	width: 0.875rem;
	height: 0.875rem;
	flex-shrink: 0;
	pointer-events: none;
	transition: transform 0.2s;
}
li.menu-item[data-open="true"] > .dropdown-toggle svg {
	transform: rotate(180deg);
}

/* Dropdown panel — visibility controlled by jQuery (.animate / .fadeOut) */
.nav .dropdown {
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 1rem;
	min-width: 12rem;
	background-color: #fff;
	color: var(--color-text);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	border-radius: 0.75rem;
	border: 1px solid #f5f5f5;
	padding: 0.5rem 0;
	z-index: 50;
	list-style: none;
}

.nav .dropdown li.menu-item {
	width: 100%;
}
.nav .dropdown li.menu-item a {
	display: block;
	width: 100%;
	padding: 0.5rem 1.25rem;
	font-size: 1rem;
	color: var(--color-text);
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s;
}
.nav .dropdown li.menu-item a:hover {
	color: var(--color-quality-green);
	background-color: #f5f5f5;
}

/* ==========================================================================
	 Footer Navigation
	 ========================================================================== */
.nav-footer .nav {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-footer li.menu-item a {
	font-size: 1.375rem; /* 22px */
	font-family: var(--font-gazpacho);
	font-weight: 500;
	color: var(--color-text-inverted);
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.3s;
}
.nav-footer li.menu-item a:hover {
	color: var(--color-energy-yellow);
}

/* ==========================================================================
	 Skew Helpers
	 ========================================================================== */
.skew-panel {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.skew-panel__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 2.5rem;
	transition: all 0.3s;
}

.pl-skewed {
	padding-left: calc(var(--skew-translate) * 2 + var(--skew-padding));
}
.pr-skewed {
	padding-right: calc(var(--skew-translate) * 2 + var(--skew-padding));
}

.skew-bg {
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	left: var(--skew-translate);
}

/* ==========================================================================
	 Button (CTA — skewed)
	 ========================================================================== */
.btn-primary {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	height: 3.5rem;
	padding: 0.875rem 2.25rem 0.875rem 2.625rem;
	font-size: 1.25rem;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 0 1rem 1rem 0;
	overflow: hidden;
}
.btn-primary__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-energy-yellow);
	border-radius: 1rem;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
    left: var(--skew-translate);
	transform: skewX(calc(var(--skew) * -1));
	transition: transform 0.3s;
	z-index: -1;
}
.btn-primary:hover .btn-primary__bg {
	transform: skewX(var(--skew));
}
.btn-primary__text {
	position: relative;
	pointer-events: none;
}

/* ==========================================================================
	 Arrow Link
	 ========================================================================== */
.arrow-link {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1rem;
	gap: 0.5rem;
	font-size: 1.25rem;
	line-height: 1;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
	transition: color 0.3s;
}
.arrow-link__arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.arrow-link__arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.625rem;
	height: 0.625rem;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}
.arrow-link__arrow-line {
	width: 1.5rem;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s;
}
.arrow-link:hover .arrow-link__arrow-line {
	width: 2.5rem;
}

/* ==========================================================================
	 Hero Slider
	 ========================================================================== */
.hero-slider {
	position: relative;
	height: 100vh;
	height: 100dvh;
}
.hero-slider .swiper {
	height: 100%;
}
.hero-slide {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: var(--color-quality-green);
	padding: 0 1.5rem;
}
.hero-slide__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.hero-slide__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-slide__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
}
.hero-slide__content {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	max-width: 1536px;
	padding-left: 145px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding-top: 7rem;
	padding-bottom: 4rem;
	z-index: 10;
}
.hero-slide__text {
	max-width: 36rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2.5rem;
}
.hero-slide__title {
	font-family: var(--font-gazpacho);
	color: var(--color-text-inverted);
	font-weight: 500;
	font-size: 4.5rem;
	line-height: 1.1;
}
.hero-slide__title span {
	color: var(--color-energy-yellow);
}
.hero-slide__stats {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 1.5rem;
}

/* Stat cards */
.stat-card {
	--skew: 16deg;
	--skew-height: 104px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	position: relative;
	isolation: isolate;
	width: 17rem;
	height: 13rem;
	padding: 3rem;
	overflow: hidden;
}
.stat-card__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 2.5rem;
	transform: skewX(calc(var(--skew) * -1));
	transition: all 0.3s;
}
.stat-card--left {
	padding-right: 5rem;
	padding-left: 3rem;
	color: var(--color-energy-yellow);
	border-radius: 2.5rem 0 0 2.5rem;
}
.stat-card--left .stat-card__bg {
	left: calc(-1 * var(--skew-translate, 0px));
	right: 0;
	background-color: var(--color-quality-green);
}
.stat-card--left {
	margin-right: calc(-2 * var(--skew-translate, 0px));
}
.stat-card--right {
	padding-left: 5rem;
	padding-right: 3rem;
	color: var(--color-quality-green);
	border-radius: 0 2.5rem 2.5rem 0;
}
.stat-card--right .stat-card__bg {
	left: var(--skew-translate, 0px);
	right: 0;
	background-color: var(--color-energy-yellow);
}
.stat-card__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.stat-card__number {
	font-size: 4.5rem;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	line-height: 1.1;
}
.stat-card__label {
	font-size: 1.5rem;
	line-height: 2.5rem;
}

/* Hero pagination & navigation */
.hero-slider__controls {
	position: absolute;
	bottom: 4rem;
	left: 0;
	width: 100%;
	z-index: 50;
}
.hero-slider__controls-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	color: var(--color-energy-yellow);
}

.lq-swiper-button-prev,
.lq-swiper-button-next {
	position: relative !important;
	margin-top: 0 !important;
	width: 3rem;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	padding: 0;
}
.lq-swiper-button-prev svg,
.lq-swiper-button-next svg {
	width: 100%;
	height: auto;
}
.lq-swiper-button-prev::after,
.lq-swiper-button-next::after {
	display: none;
}

.lq-slider__pagination {
	display: flex;
	gap: 0.5rem;
	width: auto !important;
	font-size: 1.25rem;
	line-height: 1 !important;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	z-index: 20;
}

/* Swiper overrides */
.swiper-pagination-bullet-active {
	background-color: var(--color-energy-yellow) !important;
}
.swiper-button-next,
.swiper-button-prev {
	color: var(--color-energy-yellow) !important;
}

/* ==========================================================================
	 About Section
	 ========================================================================== */
.section-about {
	padding: 0 1.5rem;
}
.section-about__inner {
	width: 100%;
	max-width: 1536px;
	margin: 0 auto;
	padding-top: 8rem;
}
.section-about__inner > .section-about__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4rem;
	margin-bottom: 4rem;
}
.section-about__header .arrow-link {
	flex-shrink: 0;
	max-width: 14rem;
	width: 100%;
	font-size: 1.25rem;
	color: var(--color-text);
}
.section-about__heading {
	max-width: 64rem;
	font-size: 3rem;
	line-height: 1.3;
	font-family: var(--font-gazpacho);
	font-weight: 500;
}
.section-about__content {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	max-width: 1280px;
	width: 100%;
	margin-left: auto;
}
.section-about__image-wrap {
	--skew: 16deg;
	--skew-height: 360px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	position: relative;
	flex: 1;
	height: 45rem; /* h-180 */
	border-radius: 2.5rem 0 0 2.5rem;
	overflow: hidden;
}
.section-about__image-skew {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: calc(-1 * var(--skew-translate));
	width: 100%;
	height: 100%;
	background-color: rgba(46, 57, 58, 0.1);
	transform: skewX(var(--skew));
	border-radius: 2.5rem;
	overflow: hidden;
	transition: all 0.3s;
}
.section-about__image-skew img {
	position: relative;
	left: var(--skew-translate);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: skewX(calc(-1 * var(--skew)));
	transition: all 0.3s;
}
.section-about__text {
	flex: 1;
}
.section-about__text p {
	margin-bottom: 0.5rem;
}
.section-about__text p:first-child {
	font-size: 1.5rem;
	line-height: 1.375;
}
.section-about__text p:not(:first-child) {
	font-size: 1.125rem;
	line-height: 1.625;
}

/* ==========================================================================
	 Living 101 Section
	 ========================================================================== */
.section-living101 {
	padding: 0 1.5rem;
}
.section-living101__inner {
	width: 100%;
	max-width: 1536px;
	margin: 0 auto;
	padding: 8rem 0;
}
.section-living101__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4rem;
	margin-bottom: 4rem;
}
.section-living101__header .arrow-link {
	flex-shrink: 0;
	max-width: 14rem;
	width: 100%;
	font-size: 1.25rem;
	color: var(--color-text);
}
.section-living101__header-content {
	max-width: 64rem;
	width: 100%;
}
.section-living101__heading {
	max-width: 36rem;
	font-size: 3rem;
	line-height: 1.3;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	margin-bottom: 1.5rem;
}
.section-living101__desc {
	max-width: 36rem;
}
.section-living101__desc p {
	font-size: 1.125rem;
	line-height: 1.625;
	margin-bottom: 1rem;
}

.section-living101__desc p:last-child {
	margin-bottom: 0;
}

.section-living101__panels {
	display: flex;
	width: 100%;
}

/* Left panel */
.living101-panel--left {
	--skew: 16deg;
	--skew-height: 344px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	--skew-padding: 0rem;
	flex: 1;
	height: 43rem; /* h-172 */
	color: var(--color-text-inverted);
	border-radius: 3rem 0 0 3rem;
	margin-right: calc(-2 * var(--skew-translate));
	padding-left: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.living101-panel--left .skew-panel__bg {
	left: calc(-1 * var(--skew-translate));
	right: 0;
    border-radius: 0 4rem 4rem 0;
	background-color: var(--color-quality-green);
	transform: skewX(-16deg);
}

/* Right panel */
.living101-panel--right {
	--skew: 16deg;
	--skew-height: 344px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	--skew-padding: 0rem;
	flex: 1;
	margin-top: 12rem; /* mt-48 */
	height: 43rem;
	color: #000;
	border-radius: 0 3rem 3rem 0;
	padding-right: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.living101-panel--right .skew-panel__bg {
	left: var(--skew-translate);
	right: 0;
    border-radius: 4rem 0 0 4rem;
	background-color: #a3a3a3; /* neutral-400 */
	transform: skewX(-16deg);
}

.living101-panel__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: center;
	z-index: 10;
}
.living101-panel__inner svg,
.living101-panel__inner img {
	max-width: 100%;
}
.living101-panel__inner h3 {
	font-size: 1.875rem;
	line-height: 1.3;
	font-family: var(--font-gazpacho);
	font-weight: 500;
}
.living101-panel__inner p {
	font-size: 1.25rem;
	line-height: 1.375;
	margin-top: 1.5rem;
}
.living101-panel__inner .panel-svg {
	max-width: 100%;
	max-height: 15rem;
}
.living101-panel__inner .panel-img {
	max-width: 100%;
	max-height: 18rem;
	object-fit: contain;
}

/* ==========================================================================
	 LQ Club Section
	 ========================================================================== */
.section-lqclub {
	padding: 0 1.5rem;
	background-color: var(--color-graphite);
}
.section-lqclub__inner {
	width: 100%;
	max-width: 1536px;
	margin: 0 auto;
	padding: 8rem 0;
}
.section-lqclub__panels {
	display: flex;
	gap: 1.5rem;
	width: 100%;
}

/* Image panel */
.lqclub-panel--image {
	--skew: 10deg;
	--skew-height: 328px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	--skew-padding: 3rem;
	flex: 1;
	height: 41rem;
	color: var(--color-text-inverted);
	border-radius: 2.5rem 0 0 2.5rem;
	margin-right: calc(-2 * var(--skew-translate));
	padding-left: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.lqclub-panel--image .skew-panel__bg {
	left: calc(-1 * var(--skew-translate));
	right: 0;
	background-color: rgba(46, 57, 58, 0.1);
	transform: skewX(10deg);
	border-radius: 2.5rem;
	overflow: hidden;
}
.lqclub-panel--image .skew-panel__bg img {
	position: relative;
	left: var(--skew-translate);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: skewX(-10deg);
}

/* Content panel */
.lqclub-panel--content {
	--skew: 10deg;
	--skew-height: 360px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	--skew-padding: 3rem;
	flex: 1;
	height: 45rem;
	color: var(--color-text-inverted);
	border-radius: 0 2.5rem 2.5rem 0;
	padding-right: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.lqclub-panel--content .skew-panel__bg {
	left: var(--skew-translate);
	right: 0;
	background-color: var(--color-quality-green);
	transform: skewX(10deg);
}

.lqclub-panel__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	justify-content: center;
	z-index: 10;
}
.lqclub-panel__heading {
	font-size: 3rem;
	line-height: 1.3;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	margin-bottom: 1.25rem;
}
.lqclub-panel__desc p {
	font-size: 1.375rem;
	font-weight: 300;
	line-height: 1.375;
	margin-bottom: 1rem;
}

.lqclub-panel__desc p:last-child {
	margin-bottom: 0;
}
.lqclub-panel__features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Feature items */
.lqclub-feature {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.lqclub-feature__icon {
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	padding: 0.625rem;
	background-color: var(--color-quality-light);
	color: var(--color-energy-yellow);
	border-radius: 0.75rem;
}
.lqclub-feature__icon svg {
	width: 100%;
	height: 100%;
}
.lqclub-feature__text {
	font-size: 1.25rem;
	line-height: 2rem;
	font-family: var(--font-gazpacho);
	font-weight: 500;
}
.lqclub-feature__text .coming-soon {
	color: #a3a3a3;
}

.section-lqclub .arrow-link {
	flex-shrink: 0;
	max-width: 20rem;
	width: 100%;
	font-size: 1.25rem;
	color: var(--color-text-inverted);
}

/* ==========================================================================
	 Posts Slider Section
	 ========================================================================== */
.section-posts {
	padding: 8rem 0;
	overflow: hidden;
}
.section-posts__inner {
	width: 100%;
	max-width: 1536px;
	margin: 0 auto;
}
.posts-slider.swiper {
	overflow: visible;
	scroll-padding-left: 2rem;
	scroll-padding-right: 2rem;
}

.posts-slider .swiper-slide {
	max-width: 33rem;
	width: 100%;
	height: auto !important;
	transition: max-width 0.5s ease;
}
.posts-slider .swiper-slide-active {
	max-width: 48rem;
}
.posts-slider .swiper-wrapper {
	align-items: stretch;
	padding: 1rem 0;
}

/* ==========================================================================
	 Post Card
	 ========================================================================== */
.post-card {
	display: block;
	border: 1px solid #e5e5e5;
	padding: 0.375rem;
	border-radius: 2rem;
	background-color: #fff;
	text-decoration: none;
	color: inherit;
	transition: all 0.5s;
	height: 100%;
}

.post-card__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 1.5rem;
	overflow: hidden;
}
.post-card__image-skew {
	--skew: 3deg;
	--skew-translate: calc(tan(3deg) * ((50% * 16) / 9));
	position: absolute;
	left: 0;
	right: 0;
	top: calc(-1 * var(--skew-translate));
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: skewY(var(--skew));
	border-radius: 1.5rem;
	background-color: #f5f5f5;
	overflow: hidden;
}
.post-card__image-skew img {
	position: relative;
	top: var(--skew-translate);
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	transform: skewY(calc(var(--skew) * -1));
}
.post-card__placeholder {
	position: absolute;
	inset: 0;
	background-color: #f5f5f5;
	border-radius: 1.5rem;
}

.post-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0 2.5rem 1.5rem;
	transition: all 0.5s;
}

.post-card__date {
	font-size: 1.125rem;
	color: #737373;
}
.post-card__title {
	font-size: 2rem;
	line-height: 1.375;
	font-family: var(--font-gazpacho);
	font-weight: 500;
	color: var(--color-text);
	transition: color 0.3s;
	margin: 0.5rem 0;
}
.post-card:hover .post-card__title {
	color: var(--color-quality-green);
}
.post-card__excerpt {
	font-size: 1.125rem;
	line-height: 1.625;
	color: #525252;
}

.post-card__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem;
}
.post-card__tag {
	display: inline-flex;
	align-items: center;
	background-color: var(--color-energy-yellow);
	color: var(--color-text);
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 1rem;
	line-height: 2rem;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
}
.post-card__tag--more {
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
}

/* ==========================================================================
	 Footer
	 ========================================================================== */
.site-footer {
	width: 100%;
	--padding: 2.5rem;
	padding: 2.5rem;
}
.site-footer__inner {
	display: flex;
	gap: 2.5rem;
	width: 100%;
}

/* Footer left panel */
.footer-panel--left {
	--skew: 16deg;
	--skew-height: 300px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	--skew-padding: 3.75rem;
	position: relative;
	isolation: isolate;
	flex: 4;
	height: 37.5rem; /* h-150 */
	padding-top: 3.75rem;
	padding-left: 3.75rem;
	padding-right: calc(var(--skew-translate) * 2 + var(--skew-padding));
	padding-bottom: 2rem;
	color: var(--color-text-inverted);
	border-radius: 2.5rem 0 0 2.5rem;
	overflow: hidden;
	margin-right: calc(-2 * var(--skew-translate));
}
.footer-panel--left .skew-panel__bg {
	left: calc(-1 * var(--skew-translate));
	right: 0;
	background-color: var(--color-graphite);
	transform: skewX(-16deg);
}
.footer-panel__content {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: space-between;
	z-index: 10;
}

/* Footer top row */
.footer-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
}
.footer-panel__top .logo-large {
	height: 4.5rem;
}

/* Social icons */
.footer-social {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-social a {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.375rem;
	color: var(--color-text-inverted);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}
.footer-social a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-energy-yellow);
}

/* Footer columns */
.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.footer-columns__heading {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.375;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1.25rem;
}
.footer-columns__heading + .footer-columns__heading,
.footer-columns__heading:not(:first-child) {
	margin-top: 1.25rem;
}
.footer-columns__links {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.footer-columns__links a, a.footer-columns__link {
	font-family: var(--font-gazpacho);
	font-size: 1.375rem;
	line-height: 1.2;
	color: var(--color-text-inverted);
	text-decoration: none;
	transition: color 0.3s;
}
.footer-columns__links a:hover, a.footer-columns__link:hover {
	color: var(--color-energy-yellow);
}

/* Footer contact row */
.footer-contact-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.footer-contact-row a.footer-whatsapp {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.375rem;
	color: var(--color-text-inverted);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}
.footer-contact-row a.footer-whatsapp:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-energy-yellow);
}

/* Footer bottom bar */
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
}
.footer-bottom__copyright {
	font-size: 1rem;
	font-weight: 300;
	line-height: 2.25rem;
}
.footer-bottom__copyright .credit {
	margin-left: 0.25rem;
	opacity: 0.4;
}
.footer-bottom__links {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.footer-bottom__links a {
	color: var(--color-text-inverted);
	text-decoration: none;
	transition: text-decoration 0.2s;
}
.footer-bottom__links a:hover {
	text-decoration: underline;
}
.footer-bottom__links .divider {
	color: var(--color-text-inverted);
}

/* Footer right panel (Join CTA) */
.footer-panel--right {
	--skew: 16deg;
	--skew-height: 300px;
	--skew-translate: calc(tan(var(--skew)) * var(--skew-height));
	position: relative;
	isolation: isolate;
	flex: 1;
	height: 37.5rem;
	padding: 3rem 3rem 3rem 5rem;
	color: #000;
	border-radius: 0 2.5rem 2.5rem 0;
	overflow: hidden;
}
.footer-panel--right .skew-panel__bg {
	left: var(--skew-translate);
	right: 0;
	background-color: var(--color-energy-yellow);
	transform: skewX(-16deg);
	overflow: hidden;
}
.footer-panel--right .watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	color: var(--color-graphite);
	opacity: 0.2;
	transform: skewX(16deg) translate(-50%, -50%);
}
.footer-panel--right__inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: flex-end;
	z-index: 10;
}
.footer-panel--right__inner .arrow-link {
	color: var(--color-text);
}

/* ==========================================================================
	 Generic Page Styles
	 ========================================================================== */
.main {
	/* nothing special by default */
}

.page-content {
	max-width: 768px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
}
.page-content h1 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.page-content h2 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.3;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}
.page-content p {
	font-size: 1.125rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}

/* Alert */
.alert {
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
}
.alert--warning {
	background-color: #fef3c7;
	border: 1px solid #f59e0b;
	color: #92400e;
}

/* ==========================================================================
	 Archive / Blog Listing
	 ========================================================================== */
.section-archive {
	padding: 6rem 0;
}
.section-archive__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-archive__heading {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--color-graphite);
}
.section-archive__heading em {
	font-style: italic;
	color: var(--color-quality-green);
}
.section-archive__desc {
	font-size: 1.125rem;
	line-height: 1.75;
	margin-bottom: 2rem;
	max-width: 40rem;
}
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}
.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-graphite);
	text-decoration: none;
	color: var(--color-graphite);
	font-size: 0.875rem;
	transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background-color: var(--color-graphite);
	color: var(--color-white);
}
.pagination .prev,
.pagination .next {
	width: auto;
	padding: 0 1rem;
	border: none;
	font-weight: 600;
}

/* ==========================================================================
	 Single Page
	 ========================================================================== */
.section-page {
	padding: 6rem 0;
}
.section-page__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-page__title {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--color-graphite);
}
.section-page__thumbnail {
	margin-bottom: 2rem;
}
.section-page__thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}
.section-page__content {
	font-size: 1.125rem;
	line-height: 1.75;
}
.section-page__content p {
	margin-bottom: 1rem;
}
.section-page__content h2 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}
.section-page__content h3 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 1.5rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}
.section-page__content img {
	max-width: 100%;
	height: auto;
}
.section-page__content a {
	color: var(--color-quality-green);
	text-decoration: underline;
}

/* ==========================================================================
	 Single Post
	 ========================================================================== */
.section-single {
	padding: 6rem 0;
}
.section-single__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-single__header {
	margin-bottom: 2rem;
}
.section-single__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 1rem;
}
.section-single__cat {
	display: inline-block;
	background-color: var(--color-energy-yellow);
	color: var(--color-graphite);
	padding: 0.125rem 0.5rem;
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
}
.section-single__title {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 1.2;
	color: var(--color-graphite);
}
.section-single__thumbnail {
	margin-bottom: 2rem;
}
.section-single__thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}
.section-single__content {
	font-size: 1.125rem;
	line-height: 1.75;
}
.section-single__content p {
	margin-bottom: 1rem;
}
.section-single__content h2 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 2rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}
.section-single__content h3 {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 1.5rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}
.section-single__content img {
	max-width: 100%;
	height: auto;
}
.section-single__content a {
	color: var(--color-quality-green);
	text-decoration: underline;
}
.section-single__footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}
.section-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}
.post-tag {
	display: inline-block;
	background-color: var(--color-energy-yellow);
	color: var(--color-graphite);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s;
}
.post-tag:hover {
	background-color: #d4e85c;
}
.section-single__nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.section-single__nav a {
	color: var(--color-quality-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
}
.section-single__nav a:hover {
	text-decoration: underline;
}

/* ==========================================================================
	 404 Page
	 ========================================================================== */
.section-404 {
	padding: 8rem 0;
	text-align: center;
}
.section-404__inner {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-404__title {
	font-family: var(--font-gazpacho);
	font-weight: 700;
	font-size: 8rem;
	line-height: 1;
	color: var(--color-energy-yellow);
	margin-bottom: 1rem;
}
.section-404__text {
	font-size: 1.25rem;
	color: #6b7280;
	margin-bottom: 2rem;
}

/* ==========================================================================
	 Sidebar
	 ========================================================================== */
.sidebar {
	padding: 2rem 0;
}
.sidebar .widget {
	margin-bottom: 2rem;
}
.sidebar .widget-title {
	font-family: var(--font-gazpacho);
	font-weight: 500;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--color-graphite);
}

@media (max-width: 1024px) {
	/* Header – hide desktop nav & actions, show burger + mobile menu */
	.site-header__nav-wrap,
	.site-header__actions {
		display: none;
	}
	.nav-menu-btn__responsive {
		display: inline-flex;
	}
	.mobile-menu {
		display: block;
	}

	/* Headings – tablet */
	.hero-slide__content {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-left: 0;
		padding-top: 8rem;
		padding-bottom: 7rem;
	}
	.hero-slider__controls-inner {
		justify-content: center;
	}
	.hero-slide__text {
		align-items: start;
		text-align: start;
	}
	.hero-slide_content .hero-slide__content {

	}
	.hero-slide__title {
		font-size: 3.5rem;
	}
	.section-about__heading,
	.section-living101__heading,
	.lqclub-panel__heading {
		font-size: 2.5rem;
	}

	/* Paragraphs – tablet */
	.section-about__text p:first-child {
		font-size: 1.375rem;
	}
	.lqclub-panel__desc p {
		font-size: 1.25rem;
	}
	
	.lqclub-panel__inner {
		gap: 2rem;
	}
	.section-lqclub__panels {
		flex-direction: column;
	}
	.lqclub-panel--image {
		width: 100%;
		aspect-ratio: 16/9;
		padding: 0;
	}
	.section-about__content {
		flex-direction: column;
		max-width: 46rem;
		margin: 0 auto;
	}
	.section-about__image-wrap {
		--skew: 8deg;
		--skew-height: 20rem;
		min-height: 40rem;
		width: 100%;
		/* width: 100%;
		aspect-ratio: 16/9;
		padding: 0;
		height: auto; */
	}
	.section-living101__panels {
		flex-direction: column;
		max-width: 46rem;
		margin: 0 auto;
	}
	
	/* Skew adjustments for tablet */
	/* .section-about__image-wrap .section-about__image-skew {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * ((50% * 16) / 9));
		left: 0;
		top: calc(-1 * var(--skew-translate));
		transform: skewX(0) skewY(var(--skew));
		border-radius: 3rem;
	}
	.section-about__image-wrap .section-about__image-skew img {
		left: 0;
		top: var(--skew-translate);
		transform: skewX(0) skewY(calc(-1 * var(--skew)));
	} */
	.section-living101__panels .living101-panel--left {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * min((50vw - 1.5rem), 23rem));
		--skew-padding: 3rem;
		width: 100%;
		height: auto;
		padding: 3rem;
		padding-bottom: calc(var(--skew-translate) * 2 + var(--skew-padding));
		border-radius: 3rem 3rem 0 0;
	}

	.section-living101__panels .living101-panel--left .skew-panel__bg {
		left: 0;
		top: calc(-1 * var(--skew-translate));
		width: 100%;
		transform: skewX(0) skewY(var(--skew));
		border-radius: 2.5rem;
	}

	.section-living101__panels .living101-panel--right {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * min((50vw - 1.5rem), 23rem));
		--skew-padding: 3rem;
		width: 100%;
		height: auto;
		margin-top: 0;
		padding: 3rem;
		padding-top: calc(var(--skew-translate) * 2 + var(--skew-padding));
		border-radius: 0 0 3rem 3rem;
	}

	.section-living101__panels .living101-panel--right .skew-panel__bg {
		left: 0;
		top: var(--skew-translate);
		width: 100%;
		transform: skewX(0) skewY(var(--skew));
		border-radius: 2.5rem;
	}

	.lqclub-panel--image .skew-panel__bg {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * ((50% * 16) / 9));
		left: 0;
		top: calc(-1 * var(--skew-translate));
		transform: skewX(0) skewY(var(--skew));
		border-radius: 3rem;
	}	
	.lqclub-panel--image .skew-panel__bg img {
		left: 0;
		top: var(--skew-translate);
		transform: skewX(0) skewY(calc(-1 * var(--skew)));
	}
	.lqclub-panel--content {
		padding: 3rem;
		height: auto;
	}
	.lqclub-panel--content .skew-panel__bg {
		display: none;
	}
	.section-lqclub__inner .arrow-link {
		display: flex;
		margin: 1rem auto 0;
	}

	/* Stat cards – tablet */
	.stat-card {
		--skew-height: 88px;
		width: 14rem;
		height: 10.5rem;
		padding: 2rem;
	}
	.stat-card--left {
		padding-right: 4rem;
		padding-left: 2rem;
	}
	.stat-card--right {
		padding-left: 4rem;
		padding-right: 2rem;
	}
	.stat-card__number {
		font-size: 3.5rem;
	}
	.stat-card__label {
		font-size: 1.25rem;
	}

	/* Footer – tablet */
	.footer-columns {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__inner {
		flex-direction: column-reverse;
		gap: 0;
	}

	.site-footer__inner .footer-panel--right {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * (50vw - var(--padding, 2.5rem)));
		--skew-padding: 3rem;
		display: flex;
		flex-direction: column;
		justify-content: end;
		width: 100%;
		min-height: 14rem;
		padding: 3rem;
		padding-bottom: calc(var(--skew-translate) * 2 + var(--skew-padding));
		border-radius: 3rem 3rem 0 0;
	}

	.site-footer__inner .footer-panel--right .skew-panel__bg {
		left: 0;
		top: calc(-1 * var(--skew-translate));
		width: 100%;
		transform: skewX(0) skewY(var(--skew));
		border-radius: 2.5rem;
	}

	.site-footer__inner .footer-panel--left {
		--skew: 3deg;
		--skew-translate: calc(tan(var(--skew)) * (50vw - var(--padding, 2.5rem)));
		--skew-padding: 3rem;
		width: 100%;
		height: auto;
		margin-top: 0;
		padding: 3rem;
		padding-top: calc(var(--skew-translate) * 2 + var(--skew-padding));
		border-radius: 0 0 3rem 3rem;
	}

	.site-footer__inner .footer-panel--left .skew-panel__bg {
		left: 0;
		top: var(--skew-translate);
		width: 100%;
		transform: skewX(0) skewY(var(--skew));
		border-radius: 2.5rem;
	}

	.footer-panel--right .watermark {
		transform: skewY(calc(-1 * var(--skew))) translate(-50%, -50%);
	}
}

@media (max-width: 768px) {
	/* Headings – mobile */
	.hero-slide__title {
		font-size: 2.5rem;
	}
	.section-about__heading,
	.section-living101__heading,
	.lqclub-panel__heading {
		font-size: 2rem;
	}
	.living101-panel__inner h3 {
		font-size: 1.5rem;
	}
	.hero-slide__stats {
		gap: 0.5rem;
	}
	.stat-card--left, .stat-card--right {
		--skew: 8deg;
		width: 12rem;
		max-width: 50%;
	}

	/* Paragraphs – mobile */
	.section-about__text p:first-child {
		font-size: 1.25rem;
	}
	.section-about__text p:not(:first-child) {
		font-size: 1rem;
	}
	.section-living101__desc p {
		font-size: 1rem;
	}
	.living101-panel__inner p {
		font-size: 1.125rem;
	}
	.lqclub-panel__desc p {
		font-size: 1.125rem;
	}
	.lqclub-feature__text {
		font-size: 1.125rem;
	}
	.footer-bottom__copyright {
		font-size: 0.875rem;
	}

	/* Layout – mobile */
	.section-about__content,
	.section-living101__panels,
	.section-lqclub__panels {
		flex-direction: column;
	}
	.section-about__header,
	.section-living101__header {
		flex-direction: column;
	}
	.living101-panel--right {
		margin-top: 0;
	}
	.footer-columns {
		grid-template-columns: 1fr;
	}
	.post-grid {
		grid-template-columns: 1fr;
	}
	.footer-panel__top {
		flex-direction: column;
		gap: 1rem;
	}
	.section-archive__heading,
	.section-page__title,
	.section-single__title {
		font-size: 2rem;
	}
	.section-404__title {
		font-size: 5rem;
	}
	.section-single__nav {
		flex-direction: column;
	}
	.lqclub-panel--content {
		padding: 1rem;
	}

	/* Skew adjustments for mobile */
	.site-footer {
		--padding: 1.5rem;
		padding: 1.5rem;
	}
	.site-footer__inner .footer-panel--left {
		padding: 2rem;
		padding-top: 3rem;
	}
	.site-footer__inner .footer-panel--right {
		padding: 2rem;
		padding-bottom: 3rem;
	}
}
