:root {
	--gm-dark: #07141e;
	--gm-dark-2: #0b2130;
	--gm-ink: #102430;
	--gm-muted: #62727d;
	--gm-line: #dce4e8;
	--gm-soft: #f3f7f9;
	--gm-soft-blue: #eaf5f9;
	--gm-white: #ffffff;
	--gm-accent: #39b7df;
	--gm-accent-dark: #0a5a7f;
	--gm-accent-pale: #cfeef8;
	--gm-success: #1ea970;
	--gm-shadow-sm: 0 12px 30px rgba(4, 25, 38, 0.08);
	--gm-shadow: 0 28px 70px rgba(4, 25, 38, 0.14);
	--gm-radius-sm: 12px;
	--gm-radius: 22px;
	--gm-radius-lg: 34px;
	--gm-container: 1240px;
	--gm-header-offset: 126px;
	--gm-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--gm-header-offset);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--gm-white);
	color: var(--gm-ink);
	font-family: var(--gm-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.gm-menu-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

a:hover {
	text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--gm-ink);
	font-weight: 780;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3.1rem, 6.8vw, 6.5rem);
}

h2 {
	font-size: clamp(2.25rem, 4.5vw, 4.15rem);
}

h3 {
	font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}

::selection {
	background: var(--gm-accent);
	color: var(--gm-dark);
}

:focus-visible {
	outline: 3px solid var(--gm-accent);
	outline-offset: 4px;
}

.gm-container {
	width: min(calc(100% - 48px), var(--gm-container));
	margin-inline: auto;
}

.gm-site-main {
	overflow: clip;
}

.gm-section-anchor {
	scroll-margin-top: var(--gm-header-offset);
}

.gm-section {
	position: relative;
	padding: clamp(92px, 9vw, 150px) 0;
}

.gm-kicker,
.gm-card-label {
	margin-bottom: 18px;
	color: var(--gm-accent-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.gm-section-heading {
	margin-bottom: clamp(42px, 5.5vw, 76px);
}

.gm-section-heading h2 {
	margin-bottom: 0;
	max-width: 900px;
}

.gm-section-heading > p,
.gm-section-heading > div > p:last-child {
	color: var(--gm-muted);
}

.gm-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
	gap: clamp(36px, 7vw, 100px);
	align-items: end;
}

.gm-section-heading--split > p {
	margin-bottom: 4px;
	font-size: 1.05rem;
}

.gm-section-heading--center {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.gm-section-heading--center h2 {
	margin-inline: auto;
	margin-bottom: 24px;
}

.gm-section-heading--center > p:last-child {
	max-width: 680px;
	margin: 0 auto;
	font-size: 1.05rem;
}

.gm-icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.gm-icon-box {
	display: inline-grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(10, 90, 127, 0.13);
	border-radius: 15px;
	background: var(--gm-soft-blue);
	color: var(--gm-accent-dark);
}

.gm-icon-box .gm-icon {
	width: 24px;
	height: 24px;
}

.gm-icon-box--large {
	width: 66px;
	height: 66px;
	border-radius: 20px;
}

.gm-icon-box--large .gm-icon {
	width: 30px;
	height: 30px;
}

.gm-button {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 0 25px;
	border: 1px solid var(--gm-accent);
	border-radius: 999px;
	background: var(--gm-accent);
	box-shadow: 0 12px 26px rgba(57, 183, 223, 0.2);
	color: #03121a;
	font-size: 0.94rem;
	font-weight: 780;
	line-height: 1.2;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gm-button:hover {
	transform: translateY(-2px);
	border-color: #77d2ef;
	background: #77d2ef;
	box-shadow: 0 17px 38px rgba(57, 183, 223, 0.28);
}

.gm-button .gm-icon {
	width: 19px;
	height: 19px;
	transition: transform 180ms ease;
}

.gm-button:hover .gm-icon:last-child {
	transform: translateX(3px);
}

.gm-button--compact {
	min-height: 46px;
	padding-inline: 20px;
	font-size: 0.86rem;
}

.gm-button--ghost {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
	color: var(--gm-white);
	backdrop-filter: blur(10px);
}

.gm-button--ghost:hover {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.gm-button--dark {
	border-color: var(--gm-dark);
	background: var(--gm-dark);
	box-shadow: 0 12px 28px rgba(7, 20, 30, 0.18);
	color: var(--gm-white);
}

.gm-button--dark:hover {
	border-color: var(--gm-accent-dark);
	background: var(--gm-accent-dark);
	color: var(--gm-white);
}

.gm-button--light {
	border-color: var(--gm-white);
	background: var(--gm-white);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	color: var(--gm-dark);
}

.gm-button--light:hover {
	border-color: var(--gm-accent-pale);
	background: var(--gm-accent-pale);
	color: var(--gm-dark);
}

.gm-button--outline-light {
	border-color: rgba(255, 255, 255, 0.3);
	background: transparent;
	box-shadow: none;
	color: var(--gm-white);
}

.gm-button--outline-light:hover {
	border-color: var(--gm-white);
	background: rgba(255, 255, 255, 0.08);
	color: var(--gm-white);
}

.gm-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gm-accent-dark);
	font-size: 0.9rem;
	font-weight: 760;
}

.gm-text-link .gm-icon {
	width: 17px;
	height: 17px;
	transition: transform 180ms ease;
}

.gm-text-link:hover .gm-icon {
	transform: translateX(4px);
}

/* Accessibility helpers */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.gm-skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	border-radius: 8px;
	background: var(--gm-white);
	box-shadow: var(--gm-shadow-sm);
	color: var(--gm-dark);
	font-weight: 700;
}

.gm-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Header */
.gm-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: filter 200ms ease;
}

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

.gm-topbar {
	min-height: 38px;
	background: #041019;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.76rem;
	font-weight: 620;
}

