/*
Theme Name: Malabar
Description: Custom WordPress theme for Malabar.
Version: 1.1.1
Author: Wevolved
Text Domain: malabar
Domain Path: /languages
*/

/* Switzer — local variable font */
@font-face {
	font-family: "Switzer";
	src: url("fonts/Switzer/Switzer-Variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

@font-face {
	font-family: "Switzer";
	src: url("fonts/Switzer/Switzer-VariableItalic.woff2") format("woff2");
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
}

/* Roboto Mono — local variable font */
@font-face {
	font-family: "Roboto Mono";
	src: url("fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf") format("truetype");
	font-style: normal;
	font-weight: 100 700;
	font-display: swap;
}

@font-face {
	font-family: "Roboto Mono";
	src: url("fonts/Roboto_Mono/RobotoMono-Italic-VariableFont_wght.ttf") format("truetype");
	font-style: italic;
	font-weight: 100 700;
	font-display: swap;
}

/* Font Awesome bundled with the theme */
@font-face {
	font-family: "FontAwesome";
	src: url("fonts/FontAwesome.otf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Typography */
	--font-primary: "Switzer", Arial, sans-serif;
	--font-mono: "Roboto Mono", "Courier New", monospace;

	/* Base colours */
	--black: #000000;
	--white: #ffffff;
	--grey: #222222;

	/* Layout */
	--header-height: 50px;
	--page-margin: clamp(16px, 2vw, 40px);
	--border-radius: 4px;
	--page-top-space: 180px;
	--page-bottom-margin: 128px;

	/* Malabar brand / header */
	--malabar-blue: #135289;
	--malabar-cream: #FFFDE0;
	--malabar-topbar-height: 36px;
	--malabar-compact-main-height: 68px;
	--malabar-compact-header-height: calc(var(--malabar-topbar-height) + var(--malabar-compact-main-height));
}

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

html {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: #888 transparent;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: var(--malabar-cream);
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html.disableScroll {
	overflow-y: hidden;
}

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

img {
	height: auto;
}

/* ---------------------------------------------------------
   Typography
--------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-style: normal;
	font-weight: 500;
	line-height: 1.1;
}

p,
a,
label,
input,
select,
textarea,
button,
option {
	font-family: var(--font-primary);
}

code,
pre,
kbd,
samp,
.font-mono {
	font-family: var(--font-mono);
}

pre {
	white-space: pre-wrap;
}

/* ---------------------------------------------------------
   Links
--------------------------------------------------------- */
a,
a:hover,
a:focus,
a:active {
	color: inherit;
	text-decoration: none;
}

a {
	cursor: pointer;
	overflow-wrap: anywhere;
}

/* ---------------------------------------------------------
   Lists
--------------------------------------------------------- */
ul,
ol {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

/* ---------------------------------------------------------
   Forms
--------------------------------------------------------- */
input,
select,
textarea,
button {
	font: inherit;
}

textarea {
	resize: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

/* ---------------------------------------------------------
   Page content / WPBakery container
--------------------------------------------------------- */
/*
 * Pages use a responsive horizontal gutter by default. The margin scales
 * with the viewport (3vw), while staying between 20px and 60px. WPBakery
 * full-width rows still calculate against the viewport, so choosing
 * "Stretch row and content (no paddings)" can break a section out to
 * full bleed without requiring a separate page template.
 */
.malabar-page-content {
	width: 100%;
	padding-right: var(--page-margin);
	padding-left: var(--page-margin);
}


/* ---------------------------------------------------------
   WPBakery baseline
--------------------------------------------------------- */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.vc_btn3-container {
	margin-bottom: 0 !important;
}

/* ---------------------------------------------------------
   Scrollbar
--------------------------------------------------------- */
html::-webkit-scrollbar {
	width: 4px;
}

html::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 4px;
}

html::-webkit-scrollbar-track {
	background-color: transparent;
}


/* ---------------------------------------------------------
   Global header / featured hero
--------------------------------------------------------- */
.malabar-site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: var(--malabar-compact-header-height);
	background: transparent;
	color: var(--malabar-cream);
	pointer-events: none;
	transition: background-color 180ms ease, height 180ms ease;
}

body.admin-bar .malabar-site-header {
	top: 32px;
}

.malabar-site-header--hero:not(.is-compact) {
	height: 100vh;
	height: 100svh;
}

.malabar-site-header.is-compact,
.malabar-site-header--compact {
	height: var(--malabar-compact-header-height);
	background: var(--malabar-cream);
	color: var(--malabar-blue);
}

/* Top bar remains visible in every header state. */
.malabar-topbar {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	display: flex;
	width: 100%;
	height: var(--malabar-topbar-height);
	padding: 0 var(--page-margin);
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	background: #135289;
	color: #FFFFFF;
	pointer-events: auto;
}

.malabar-topbar__nav {
	min-width: 0;
	height: 100%;
}

.malabar-topbar__menu {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 28px;
	list-style: none;
	white-space: nowrap;
}

.malabar-topbar__menu li {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	align-items: center;
}

.malabar-topbar__menu a {
	display: inline-flex;
	align-items: center;
	color: #FFFFFF !important;
	font-family: var(--font-mono);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: 0.10em;
	text-decoration: none;
	text-transform: uppercase;
}

.malabar-topbar__menu a:hover,
.malabar-topbar__menu a:focus-visible {
	color: #FFFFFF !important;
	opacity: 0.72;
}

.malabar-topbar__socials {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.malabar-topbar__social {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--malabar-blue) !important;
    font-size: 14px;
    line-height: 1;
}

.malabar-topbar__social:hover,
.malabar-topbar__social:focus-visible {
	opacity: 0.8;
}

/* Menu button: 41 × 18 hug from Figma. */
.malabar-header__menu-trigger {
	position: absolute;
	top: calc(var(--malabar-topbar-height) + 18px);
	left: var(--page-margin);
	z-index: 30;
	display: inline-flex;
	width: auto;
	height: 28px;
	min-width: 53px;
	padding: 5px 7px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	background: var(--malabar-blue);
	color: #FFFFFF;
	font-family: var(--font-mono);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.10em;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	pointer-events: auto;
}

.malabar-header__menu-trigger:hover,
.malabar-header__menu-trigger:focus-visible {
	background: var(--malabar-blue);
	color: #FFFFFF;
}

/* Main off-canvas menu. Reference width is one third of the viewport. */
.malabar-menu-panel {
	position: fixed;
	top: var(--malabar-topbar-height);
	left: 0;
	z-index: 10;
	width: 33.333333vw;
	height: calc(100vh - var(--malabar-topbar-height));
	height: calc(100svh - var(--malabar-topbar-height));
	padding: 90px var(--page-margin) 24px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #FFFDE0;
	color: #135289;
	transform: translate3d(-100%, 0, 0);
	visibility: hidden;
	pointer-events: none;
	transition: transform 180ms ease, visibility 0s linear 180ms;
	will-change: transform;
}

.malabar-site-header.is-menu-open .malabar-menu-panel {
	transform: translate3d(0, 0, 0);
	visibility: visible;
	pointer-events: auto;
	transition: transform 180ms ease, visibility 0s linear 0s;
}

.malabar-menu-panel__nav,
.malabar-menu__list,
.malabar-menu__list .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.malabar-menu__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

.malabar-menu__list li {
	position: relative;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.malabar-menu__list a {
	display: inline-flex;
	max-width: 100%;
	align-items: center;
	color: #135289 !important;
	font-family: var(--font-mono);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.10em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 120ms ease, opacity 120ms ease;
}

/* Small + on parents, generated from the WP hierarchy. */
.malabar-menu__list > .menu-item-has-children > a::after {
	content: "+";
	display: inline-block;
	margin-left: 4px;
	font: inherit;
	line-height: 1;
}

.malabar-menu__list > .menu-item-has-children.is-submenu-open > a::after {
	content: "−";
}

.malabar-menu__list a:hover,
.malabar-menu__list a:focus-visible,
.malabar-menu__list .current-menu-item > a,
.malabar-menu__list .current-menu-parent > a,
.malabar-menu__list .current-menu-ancestor > a,
.malabar-menu__list > .menu-item-has-children.is-submenu-open > a {
	color: #F0B033 !important;
}

/* The reference softly mutes the other primary items while one accordion is open. */
.malabar-menu-panel.has-active-submenu .malabar-menu__list > li:not(.is-submenu-open) > a {
	opacity: 0.22;
}

.malabar-menu-panel.has-active-submenu .malabar-menu__list > li.is-submenu-open > a {
	opacity: 1;
}

.malabar-menu__list .sub-menu {
	display: none;
	padding: 5px 0 1px 15px;
}

.malabar-menu__list .is-submenu-open > .sub-menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

.malabar-menu__list .sub-menu a {
	color: #135289 !important;
}

.malabar-menu__list .sub-menu .current-menu-item > a,
.malabar-menu__list .sub-menu a:hover,
.malabar-menu__list .sub-menu a:focus-visible {
	color: #F0B033 !important;
}

.malabar-header__logo {
	position: absolute;
	left: 50%;
	display: block;
	transform: translateX(-50%);
	pointer-events: auto;
}

.malabar-header__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.malabar-header__logo--hero {
	top: calc(var(--malabar-topbar-height) + 14px);
	z-index: 2;
	width: clamp(125px, 8.2vw, 160px);
	opacity: 1;
	transition: opacity 120ms ease;
}

.malabar-site-header--home .malabar-header__logo--home-animated {
	top: auto;
	bottom: -1.4vw;
	width: 98vw;
	max-width: none;
	will-change: transform;
}

/* JS fallback only. GSAP normally writes these values inline. */
.malabar-site-header--home .malabar-header__logo--home-animated.is-home-logo-top {
	top: calc(var(--malabar-topbar-height) + 14px);
	bottom: auto;
	width: clamp(125px, 8.2vw, 160px);
}

.malabar-header__logo--compact {
	top: calc(var(--malabar-topbar-height) + 14px);
	z-index: 4;
	width: clamp(130px, 8.2vw, 160px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 120ms ease, visibility 120ms ease;
}

.malabar-site-header.is-compact .malabar-header__logo--hero {
	opacity: 0;
	visibility: hidden;
}

.malabar-site-header.is-compact .malabar-header__logo--compact,
.malabar-site-header--compact .malabar-header__logo--compact {
	opacity: 1;
	visibility: visible;
}

.malabar-page-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	background: #111;
}

.malabar-page-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

.malabar-no-hero #main {
	padding-top: var(--malabar-compact-header-height);
}

@media (prefers-reduced-motion: reduce) {
	.malabar-menu-panel {
		transition: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar .malabar-site-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.malabar-topbar {
		gap: 10px;
	}

	.malabar-topbar__nav {
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
	}

	.malabar-topbar__nav::-webkit-scrollbar {
		display: none;
	}

	.malabar-topbar__menu {
		gap: 16px;
	}

	.malabar-menu-panel {
		width: 100vw;
	}

	.malabar-header__logo--hero,
	.malabar-header__logo--compact {
		width: 128px;
	}

	.malabar-site-header--home .malabar-header__logo--home-animated {
		width: 98vw;
	}

	.malabar-site-header--home .malabar-header__logo--home-animated.is-home-logo-top {
		width: 128px;
	}
}



/* ---------------------------------------------------------
   Homepage hero slider
--------------------------------------------------------- */
.malabar-home-hero {
	background: #111;
}

.malabar-home-slider,
.malabar-home-slider .slick-list,
.malabar-home-slider .slick-track,
.malabar-home-slide {
	width: 100%;
	height: 100%;
}

.malabar-home-slider {
	position: absolute;
	inset: 0;
}

.malabar-home-slider:not(.slick-initialized) .malabar-home-slide:not(:first-child) {
	display: none;
}

.malabar-home-slider .slick-list,
.malabar-home-slider .slick-track {
	height: 100% !important;
}

.malabar-home-slider .slick-slide,
.malabar-home-slider .slick-slide > div {
	height: 100%;
}

.malabar-home-slide {
	position: relative;
	overflow: hidden;
	background: #111;
}

.malabar-home-slide__media,
.malabar-home-slide__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
}

.malabar-home-slide__image {
	object-fit: cover;
	object-position: center center;
}

.malabar-home-slide__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	color: #FFFFFF;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	pointer-events: none;
}
.bloco40 {
	padding: 40px 0px;
}
.bloco40 p {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 2.8vw;
    line-height: 3.2vw;
    letter-spacing: 0px;
    color: #135289;
}

.malabar-home-slide__left {
	position: absolute;
	top: 45%;
	left: 10px;
	width: min(28vw, 360px);
	transform: translateY(-50%);
}

.malabar-home-slide__title,
.malabar-home-slide__cta,
.malabar-home-slide__text{
	font-family: var(--font-primary);
	COLOR: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0px;
}
a:focus,
button:focus,
a:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

.malabar-home-slide__title {
	margin: 0;
}

.malabar-home-slide__cta {
    display: inline-flex;
    margin-top: 36px;
    align-items: center;
    gap: 5px;
    margin-left: 30%;
    color: #FFFFFF !important;
    text-decoration: none;
    pointer-events: auto;
}

.malabar-home-slide__cta::after {
	content: "↗";
	font-size: 0.9em;
	line-height: 1;
}

.malabar-home-slide__cta:hover,
.malabar-home-slide__cta:focus-visible {
	color: #FFFFFF !important;
	opacity: 0.75;
}

.malabar-home-slide__text {
	position: absolute;
	top: 45%;
	right: 10px;
	width: min(25vw, 300px);
	margin: 0;
	transform: translateY(-50%);
}

@media (max-width: 760px) {
	.malabar-home-slide__content {
		font-size: 12px;
		line-height: 14px;
	}

	.malabar-home-slide__left {
		top: auto;
		bottom: 21vh;
		left: 12px;
		width: calc(50% - 18px);
		transform: none;
	}

	.malabar-home-slide__cta {
		margin-top: 18px;
	}

	.malabar-home-slide__text {
		top: auto;
		right: 12px;
		bottom: 21vh;
		width: calc(50% - 18px);
		transform: none;
	}
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.malabar-footer {
	--footer-bg: #F0B033;
	--footer-ink: #135289;
	position: relative;
	width: 100%;
	aspect-ratio: 1014 / 423;
	min-height: 0;
	overflow: hidden;
	background: var(--footer-bg);
	color: var(--footer-ink);
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.malabar-footer a {
	color: inherit;
	transition: opacity 180ms ease;
}

.malabar-footer a:hover,
.malabar-footer a:focus-visible {
	opacity: 0.65;
}

/* Partner logo strip: the SVG already contains its own horizontal whitespace,
   so it must span the full viewport width to match the Figma proportions. */
.malabar-footer__partners {
	position: absolute;
	top: 5.65%;
	left: 0;
	width: 100%;
	text-align: center;
}

.malabar-footer__eyebrow {
	margin: 0 0 2.2vw;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.malabar-footer__partners-grid {
	display: block;
	width: 100%;
	height: auto;
}

.malabar-footer__brand {
	position: absolute;
	top: 41.35%;
	left: var(--page-margin);
	display: block;
	width: 15.58%;
}

.malabar-footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}

/* Six equal columns reproduce the Figma grid:
   Legal / Company | middle image (2 cols) | newsletter (2 cols). */
.malabar-footer__columns {
	position: absolute;
	top: 57.45%;
	left: var(--page-margin);
	right: var(--page-margin);
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	column-gap: 0;
	align-items: start;
}

.malabar-footer__legal {
	grid-column: 1;
}

.malabar-footer__company {
	grid-column: 2;
}

.malabar-footer__newsletter {
	grid-column: 5 / span 2;
	min-width: 0;
}

.malabar-footer__heading {
	margin: 0 0 32px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0;
}

.malabar-footer__legal-menu {
	display: flex;
	margin: 0;
	padding: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 23px;
	list-style: none;
}

.malabar-footer__legal-menu li,
.malabar-footer__legal-menu a,
.malabar-footer__email,
.malabar-footer__phone,
.malabar-footer__phone-note,
.malabar-footer__newsletter-form input[type="email"],
.malabar-footer__newsletter-form input[type="text"] {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.04em;
}

.malabar-footer__legal-menu li,
.malabar-footer__legal-menu a,
.malabar-footer__email,
.malabar-footer__phone-note {
	text-transform: uppercase;
}

.malabar-footer__company-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 23px;
}

.malabar-footer__email,
.malabar-footer__phone {
	white-space: nowrap;
}

.malabar-footer__phone-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

/* The centre artwork owns exactly the middle third of the footer grid. */
.malabar-footer__center-media {
	position: absolute;
	top: 34.98%;
	left: 33.333333%;
	width: 33.333333%;
	pointer-events: none;
	user-select: none;
}

.malabar-footer__center-image-wrap {
	position: relative;
	width: 65.5%;
	margin: 0 auto;
	transform: translateX(-5%);
}

.malabar-footer__center-image {
	display: block;
	width: 100%;
	height: auto;
	filter: grayscale(1) sepia(1) saturate(8);
}

/* Figma-style colour wash over the artwork. */
.malabar-footer__center-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(240, 176, 51, 0.41);
	pointer-events: none;
}

.malabar-footer__newsletter-form,
.malabar-footer__newsletter-form .wpcf7,
.malabar-footer__newsletter-form form {
	width: 100%;
	margin: 0;
}

.malabar-footer__newsletter-form p {
	margin: 0;
}

.malabar-footer__newsletter-form .malabar-newsletter-form {
	width: 100%;
}

.malabar-footer__newsletter-form .malabar-newsletter-form__email {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	border-bottom: 1px solid currentColor;
}

.malabar-footer__newsletter-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.malabar-footer__newsletter-form input[type="email"],
.malabar-footer__newsletter-form input[type="text"] {
	width: 100%;
	height: 34px;
	padding: 0 48px 10px 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: inherit;
	box-shadow: none;
	text-transform: none;
}

.malabar-footer__newsletter-form input::placeholder {
	color: inherit;
	opacity: 1;
}

.malabar-footer__newsletter-form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 34px;
	padding: 0 0 10px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
	text-align: right;
	cursor: pointer;
	box-shadow: none;
}

.malabar-footer__newsletter-form .malabar-newsletter-form__consent {
	display: flex;
	margin-top: 17px;
	align-items: center;
	gap: 9px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.malabar-footer__newsletter-form .wpcf7-acceptance,
.malabar-footer__newsletter-form .wpcf7-list-item,
.malabar-footer__newsletter-form .wpcf7-list-item label {
	display: inline-flex;
	margin: 0;
	align-items: center;
}

.malabar-footer__newsletter-form input[type="checkbox"] {
	position: relative;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1px solid var(--footer-ink);
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	cursor: pointer;
	flex: 0 0 18px;
}

.malabar-footer__newsletter-form input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid var(--footer-ink);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.malabar-footer__newsletter-form .wpcf7-list-item-label,
.malabar-footer__newsletter-form .malabar-newsletter-form__consent,
.malabar-footer__newsletter-form .malabar-newsletter-form__consent a {
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	letter-spacing: 0;
}

.malabar-footer__newsletter-form a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.malabar-footer__newsletter-form .wpcf7-spinner {
	display: none;
}

.malabar-footer__newsletter-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	font-size: 11px;
	line-height: 14px;
}

.malabar-footer__newsletter-form .wpcf7-response-output {
	margin: 12px 0 0 !important;
	padding: 6px 8px !important;
	border-width: 1px !important;
	font-size: 11px;
	line-height: 14px;
}

.malabar-footer__bottom {
	position: absolute;
	left: var(--page-margin);
	right: var(--page-margin);
	bottom: 5.65%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.malabar-footer__copyright,
.malabar-footer__crafted {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0;
}

@media (max-width: 900px) {
	.malabar-footer {
		display: flex;
		width: 100%;
		aspect-ratio: auto;
		padding: 32px var(--page-margin) 24px;
		flex-direction: column;
		overflow: visible;
	}

	.malabar-footer__partners,
	.malabar-footer__brand,
	.malabar-footer__center-media,
	.malabar-footer__columns,
	.malabar-footer__bottom {
		position: static;
		inset: auto;
		transform: none;
	}

	.malabar-footer__partners {
		order: 1;
		width: calc(100% + (2 * var(--page-margin)));
		margin-left: calc(-1 * var(--page-margin));
	}

	.malabar-footer__eyebrow {
		margin-bottom: 22px;
		font-size: 12px;
		line-height: 16px;
	}

	.malabar-footer__brand {
		order: 2;
		width: 170px;
		margin-top: 58px;
	}

	.malabar-footer__center-media {
		order: 3;
		width: 100%;
		margin: 38px 0 46px;
	}

	.malabar-footer__center-image-wrap {
		width: min(300px, 68vw);
		transform: none;
	}

	.malabar-footer__columns {
		order: 4;
		display: grid;
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 28px;
	}

	.malabar-footer__legal,
	.malabar-footer__company,
	.malabar-footer__newsletter {
		grid-column: auto;
	}

	.malabar-footer__newsletter {
		grid-column: 1 / -1;
		max-width: 520px;
	}

	.malabar-footer__heading {
		margin-bottom: 22px;
	}

	.malabar-footer__legal-menu {
		gap: 12px;
	}

	.malabar-footer__company-details {
		gap: 12px;
	}

	.malabar-footer__bottom {
		order: 5;
		margin-top: 56px;
	}
}

@media (max-width: 560px) {
	.malabar-footer__partners {
		width: calc(100% + (2 * var(--page-margin)));
		margin-left: calc(-1 * var(--page-margin));
	}

	.malabar-footer__brand {
		width: 150px;
		margin-top: 46px;
	}

	.malabar-footer__columns {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.malabar-footer__newsletter {
		grid-column: auto;
		max-width: none;
	}

	.malabar-footer__heading,
	.malabar-footer__legal-menu li,
	.malabar-footer__legal-menu a,
	.malabar-footer__email,
	.malabar-footer__phone,
	.malabar-footer__phone-note,
	.malabar-footer__newsletter-form input[type="email"],
	.malabar-footer__newsletter-form input[type="text"] {
		font-size: 14px;
	}

	.malabar-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		margin-top: 48px;
	}
}