.gm-topbar__inner {
	display: flex;
	min-height: 38px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.gm-topbar__group,
.gm-topbar__hours,
.gm-topbar a {
	display: flex;
	align-items: center;
}

.gm-topbar__group {
	gap: 14px;
}

.gm-topbar a,
.gm-topbar__hours {
	gap: 7px;
}

.gm-topbar a {
	transition: color 160ms ease;
}

.gm-topbar a:hover {
	color: var(--gm-white);
}

.gm-topbar .gm-icon {
	width: 14px;
	height: 14px;
	color: var(--gm-accent);
}

.gm-topbar__separator {
	width: 1px;
	height: 13px;
	background: rgba(255, 255, 255, 0.19);
}

.gm-navbar {
	border-bottom: 1px solid rgba(11, 40, 57, 0.09);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(18px) saturate(145%);
	transition: box-shadow 200ms ease, background-color 200ms ease;
}

.gm-site-header.is-scrolled .gm-navbar {
	background: rgba(255, 255, 255, 0.985);
	box-shadow: 0 10px 30px rgba(4, 24, 36, 0.08);
}

.gm-navbar__inner {
	display: flex;
	min-height: 84px;
	align-items: center;
	gap: clamp(22px, 3vw, 45px);
}

.gm-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.gm-brand-image--header {
	width: clamp(180px, 15vw, 228px);
	height: auto;
}

.gm-primary-nav {
	margin-left: auto;
}

.gm-menu {
	display: flex;
	align-items: center;
	gap: clamp(16px, 1.7vw, 27px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.gm-menu li {
	position: relative;
	margin: 0;
}

.gm-menu > li > a {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: #263b47;
	font-size: 0.86rem;
	font-weight: 690;
	white-space: nowrap;
	transition: color 170ms ease;
}

.gm-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	border-radius: 99px;
	background: var(--gm-accent-dark);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.gm-menu > li > a:hover,
.gm-menu > li > a.is-active,
.gm-menu > li.current-menu-item > a {
	color: var(--gm-accent-dark);
}

.gm-menu > li > a:hover::after,
.gm-menu > li > a.is-active::after,
.gm-menu > li.current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.gm-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: -18px;
	min-width: 210px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--gm-line);
	border-radius: 14px;
	background: var(--gm-white);
	box-shadow: var(--gm-shadow-sm);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.gm-menu li:hover > .sub-menu,
.gm-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.gm-menu .sub-menu a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 650;
}

.gm-menu .sub-menu a:hover {
	background: var(--gm-soft);
	color: var(--gm-accent-dark);
}

.gm-navbar__cta {
	flex: 0 0 auto;
}

.gm-menu-toggle,
.gm-menu-backdrop,
.gm-mobile-menu-cta {
	display: none;
}

/* Hero */
.gm-hero {
	position: relative;
	min-height: min(850px, calc(100svh - var(--gm-header-offset)));
	padding: clamp(82px, 8vw, 125px) 0 clamp(80px, 9vw, 130px);
	background:
		linear-gradient(115deg, rgba(9, 29, 42, 0.97), rgba(4, 15, 23, 0.99)),
		url("../images/pattern-grid.svg");
	color: var(--gm-white);
	isolation: isolate;
}

.gm-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 20%, rgba(55, 180, 222, 0.13), transparent 38%),
		linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.035) 50%, transparent 50.1%);
	content: "";
}

.gm-hero__glow {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(12px);
	pointer-events: none;
}

.gm-hero__glow--one {
	top: 8%;
	right: -150px;
	width: 470px;
	height: 470px;
	background: rgba(57, 183, 223, 0.16);
}

.gm-hero__glow--two {
	bottom: -220px;
	left: -190px;
	width: 440px;
	height: 440px;
	background: rgba(65, 135, 169, 0.13);
}

.gm-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.82fr);
	gap: clamp(60px, 8vw, 118px);
	align-items: center;
}

.gm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.79rem;
	font-weight: 770;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gm-eyebrow__dot {
	position: relative;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--gm-accent);
	box-shadow: 0 0 0 6px rgba(57, 183, 223, 0.13);
}

.gm-hero h1 {
	max-width: 790px;
	margin-bottom: 28px;
	color: var(--gm-white);
	font-size: clamp(3.6rem, 7.1vw, 7rem);
	letter-spacing: -0.055em;
}

.gm-hero__lead {
	max-width: 680px;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1.05rem, 1.45vw, 1.23rem);
	line-height: 1.75;
}

.gm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-bottom: 48px;
}

.gm-hero__proof {
	display: grid;
	max-width: 700px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gm-hero__proof > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 24px;
}

.gm-hero__proof > div + div {
	padding-left: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.gm-hero__proof strong {
	color: var(--gm-white);
	font-size: 1.18rem;
	font-weight: 790;
	line-height: 1.2;
}

.gm-hero__proof span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.76rem;
	line-height: 1.35;
}

.gm-hero__visual {
	position: relative;
	width: min(100%, 500px);
	justify-self: end;
}

.gm-hero__image-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 0.78;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--gm-radius-lg);
	background: var(--gm-dark-2);
	box-shadow: 0 45px 100px rgba(0, 0, 0, 0.34);
}

.gm-hero__image-frame::before {
	position: absolute;
	inset: 15px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 24px;
	content: "";
	pointer-events: none;
}

.gm-hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.gm-hero__visual:hover .gm-hero__image-frame img {
	transform: scale(1.025);
}

.gm-hero__image-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 13, 20, 0.04) 42%, rgba(3, 13, 20, 0.9) 100%);
}

.gm-hero__image-caption {
	position: absolute;
	right: 38px;
	bottom: 37px;
	left: 38px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.gm-hero__image-caption span {
	color: var(--gm-accent);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.gm-hero__image-caption strong {
	color: var(--gm-white);
	font-size: 1rem;
	line-height: 1.45;
}

.gm-floating-card {
	position: absolute;
	z-index: 4;
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(8, 25, 36, 0.83);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.23);
	color: var(--gm-white);
	backdrop-filter: blur(18px) saturate(135%);
}

.gm-floating-card--rating {
	top: 9%;
	left: -74px;
	width: 218px;
	flex-direction: column;
	gap: 3px;
	padding: 17px 18px;
}

.gm-floating-card--rating strong {
	font-size: 0.84rem;
}

.gm-floating-card--rating > span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.68rem;
}

.gm-stars {
	display: flex;
	gap: 2px;
	color: #ffc95b;
}

.gm-stars .gm-icon {
	width: 14px;
	height: 14px;
	fill: currentColor;
	stroke-width: 1.2;
}

.gm-floating-card--location {
	right: -38px;
	bottom: 12%;
	align-items: center;
	gap: 12px;
	padding: 14px 17px;
}

.gm-floating-card--location > .gm-icon {
	width: 24px;
	height: 24px;
	color: var(--gm-accent);
}

.gm-floating-card--location div {
	display: flex;
	flex-direction: column;
}

.gm-floating-card--location strong {
	font-size: 0.84rem;
}

.gm-floating-card--location span {
	color: rgba(255, 255, 255, 0.57);
	font-size: 0.67rem;
}

/* Trust strip */
.gm-trust-strip {
	border-bottom: 1px solid var(--gm-line);
	background: var(--gm-white);
}

.gm-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gm-trust-strip__grid > div {
	display: flex;
	min-height: 104px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	border-right: 1px solid var(--gm-line);
	color: #3d525e;
	font-size: 0.86rem;
	font-weight: 720;
	text-align: center;
}

.gm-trust-strip__grid > div:first-child {
	border-left: 1px solid var(--gm-line);
}

.gm-trust-strip .gm-icon {
	width: 21px;
	height: 21px;
	color: var(--gm-accent-dark);
}

/* Services */
.gm-services {
	background: var(--gm-soft);
}

.gm-services::before {
	position: absolute;
	top: 0;
	right: 0;
	width: min(42vw, 620px);
	height: 100%;
	background: url("../images/pattern-grid.svg");
	content: "";
	opacity: 0.75;
	pointer-events: none;
}

.gm-services-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.gm-service-card {
	position: relative;
	display: flex;
	min-height: 530px;
	flex-direction: column;
	padding: clamp(32px, 4vw, 48px);
	overflow: hidden;
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 15px 45px rgba(6, 30, 45, 0.04);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gm-service-card::after {
	position: absolute;
	right: -85px;
	bottom: -110px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(57, 183, 223, 0.13), transparent 67%);
	content: "";
	transition: transform 300ms ease;
}

.gm-service-card:hover {
	z-index: 1;
	transform: translateY(-6px);
	border-color: rgba(10, 90, 127, 0.22);
	box-shadow: var(--gm-shadow);
}

.gm-service-card:hover::after {
	transform: scale(1.35);
}

.gm-service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 38px;
}

.gm-service-card__number {
	color: #a6b2b9;
	font-size: 0.78rem;
	font-weight: 780;
	letter-spacing: 0.12em;
}

.gm-service-card h3 {
	margin-bottom: 18px;
}

.gm-service-card > p:not(.gm-card-label) {
	margin-bottom: 25px;
	color: var(--gm-muted);
}

.gm-check-list {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0 0 33px;
	list-style: none;
}

.gm-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #40545f;
	font-size: 0.88rem;
	line-height: 1.5;
}

.gm-check-list .gm-icon {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--gm-success);
}

.gm-service-card .gm-text-link {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

/* Showcase */
.gm-showcase {
	background: var(--gm-white);
}

.gm-showcase__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(60px, 9vw, 130px);
	align-items: center;
}

.gm-showcase__media {
	position: relative;
}

.gm-showcase__image-wrap {
	position: relative;
	width: min(100%, 510px);
	aspect-ratio: 0.83;
	overflow: hidden;
	border-radius: var(--gm-radius-lg);
	background: var(--gm-dark);
	box-shadow: var(--gm-shadow);
}

.gm-showcase__image-wrap::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(4, 15, 23, 0.54));
	content: "";
	pointer-events: none;
}

.gm-showcase__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-showcase__stamp {
	position: absolute;
	right: 25px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	width: 170px;
	height: 170px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(6, 28, 41, 0.78);
	color: var(--gm-white);
	text-align: center;
	backdrop-filter: blur(15px);
}

.gm-showcase__stamp strong {
	font-size: 2.35rem;
	line-height: 1;
}

.gm-showcase__stamp span {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.67rem;
	font-weight: 650;
	line-height: 1.4;
}

.gm-showcase__content h2 {
	margin-bottom: 28px;
}

.gm-showcase__content > p:not(.gm-kicker) {
	margin-bottom: 38px;
	color: var(--gm-muted);
	font-size: 1.04rem;
}

.gm-feature-list {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0 0 38px;
	border-top: 1px solid var(--gm-line);
	list-style: none;
}

.gm-feature-list li {
	display: grid;
	grid-template-columns: 45px 1fr;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--gm-line);
}

.gm-feature-list > li > span {
	color: var(--gm-accent-dark);
	font-size: 0.74rem;
	font-weight: 820;
	letter-spacing: 0.08em;
}

.gm-feature-list strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.97rem;
}

.gm-feature-list p {
	margin: 0;
	color: var(--gm-muted);
	font-size: 0.86rem;
}

/* Products */
.gm-products {
	background:
		linear-gradient(120deg, rgba(7, 20, 30, 0.98), rgba(8, 34, 49, 0.98)),
		url("../images/pattern-grid.svg");
	color: var(--gm-white);
}

.gm-products .gm-kicker {
	color: var(--gm-accent);
}

.gm-products .gm-section-heading h2 {
	color: var(--gm-white);
}

.gm-products .gm-section-heading > p:last-child {
	color: rgba(255, 255, 255, 0.62);
}

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

.gm-product-card {
	display: flex;
	min-height: 390px;
	flex-direction: column;
	padding: clamp(30px, 3.5vw, 43px);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: var(--gm-radius);
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(10px);
	transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.gm-product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(57, 183, 223, 0.42);
	background: rgba(255, 255, 255, 0.082);
}

.gm-product-card .gm-icon-box {
	margin-bottom: 32px;
	border-color: rgba(57, 183, 223, 0.17);
	background: rgba(57, 183, 223, 0.1);
	color: var(--gm-accent);
}

.gm-product-card .gm-card-label {
	color: var(--gm-accent);
}

.gm-product-card h3 {
	margin-bottom: 17px;
	color: var(--gm-white);
}

.gm-product-card > p:not(.gm-card-label) {
	margin-bottom: 29px;
	color: rgba(255, 255, 255, 0.61);
}

.gm-product-card .gm-text-link {
	margin-top: auto;
	color: var(--gm-white);
}

.gm-products__note {
	display: flex;
	max-width: 720px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 22px;
	margin: 34px auto 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.82rem;
	text-align: center;
}

.gm-products__note .gm-icon {
	color: var(--gm-accent);
}

/* About / process */
.gm-about {
	background: var(--gm-white);
}

.gm-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--gm-line);
	border-bottom: 1px solid var(--gm-line);
}

.gm-process-card {
	position: relative;
	min-height: 320px;
	padding: 43px clamp(26px, 4vw, 48px) 44px;
}

.gm-process-card + .gm-process-card {
	border-left: 1px solid var(--gm-line);
}

.gm-process-card > span {
	display: inline-grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 42px;
	border: 1px solid var(--gm-line);
	border-radius: 50%;
	color: var(--gm-accent-dark);
	font-size: 0.76rem;
	font-weight: 800;
}

.gm-process-card__line {
	position: absolute;
	top: 67px;
	right: 0;
	left: 95px;
	height: 1px;
	background: linear-gradient(90deg, var(--gm-line), transparent);
}

.gm-process-card h3 {
	margin-bottom: 16px;
}

.gm-process-card p {
	margin: 0;
	color: var(--gm-muted);
	font-size: 0.92rem;
}

/* Reviews */
.gm-reviews {
	background: var(--gm-soft-blue);
}

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

.gm-review-card {
	display: flex;
	min-height: 350px;
	flex-direction: column;
	padding: clamp(30px, 3.5vw, 42px);
	border: 1px solid rgba(10, 90, 127, 0.12);
	border-radius: var(--gm-radius);
	background: var(--gm-white);
	box-shadow: 0 16px 40px rgba(7, 36, 51, 0.06);
}

.gm-review-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 37px;
}

.gm-review-card .gm-stars .gm-icon {
	width: 16px;
	height: 16px;
}

.gm-quote-icon {
	width: 34px !important;
	height: 34px !important;
	color: var(--gm-accent-pale);
	fill: currentColor;
	stroke: none;
}

.gm-review-card blockquote {
	margin-bottom: 32px;
	color: #2a414e;
	font-size: 1.04rem;
	font-weight: 560;
	line-height: 1.7;
}

.gm-review-card footer {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: auto;
}

.gm-review-card footer strong {
	font-size: 0.88rem;
}

.gm-review-card footer span {
	color: var(--gm-muted);
	font-size: 0.7rem;
}

/* FAQ */
.gm-faq {
	background: var(--gm-white);
}

.gm-faq__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(60px, 9vw, 135px);
	align-items: start;
}

.gm-faq__intro {
	position: sticky;
	top: calc(var(--gm-header-offset) + 28px);
}

.gm-faq__intro h2 {
	margin-bottom: 25px;
}

.gm-faq__intro > p:not(.gm-kicker) {
	margin-bottom: 32px;
	color: var(--gm-muted);
}

.gm-accordion {
	border-top: 1px solid var(--gm-line);
}

.gm-accordion__item {
	border-bottom: 1px solid var(--gm-line);
}

.gm-accordion__item h3 {
	margin: 0;
	font-size: 1rem;
	letter-spacing: 0;
}

.gm-accordion__item button {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 30px;
	gap: 25px;
	align-items: center;
	padding: 27px 0;
	border: 0;
	background: transparent;
	color: var(--gm-ink);
	font-weight: 750;
	text-align: left;
	cursor: pointer;
}

.gm-accordion__item button i {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
	border: 1px solid var(--gm-line);
	border-radius: 50%;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.gm-accordion__item button i::before,
.gm-accordion__item button i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1.5px;
	background: var(--gm-accent-dark);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.gm-accordion__item button i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.gm-accordion__item.is-open button i {
	border-color: var(--gm-accent-pale);
	background: var(--gm-accent-pale);
}

.gm-accordion__item.is-open button i::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.gm-accordion__panel {
	overflow: hidden;
}

.gm-accordion__panel p {
	max-width: 760px;
	padding: 0 55px 28px 0;
	margin: 0;
	color: var(--gm-muted);
	font-size: 0.94rem;
}

/* Contact */
.gm-contact {
	padding: 0 0 clamp(86px, 8vw, 130px);
	background: var(--gm-white);
}

.gm-contact__box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
	gap: clamp(50px, 7vw, 100px);
	padding: clamp(45px, 7vw, 90px);
	overflow: hidden;
	border-radius: var(--gm-radius-lg);
	background:
		linear-gradient(120deg, rgba(7, 20, 30, 0.98), rgba(8, 47, 67, 0.97)),
		url("../images/pattern-grid.svg");
	box-shadow: var(--gm-shadow);
	color: var(--gm-white);
}

.gm-contact__box::before {
	position: absolute;
	top: -190px;
	right: -140px;
	width: 470px;
	height: 470px;
	border-radius: 50%;
	background: rgba(57, 183, 223, 0.14);
	content: "";
	filter: blur(4px);
}

.gm-contact__content,
.gm-contact__details {
	position: relative;
	z-index: 1;
}

.gm-contact .gm-kicker {
	color: var(--gm-accent);
}

.gm-contact h2 {
	margin-bottom: 23px;
	color: var(--gm-white);
}

.gm-contact__content > p:not(.gm-kicker) {
	max-width: 690px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.63);
}

.gm-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gm-contact__details {
	display: grid;
	gap: 0;
	align-self: center;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.gm-contact__details > a,
.gm-contact__details > div {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 17px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.gm-contact__details .gm-icon-box {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.07);
	color: var(--gm-accent);
}

.gm-contact__details small,
.gm-contact__details strong {
	display: block;
}

.gm-contact__details small {
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.47);
	font-size: 0.68rem;
	font-weight: 720;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gm-contact__details strong {
	color: var(--gm-white);
	font-size: 0.85rem;
	font-weight: 650;
	line-height: 1.45;
}

.gm-contact__details a:hover strong {
	color: var(--gm-accent);
}

/* Footer */
.gm-site-footer {
	padding: clamp(75px, 8vw, 110px) 0 25px;
	background: #030c12;
	color: rgba(255, 255, 255, 0.58);
}

.gm-footer-grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
	gap: clamp(35px, 5vw, 72px);
	padding-bottom: 65px;
}

.gm-brand-image--footer {
	width: 220px;
	height: auto;
}

.gm-footer-brand > p {
	max-width: 330px;
	margin: 24px 0 25px;
	font-size: 0.88rem;
}

.gm-socials {
	display: flex;
	gap: 9px;
}

.gm-socials a {
	display: grid;
	width: 39px;
	height: 39px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.72);
	transition: border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.gm-socials a:hover {
	transform: translateY(-2px);
	border-color: var(--gm-accent);
	color: var(--gm-accent);
}

.gm-socials .gm-icon {
	width: 18px;
	height: 18px;
}

.gm-footer-column h2 {
	margin-bottom: 23px;
	color: var(--gm-white);
	font-size: 0.85rem;
	font-weight: 760;
	letter-spacing: 0.02em;
}

.gm-footer-column ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.gm-footer-column li,
.gm-footer-column a {
	font-size: 0.78rem;
	line-height: 1.55;
}

.gm-footer-column a {
	transition: color 160ms ease;
}

.gm-footer-column a:hover {
	color: var(--gm-white);
}

.gm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
}

.gm-footer-bottom p {
	margin: 0;
}

.gm-footer-bottom a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 650;
}

.gm-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 900;
	display: flex;
	min-height: 54px;
	align-items: center;
	gap: 9px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: #1fbd69;
	box-shadow: 0 15px 35px rgba(14, 113, 58, 0.28);
	color: var(--gm-white);
	font-size: 0.82rem;
	font-weight: 780;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gm-whatsapp-float:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 42px rgba(14, 113, 58, 0.36);
}

.gm-whatsapp-float .gm-icon {
	width: 22px;
	height: 22px;
}

/* Pages, posts and WordPress content */
.gm-inner-hero {
	padding: clamp(78px, 9vw, 125px) 0;
	background: var(--gm-dark);
	color: var(--gm-white);
	text-align: center;
}

.gm-inner-hero h1 {
	max-width: 950px;
	margin: 0 auto;
	color: var(--gm-white);
	font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.gm-content-wrap {
	padding: clamp(70px, 8vw, 115px) 0;
}

.gm-entry-content,
.gm-entry-header,
.gm-comments-area {
	width: min(calc(100% - 48px), 820px);
	margin-inline: auto;
}

.gm-entry-content > * + * {
	margin-top: 1.4em;
}

.gm-entry-content a {
	color: var(--gm-accent-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.gm-entry-content img,
.gm-entry-content .wp-block-image {
	border-radius: 16px;
}

.gm-entry-content blockquote {
	padding: 25px 30px;
	border-left: 4px solid var(--gm-accent);
	background: var(--gm-soft);
}

.gm-entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.gm-entry-content th,
.gm-entry-content td {
	padding: 12px;
	border: 1px solid var(--gm-line);
	text-align: left;
}

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

.gm-post-card {
	overflow: hidden;
	border: 1px solid var(--gm-line);
	border-radius: 18px;
	background: var(--gm-white);
	box-shadow: var(--gm-shadow-sm);
}

.gm-post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--gm-soft);
}

.gm-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.gm-post-card:hover .gm-post-card__image img {
	transform: scale(1.04);
}

.gm-post-card__body {
	padding: 25px;
}

.gm-post-card__body h2 {
	margin-bottom: 12px;
	font-size: 1.35rem;
}

.gm-post-card__body p {
	color: var(--gm-muted);
	font-size: 0.9rem;
}

.gm-pagination {
	margin-top: 50px;
}

.gm-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.gm-pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 12px;
	border: 1px solid var(--gm-line);
	border-radius: 10px;
}

.gm-pagination .current,
.gm-pagination a:hover {
	border-color: var(--gm-accent-dark);
	background: var(--gm-accent-dark);
	color: var(--gm-white);
}

.gm-empty-state {
	padding: 80px 0;
	text-align: center;
}

.gm-empty-state p {
	color: var(--gm-muted);
}

/* Reveal animation */
.gm-js-ready .gm-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease var(--gm-delay, 0ms), transform 650ms cubic-bezier(.2, .65, .25, 1) var(--gm-delay, 0ms);
}

.gm-js-ready .gm-reveal--delay {
	--gm-delay: 110ms;
}

.gm-js-ready .gm-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
	:root {
		--gm-header-offset: 118px;
	}

	.gm-navbar__inner {
		gap: 24px;
	}

	.gm-menu {
		gap: 16px;
	}

	.gm-menu > li > a {
		font-size: 0.8rem;
	}

	.gm-navbar__cta {
		padding-inline: 17px;
	}

	.gm-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(370px, 0.74fr);
		gap: 70px;
	}

	.gm-floating-card--rating {
		left: -35px;
	}

	.gm-floating-card--location {
		right: -18px;
	}
}

@media (max-width: 1020px) {
	:root {
		--gm-header-offset: 104px;
	}

	.gm-topbar__hours {
		display: none;
	}

	.gm-topbar__inner {
		justify-content: center;
	}

	.gm-navbar__inner {
		min-height: 70px;
	}

	.gm-brand-image--header {
		width: 195px;
	}

	.gm-menu-toggle {
		display: grid;
		width: 46px;
		height: 46px;
		place-items: center;
		padding: 0;
		margin-left: auto;
		border: 1px solid var(--gm-line);
		border-radius: 50%;
		background: var(--gm-white);
		color: var(--gm-dark);
		cursor: pointer;
	}

	.gm-menu-toggle .gm-icon {
		width: 22px;
		height: 22px;
	}

	.gm-menu-toggle__close {
		display: none;
	}

	.gm-menu-toggle[aria-expanded="true"] .gm-menu-toggle__open {
		display: none;
	}

	.gm-menu-toggle[aria-expanded="true"] .gm-menu-toggle__close {
		display: block;
	}

	.gm-navbar__cta {
		display: none;
	}

	.gm-primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1003;
		width: min(88vw, 410px);
		height: 100dvh;
		padding: 115px 30px 35px;
		margin: 0;
		overflow-y: auto;
		background: var(--gm-white);
		box-shadow: -25px 0 60px rgba(3, 17, 25, 0.16);
		transform: translateX(105%);
		transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
	}

	.gm-primary-nav::before {
		position: absolute;
		top: 24px;
		left: 30px;
		width: 190px;
		height: 52px;
		background: url("../images/logo-dark.svg") left center / contain no-repeat;
		content: "";
	}

	.gm-primary-nav.is-open {
		transform: translateX(0);
	}

	.gm-primary-nav .gm-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.gm-primary-nav .gm-menu > li {
		border-bottom: 1px solid var(--gm-line);
	}

	.gm-primary-nav .gm-menu > li > a {
		min-height: 55px;
		font-size: 1rem;
	}

	.gm-primary-nav .gm-menu > li > a::after {
		display: none;
	}

	.gm-primary-nav .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 12px 14px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.gm-mobile-menu-cta {
		display: flex;
		margin-top: 28px;
	}

	.gm-menu-backdrop {
		position: fixed;
		inset: 0;
		z-index: 1002;
		display: block;
		padding: 0;
		border: 0;
		background: rgba(2, 12, 18, 0.58);
		opacity: 0;
		pointer-events: none;
		transition: opacity 250ms ease;
		backdrop-filter: blur(3px);
	}

	.gm-menu-backdrop.is-visible {
		opacity: 1;
		pointer-events: auto;
	}

	.gm-menu-toggle {
		position: relative;
		z-index: 1004;
	}

	.gm-hero {
		min-height: auto;
	}

	.gm-hero__grid {
		grid-template-columns: 1fr;
		gap: 75px;
	}

	.gm-hero__content {
		max-width: 800px;
	}

	.gm-hero h1 {
		font-size: clamp(3.8rem, 10vw, 6.3rem);
	}

	.gm-hero__visual {
		width: min(76vw, 560px);
		justify-self: center;
	}

	.gm-floating-card--rating {
		left: -65px;
	}

	.gm-floating-card--location {
		right: -50px;
	}

	.gm-showcase__grid {
		grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
		gap: 65px;
	}

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

	.gm-products-grid > :last-child,
	.gm-reviews-grid > :last-child {
		grid-column: 1 / -1;
		width: calc(50% - 10px);
		justify-self: center;
	}

	.gm-contact__box {
		grid-template-columns: 1fr;
	}

	.gm-contact__details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-top: 0;
		gap: 0 30px;
	}

	.gm-contact__details > a,
	.gm-contact__details > div {
		border-top: 1px solid rgba(255, 255, 255, 0.13);
	}

	.gm-footer-grid {
		grid-template-columns: 1.1fr repeat(2, 0.7fr);
	}

	.gm-footer-column:last-child {
		grid-column: 2 / 4;
	}
}

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

@media (max-width: 760px) {
	:root {
		--gm-header-offset: 96px;
	}

	.gm-container,
	.gm-entry-content,
	.gm-entry-header,
	.gm-comments-area {
		width: min(calc(100% - 34px), var(--gm-container));
	}

	.gm-section {
		padding: 85px 0;
	}

	.gm-topbar {
		min-height: 32px;
		font-size: 0.7rem;
	}

	.gm-topbar__inner {
		min-height: 32px;
	}

	.gm-topbar__group {
		width: 100%;
		justify-content: center;
		gap: 9px;
	}

	.gm-topbar__group > a:first-child span {
		display: none;
	}

	.gm-navbar__inner {
		min-height: 64px;
	}

	.gm-brand-image--header {
		width: 170px;
	}

	.gm-menu-toggle {
		width: 42px;
		height: 42px;
	}

	.gm-hero {
		padding: 70px 0 90px;
	}

	.gm-hero h1 {
		font-size: clamp(3.25rem, 15vw, 5rem);
	}

	.gm-hero__lead {
		font-size: 1rem;
	}

	.gm-hero__actions,
	.gm-contact__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.gm-hero__actions .gm-button,
	.gm-contact__actions .gm-button {
		width: 100%;
	}

	.gm-hero__proof {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gm-hero__proof > div,
	.gm-hero__proof > div + div {
		padding: 0;
		border: 0;
	}

	.gm-hero__visual {
		width: min(100%, 500px);
	}

	.gm-floating-card--rating {
		top: 7%;
		left: 12px;
		width: 190px;
	}

	.gm-floating-card--location {
		right: 12px;
		bottom: 9%;
	}

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

	.gm-trust-strip__grid > div {
		min-height: 83px;
		border-bottom: 1px solid var(--gm-line);
	}

	.gm-trust-strip__grid > div:first-child {
		border-left: 0;
	}

	.gm-section-heading--split {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.gm-section-heading--split > p {
		font-size: 0.98rem;
	}

	.gm-services-grid,
	.gm-products-grid,
	.gm-reviews-grid,
	.gm-process-grid {
		grid-template-columns: 1fr;
	}

	.gm-service-card {
		min-height: auto;
	}

	.gm-showcase__grid,
	.gm-faq__grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.gm-showcase__image-wrap {
		width: 100%;
		max-height: 650px;
	}

	.gm-products-grid > :last-child,
	.gm-reviews-grid > :last-child {
		grid-column: auto;
		width: auto;
	}

	.gm-product-card,
	.gm-review-card {
		min-height: auto;
	}

	.gm-process-grid {
		border-top: 1px solid var(--gm-line);
	}

	.gm-process-card {
		min-height: 0;
		padding-inline: 0;
	}

	.gm-process-card + .gm-process-card {
		border-top: 1px solid var(--gm-line);
		border-left: 0;
	}

	.gm-process-card__line {
		display: none;
	}

	.gm-faq__intro {
		position: static;
	}

	.gm-contact__box {
		width: min(calc(100% - 24px), var(--gm-container));
		padding: 42px 25px;
		border-radius: 24px;
	}

	.gm-contact__details {
		grid-template-columns: 1fr;
	}

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

	.gm-footer-brand {
		grid-column: 1 / -1;
	}

	.gm-footer-column:last-child {
		grid-column: auto;
	}

	.gm-post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.gm-topbar__group a:nth-of-type(2) span,
	.gm-topbar__group a:nth-of-type(3) span {
		font-size: 0.66rem;
	}

	.gm-topbar__separator {
		height: 11px;
	}

	.gm-primary-nav {
		width: min(92vw, 400px);
		padding-inline: 24px;
	}

	.gm-hero__image-frame {
		border-radius: 25px;
	}

	.gm-hero__image-frame::before {
		inset: 10px;
		border-radius: 18px;
	}

	.gm-hero__image-caption {
		right: 24px;
		bottom: 25px;
		left: 24px;
	}

	.gm-floating-card--rating {
		top: 13px;
		left: 13px;
		width: 172px;
		padding: 13px;
	}

	.gm-floating-card--location {
		right: 13px;
		bottom: 13px;
		padding: 11px 13px;
	}

	.gm-floating-card--location span {
		display: none;
	}

	.gm-trust-strip__grid > div {
		align-items: flex-start;
		justify-content: flex-start;
		font-size: 0.75rem;
		text-align: left;
	}

	.gm-service-card,
	.gm-product-card,
	.gm-review-card {
		padding: 28px 24px;
		border-radius: 18px;
	}

	.gm-showcase__stamp {
		right: 16px;
		bottom: 16px;
		width: 135px;
		height: 135px;
	}

	.gm-showcase__stamp strong {
		font-size: 1.9rem;
	}

	.gm-products__note {
		align-items: flex-start;
		border-radius: 18px;
		text-align: left;
	}

	.gm-accordion__item button {
		padding: 23px 0;
	}

	.gm-accordion__panel p {
		padding-right: 15px;
	}

	.gm-footer-grid {
		grid-template-columns: 1fr;
	}

	.gm-footer-brand,
	.gm-footer-column:last-child {
		grid-column: auto;
	}

	.gm-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.gm-whatsapp-float {
		right: 14px;
		bottom: 14px;
		width: 54px;
		padding: 0;
		justify-content: center;
	}

	.gm-whatsapp-float span {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.gm-js-ready .gm-reveal {
		opacity: 1;
		transform: none;
	}
}

/* Content refinements for native WordPress templates */
.gm-inner-hero .gm-kicker {
	color: var(--gm-accent);
}

.gm-inner-hero > .gm-container > p:not(.gm-kicker):not(.gm-post-meta),
.gm-archive-description,
.gm-post-meta {
	max-width: 720px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, 0.7);
}

.gm-inner-hero--post h1 {
	max-width: 1040px;
	font-size: clamp(2.7rem, 5.7vw, 5.5rem);
}

.gm-inner-hero--404 {
	min-height: min(720px, calc(100svh - var(--gm-header-offset)));
	display: grid;
	place-items: center;
}

.gm-hero__actions--center {
	justify-content: center;
	margin-top: 34px;
}

.gm-featured-image {
	width: min(calc(100% - 48px), 1100px);
	margin: 0 auto clamp(50px, 7vw, 90px);
}

.gm-featured-image img {
	width: 100%;
	max-height: 700px;
	object-fit: cover;
	border-radius: var(--gm-radius);
	box-shadow: var(--gm-shadow);
}

.gm-entry-content > :first-child {
	margin-top: 0;
}

.gm-entry-content h2,
.gm-entry-content h3,
.gm-entry-content h4 {
	margin-top: 1.7em;
	margin-bottom: 0.65em;
}

.gm-entry-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.gm-entry-content h3 {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.gm-entry-content ul,
.gm-entry-content ol {
	padding-left: 1.35rem;
}

.gm-entry-content code {
	padding: 0.12em 0.35em;
	border-radius: 5px;
	background: var(--gm-soft);
	font-size: 0.9em;
}

.gm-entry-content pre {
	overflow-x: auto;
	padding: 24px;
	border-radius: 14px;
	background: var(--gm-dark);
	color: var(--gm-white);
}

.gm-entry-content pre code {
	padding: 0;
	background: transparent;
}

.gm-entry-taxonomy {
	display: grid;
	gap: 8px;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--gm-line);
	color: var(--gm-muted);
	font-size: 0.9rem;
}

.gm-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 35px;
	font-weight: 700;
}

.gm-page-links a,
.gm-page-links > span {
	display: grid;
	min-width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--gm-line);
	border-radius: 9px;
	text-decoration: none;
}

.gm-post-navigation {
	display: grid;
	width: min(calc(100% - 48px), 820px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: clamp(55px, 7vw, 90px) auto 0;
	padding-top: 32px;
	border-top: 1px solid var(--gm-line);
}

.gm-post-navigation > div {
	display: grid;
	gap: 5px;
}

.gm-post-navigation__next {
	text-align: right;
}

.gm-post-navigation span {
	color: var(--gm-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gm-post-navigation a {
	color: var(--gm-ink);
	font-weight: 760;
	line-height: 1.35;
}

.gm-comments-area {
	margin-top: clamp(60px, 7vw, 90px);
	padding-top: 42px;
	border-top: 1px solid var(--gm-line);
}

.gm-comments-title,
.comment-reply-title {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
}

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

.gm-comment-list .children {
	padding-left: 28px;
	list-style: none;
}

.gm-comment-list .comment-body {
	position: relative;
	padding: 24px 0;
	border-top: 1px solid var(--gm-line);
}

.gm-comment-list .comment-meta {
	margin-bottom: 12px;
}

.gm-comment-list .comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 750;
}

.gm-comment-list .avatar {
	border-radius: 50%;
}

.gm-comment-list .comment-metadata {
	margin: 7px 0 0 64px;
	color: var(--gm-muted);
	font-size: 0.78rem;
}

.gm-comment-list .reply {
	margin-top: 12px;
	font-size: 0.82rem;
	font-weight: 750;
}

.comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.comment-form > p {
	margin: 0;
}

.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit,
.comment-form .logged-in-as {
	grid-column: 1 / -1;
}

.comment-form label,
.gm-search-form label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.82rem;
	font-weight: 750;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea,
.gm-search-form input[type="search"] {
	width: 100%;
	min-height: 50px;
	padding: 12px 15px;
	border: 1px solid var(--gm-line);
	border-radius: 10px;
	background: var(--gm-white);
	color: var(--gm-ink);
}

.comment-form textarea {
	min-height: 170px;
	resize: vertical;
}

.comment-form .submit,
.gm-search-form button {
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid var(--gm-dark);
	border-radius: 999px;
	background: var(--gm-dark);
	color: var(--gm-white);
	font-weight: 750;
	cursor: pointer;
}

.comment-form .submit:hover,
.gm-search-form button:hover {
	border-color: var(--gm-accent-dark);
	background: var(--gm-accent-dark);
}

.gm-search-form {
	display: flex;
	width: min(100%, 620px);
	gap: 10px;
	margin: 28px auto 0;
}

.gm-search-form label {
	flex: 1;
	margin: 0;
}

.gm-post-card__body h2 a:hover {
	color: var(--gm-accent-dark);
}

.gm-post-card__body .gm-text-link {
	margin-top: 18px;
}

.gm-post-card__body > p:not(.gm-card-label) {
	margin-bottom: 0;
}

.gm-archive-description p:last-child {
	margin-bottom: 0;
}

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

@media (max-width: 640px) {
	.gm-comment-list .children {
		padding-left: 16px;
	}

	.comment-form,
	.gm-post-navigation {
		grid-template-columns: 1fr;
	}

	.gm-post-navigation__next {
		text-align: left;
	}

	.gm-search-form {
		align-items: stretch;
		flex-direction: column;
	}
}

/* El logotipo de marca original es cuadrado y contiene margen transparente. */
.gm-brand-image--header.gm-brand-image--cropped {
	width: clamp(175px, 14.5vw, 210px);
	height: 78px;
	object-fit: cover;
	object-position: 50% 47%;
}

.gm-brand-image--footer.gm-brand-image--cropped {
	width: 220px;
	height: 96px;
	object-fit: cover;
	object-position: 50% 47%;
}

.gm-brand-image--custom {
	max-height: 72px;
	object-fit: contain;
	object-position: left center;
}

.gm-brand-image--footer.gm-brand-image--custom {
	max-height: 90px;
}

/* Evita que el panel móvil cerrado y los halos decorativos amplíen el lienzo. */
html,
body {
	overflow-x: clip;
}

@supports not (overflow: clip) {
	html,
	body {
		overflow-x: hidden;
	}
}

@media (max-width: 1020px) {
	/* Evita que el filtro de la barra cree un contexto por encima del panel lateral. */
	.gm-navbar {
		backdrop-filter: none;
	}

	.gm-primary-nav::before {
		top: 18px;
		height: 78px;
		background-position: center -52px;
		background-size: 190px 190px;
	}
}

@media (max-width: 1280px) and (min-width: 1021px) {
	.gm-floating-card--rating {
		left: -28px;
	}

	.gm-floating-card--location {
		right: 0;
	}
}

/* Navegación visible y utilizable cuando JavaScript está desactivado. */
@media (max-width: 1020px) {
	html:not(.gm-js) .gm-navbar__inner {
		flex-wrap: wrap;
		padding-block: 12px;
	}

	html:not(.gm-js) .gm-menu-toggle,
	html:not(.gm-js) .gm-menu-backdrop {
		display: none;
	}

	html:not(.gm-js) .gm-primary-nav {
		position: static;
		width: 100%;
		height: auto;
		padding: 8px 0 16px;
		overflow: visible;
		box-shadow: none;
		transform: none;
	}

	html:not(.gm-js) .gm-primary-nav::before {
		display: none;
	}

	html:not(.gm-js) .gm-mobile-menu-cta {
		width: 100%;
	}
}
