/**
 * G2F Design Theme - Custom Styles
 * Supplementary CSS for block theme styling
 */

/* ===================================
   CSS Custom Properties
   =================================== */
:root {
	--g2f-transition: all 0.3s ease;
	--g2f-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--g2f-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--g2f-header-height-rest: 60px;
	--g2f-header-height: var(--g2f-header-height-rest);
	--g2f-header-height-sticky: 52px;
	--g2f-header-edge: 116px;
	--g2f-hero-label-width: 60px;
	--g2f-hero-outer-gutter: 24px;
	--g2f-hero-side-space: calc(var(--g2f-hero-outer-gutter) + var(--g2f-hero-label-width));
	--g2f-home-hero-min-height: 980px;
	--g2f-home-hero-y-padding: clamp(28px, 3.5svh, 44px);
}

/* ===================================
   Global Resets & Base Styles
   =================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

/* Remove gap between header and main content */
header + main,
.site-header + main,
body > .wp-site-blocks > main,
.wp-site-blocks > main {
	padding-top: var(--g2f-header-height, 60px) !important;
	margin-top: 0 !important;
}

/* Hero-first pages sit underneath the fixed header; the header masks the top edge. */
body > .wp-site-blocks > main > :is(
	.g2f-hero,
	.g2f-hero-banner,
	.g2f-hero-about-wrap,
	.g2f-hero-services-wrap,
	.g2f-hero-contact-wrap,
	.g2f-hero-projects-wrap,
	.g2f-hero-project-wrap,
	.g2f-svc-hero
):first-child {
	margin-top: calc(-1 * var(--g2f-header-height, 60px)) !important;
}

/* Some legacy page HTML starts with an inline style block before the hero. */
body > .wp-site-blocks > main > style:first-child + :is(
	.g2f-hero,
	.g2f-hero-banner,
	.g2f-hero-about-wrap,
	.g2f-hero-services-wrap,
	.g2f-hero-contact-wrap,
	.g2f-hero-projects-wrap,
	.g2f-hero-project-wrap,
	.g2f-svc-hero
) {
	margin-top: calc(-1 * var(--g2f-header-height, 60px)) !important;
}

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

/* ===================================
   Typography - Bold/Light Weight Mixing
   =================================== */
/* Ensure strong tags within headings render as bold */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong,
.wp-block-heading strong {
	font-weight: 700;
}

/* Ensure paragraphs with strong tags render properly */
p strong {
	font-weight: 700;
}

/* ===================================
   Container Constraints for Large Screens
   =================================== */
/* All main sections - full width background with centered content */
@media (min-width: 1300px) {
	.g2f-about-section,
	.g2f-services-zigzag,
	.g2f-portfolio-split,
	.g2f-projects-grid-section,
	.g2f-testimonials,
	main > section.wp-block-group:not(.g2f-hero):not(.g2f-hero-banner):not(.g2f-project-body) {
		padding-left: calc((100vw - 1218px) / 2) !important;
		padding-right: calc((100vw - 1218px) / 2) !important;
	}
}

/* Fallback padding on medium screens */
@media (min-width: 1024px) and (max-width: 1299px) {
	.g2f-about-section,
	.g2f-services-zigzag,
	.g2f-portfolio-split,
	.g2f-projects-grid-section,
	.g2f-testimonials,
	main > section.wp-block-group:not(.g2f-hero):not(.g2f-hero-banner):not(.g2f-project-body) {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

/* ===================================
   Button Styles
   =================================== */
.wp-block-button__link,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--g2f-transition);
}

.wp-block-button__link:hover,
.wp-element-button:hover {
	transform: translateY(-2px);
}

/* =========================================
   BUTTON VARIÁCIÓK — szögletes, site editorban választható
   ========================================= */

/* Alap WP gomb — lekerekített (pill) */
.wp-block-button__link {
	border-radius: 100px !important;
}

/* G2F Outline — fekete keret, fekete szöveg → hover: teli fekete */
.is-style-g2f-outline .wp-block-button__link {
	background: transparent !important;
	color: #000 !important;
	border: 1.5px solid #000 !important;
	border-radius: 100px !important;
	padding: 13px 26px !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	transition: background 0.2s, color 0.2s;
}
.is-style-g2f-outline .wp-block-button__link:hover {
	background: #000 !important;
	color: #fff !important;
}

/* G2F Solid — teli fekete → hover: outline */
.is-style-g2f-solid .wp-block-button__link {
	background: #000 !important;
	color: #fff !important;
	border: 1.5px solid #000 !important;
	border-radius: 100px !important;
	padding: 13px 26px !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	transition: background 0.2s, color 0.2s;
}
.is-style-g2f-solid .wp-block-button__link:hover {
	background: transparent !important;
	color: #000 !important;
}

/* G2F Outline White — fehér keret+szöveg (sötét bg-re) */
.is-style-g2f-outline-white .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
	border: 1.5px solid #fff !important;
	border-radius: 100px !important;
	padding: 13px 26px !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	transition: background 0.2s, color 0.2s;
}
.is-style-g2f-outline-white .wp-block-button__link:hover {
	background: #fff !important;
	color: #000 !important;
}

/* G2F Solid White — teli fehér (sötét bg-re) */
.is-style-g2f-solid-white .wp-block-button__link {
	background: #fff !important;
	color: #000 !important;
	border: 1.5px solid #fff !important;
	border-radius: 100px !important;
	padding: 13px 26px !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	transition: background 0.2s, color 0.2s;
}
.is-style-g2f-solid-white .wp-block-button__link:hover {
	background: transparent !important;
	color: #fff !important;
}

/* G2F Ghost — keret nélkül, csak szöveg + border-bottom hover */
.is-style-g2f-ghost .wp-block-button__link {
	background: transparent !important;
	color: #000 !important;
	border: none !important;
	border-bottom: 1px solid #000 !important;
	border-radius: 0 !important;
	padding: 4px 0 !important;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	transition: opacity 0.2s;
}
.is-style-g2f-ghost .wp-block-button__link:hover {
	opacity: 0.5 !important;
}

/* ===================================
   Button with Arrow — CSS-only icon
   Arrow is a ::after pseudo-element; no wp:html block needed.
   =================================== */
.g2f-button-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 24px;
	border: 1px solid var(--wp--preset--color--black);
	border-radius: 100px;
	font-family: var(--wp--preset--font-family--inter);
	font-weight: 600;
	font-size: 16px;
	color: var(--wp--preset--color--black);
	text-decoration: none;
	transition: var(--g2f-transition);
}

.g2f-button-arrow p {
	margin: 0;
}

/* Arrow icon via CSS — no wp:html block needed */
.g2f-button-arrow::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease, background-image 0.3s ease;
}

.g2f-button-arrow:hover {
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
}

.g2f-button-arrow:hover::after {
	transform: translateX(4px);
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Small variant used in service rows */
.g2f-button-arrow--sm::after {
	width: 16px;
	height: 16px;
}

/* Ensure <a> tags inside g2f-button-arrow always inherit color */
.g2f-button-arrow a,
.g2f-button-arrow p a {
	color: inherit !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.g2f-button-arrow:hover a,
.g2f-button-arrow:hover p a {
	color: var(--wp--preset--color--white) !important;
}

/* Hide any leftover inline SVGs (from old wp:html blocks still in page content) */
.g2f-button-arrow > svg,
.g2f-button-arrow .wp-block-html svg {
	display: none;
}

/* Light variant for dark backgrounds */
.g2f-button-arrow-light {
	border-color: var(--wp--preset--color--white) !important;
	color: var(--wp--preset--color--white);
}

.g2f-button-arrow-light::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.g2f-button-arrow-light a {
	color: inherit;
}

.g2f-button-arrow-light:hover {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
}

.g2f-button-arrow-light:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.g2f-button-arrow-light:hover a {
	color: var(--wp--preset--color--black);
}

/* ===================================
   Navigation Styles
   =================================== */
.wp-block-navigation {
	gap: 32px;
}

.wp-block-navigation-item__content {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--g2f-transition);
}

.wp-block-navigation-item__content:hover,
.current-menu-item .wp-block-navigation-item__content {
	font-weight: 800;
}

/* ===================================
   Header Styles
   =================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	will-change: box-shadow, height, padding;
	transition: box-shadow 0.35s ease, height 0.35s ease, padding 0.35s ease, background-color 0.35s ease;
	transform: translateZ(0); /* GPU compositing — no flash */
	backface-visibility: hidden;
}

.site-header > .g2f-header-shell {
	padding-left: var(--g2f-header-edge) !important;
	padding-right: var(--g2f-header-edge) !important;
}

/* Header inner container - logo left | nav absolute center | cta right */
.site-header > .wp-block-group,
.g2f-header-inner {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	position: relative !important;
	width: 100% !important;
	height: var(--g2f-header-height, 60px) !important;
	box-sizing: border-box !important;
	transition: height 0.35s ease, padding 0.35s ease;
}

/* Minden közvetlen WP wrapper is flex+center+nowrap */
.g2f-header-inner > .wp-block-group,
.g2f-header-inner > div {
	display: flex !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
}

.g2f-header-nav {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	pointer-events: none;
	z-index: 1;
}

.g2f-header-nav > * {
	pointer-events: auto;
}

.g2f-header-cta {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	align-self: center !important;
}

/* Header element transitions for smooth shrinking */
.site-header .wp-block-site-logo {
	transition: transform 0.3s ease;
}

.site-header .wp-block-site-logo img {
	transition: width 0.3s ease, height 0.3s ease;
}

.site-header .wp-block-navigation-item__content {
	transition: font-size 0.3s ease, color 0.3s ease;
}

/* CTA button in header */
.site-header .has-black-border-color {
	transition: padding 0.3s ease;
}

.site-header .has-black-border-color p {
	transition: font-size 0.3s ease;
}

.site-header .has-black-border-color svg {
	transition: width 0.3s ease, height 0.3s ease;
}

/* Sticky state — csak vizuális változás, position már fixed */
.site-header.is-sticky {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

/* Admin bar offset when logged in */
.admin-bar .site-header {
	top: 32px;
	/* Extend white background up to cover the gap between viewport and admin bar */
	box-shadow: 0 -32px 0 0 #fff;
}

/* Admin bar: header is pushed down by 32px, so hero wrap needs extra compensation */
/* Admin bar pushes header down 32px — hero wrap needs extra compensation */
.admin-bar .g2f-hero-about-wrap {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
@media screen and (max-width: 782px) {
	.admin-bar .g2f-hero-about-wrap {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}

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

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

/* Shrunk sticky state */
.site-header.is-sticky > .wp-block-group,
.site-header.is-sticky .g2f-header-inner {
	height: var(--g2f-header-height-sticky, 52px) !important;
}

.site-header.is-sticky > .wp-block-group {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.site-header.is-sticky .wp-block-site-logo,
.site-header.is-sticky .g2f-logo-link {
	width: 88px !important;
	height: 33px !important;
	flex-basis: 88px !important;
}

.site-header.is-sticky .wp-block-site-logo img {
	width: 80px !important;
	height: auto !important;
}

.site-header.is-sticky .g2f-logo-link img {
	width: 88px !important;
	height: 33px !important;
}

.site-header.is-sticky .has-black-border-color {
	padding: 8px 18px !important;
}

.site-header.is-sticky .has-black-border-color p {
	font-size: 12px !important;
}

.site-header.is-sticky .has-black-border-color svg {
	width: 16px !important;
	height: 16px !important;
}

body.header-is-sticky main {
	padding-top: var(--g2f-header-height, 60px) !important;
}

/* ===================================
   Hero Section Styles
   =================================== */
/* ===================================
   Hero Section - Full Width
   =================================== */
.g2f-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: row;
}

/* Full-width hero breakout — works with or without admin bar */
@supports (width: 100dvw) {
	.g2f-hero {
		width: 100%;
	}
}

/* Break out of constrained container if hero is nested */
.g2f-content-container .g2f-hero,
main .g2f-hero {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	max-width: none;
}

/* Hero — full viewport width, break out of ALL WP layout constraints */
.g2f-hero,
.g2f-hero.wp-block-group {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
}

/* Hero wrapper fills the hero — gap:0 eliminates dark strips between strips and cover */
.g2f-hero .g2f-hero-wrapper,
.g2f-hero > .wp-block-group {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100%;
	flex: 1 1 auto !important;
	gap: 0 !important;
}

/* Cover inside wrapper takes remaining space */
.g2f-hero .wp-block-cover {
	flex: 1 1 auto !important;
	min-width: 0;
}

/* Vertical text strip — explicit width to match design spec */
.g2f-vertical-text-strip {
	width: 60px;
	min-width: 60px;
	flex-shrink: 0;
	align-self: stretch;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	position: relative;
	overflow: hidden;
}

.g2f-vertical-text-strip p.g2f-vertical-text,
.g2f-vertical-text-strip .g2f-vertical-text {
	display: block;
	width: 100%;
	min-height: 100%;
	margin: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	text-align: left;
	white-space: nowrap;
}

/* Vertical text strip on left - positioned absolutely */
.g2f-hero > .g2f-vertical-text,
.g2f-hero > .wp-block-group.g2f-vertical-text {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0 !important;
}

.g2f-vertical-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	white-space: nowrap;
}

.g2f-vertical-text p {
	margin: 0;
}

/* Hero cover fills its flex space — no side padding needed (strips are separate flex children) */
.g2f-hero .wp-block-cover {
	flex: 1;
	min-height: var(--g2f-home-hero-min-height);
	padding: 0 !important;
	background-color: #1a1a1a !important;
}

.g2f-hero .wp-block-cover.has-background-dim::before {
	background-color: inherit;
}

.g2f-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: 100%;
	padding: 250px 80px 100px 80px !important;
}

/* Cover image fills the full cover block — no offset needed */
.g2f-hero .wp-block-cover__image-background,
.g2f-hero .wp-block-cover__background {
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
}

/* Hero separator line */
.g2f-hero-separator,
.g2f-hero .wp-block-separator {
	max-width: 489px;
	opacity: 0.5;
}

.g2f-hero-content {
	position: relative;
	z-index: 1;
}

.g2f-hero-title {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 100px;
	font-weight: 400;
	line-height: 0.94;
	letter-spacing: -4px;
	color: var(--wp--preset--color--white);
}

/* ===================================
   Section Styles
   =================================== */
.g2f-section {
	padding: 100px 0;
}

.g2f-section-light {
	background: var(--wp--preset--color--gray-light);
}

.g2f-section-dark {
	background: var(--wp--preset--color--gray-dark);
	color: var(--wp--preset--color--white);
}

/* G2F Section Block Style */
.is-style-g2f-section {
	padding: 100px 351px;
}

/* ===================================
   Card Styles
   =================================== */
.is-style-g2f-card {
	background: var(--wp--preset--color--white);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--g2f-transition);
}

.is-style-g2f-card:not(.g2f-hero-banner):hover {
	box-shadow: var(--g2f-shadow-lg);
	transform: translateY(-4px);
}

/* ===================================
   Project Grid Styles
   =================================== */
.g2f-project-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.g2f-project-card[hidden] {
	display: none !important;
}

/* Project image placeholder (shown until real images are added) */
.g2f-project-image-placeholder {
	width: 100%;
	aspect-ratio: 386 / 316;
	border-radius: 0;
	background-color: #e8e8e8;
	transition: transform 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.g2f-project-image-placeholder span {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #aaa;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.g2f-project-card:hover .g2f-project-image-placeholder {
	transform: scale(1.02);
}

/* Projects Grid Section */
.g2f-projects-grid-section h2 {
	font-weight: 400;
}

.g2f-projects-grid-section h2 strong {
	font-weight: 700;
}

/* Project card filter animation - handled by projects-grid-section override */

/* ===================================
   Service Card Styles
   =================================== */
.g2f-service-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.g2f-service-image {
	width: 100%;
	aspect-ratio: 609 / 500;
	object-fit: cover;
	border-radius: 8px;
}

.g2f-service-title {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 32px;
	font-weight: 700;
	color: var(--wp--preset--color--black);
}

.g2f-service-number {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 32px;
	font-weight: 700;
	color: var(--wp--preset--color--black);
	opacity: 0.2;
}

/* ===================================
   Testimonial Styles
   =================================== */
/* Hide non-active slides via class (JS toggles is-active) */
/* ===================================
   Testimonials Section — Carousel
   =================================== */
.g2f-testimonials {
	background: #f5f5f5;
	padding: 100px 151px;
	text-align: center;
}

.g2f-testimonials__header {
	margin-bottom: 56px;
}

.g2f-testimonials__title {
	font-family: var(--wp--preset--font-family--inter);
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 400;
	line-height: 1;
	color: #000;
	margin: 0 0 20px;
}

.g2f-testimonials__subtitle {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 16px;
	line-height: 1.5;
	color: #777;
	max-width: 600px;
	margin: 0 auto;
}

.g2f-testimonial-carousel {
	max-width: 680px;
	margin: 0 auto;
}

.g2f-testimonial-track {
	position: relative;
	min-height: 280px;
}

.g2f-testimonial {
	display: none;
	text-align: center;
	animation: g2f-fade-in 0.4s ease;
}

.g2f-testimonial.active {
	display: block;
}

@keyframes g2f-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.g2f-testimonial__quote {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	margin: 0 0 20px;
}

.g2f-testimonial__body {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 15px;
	line-height: 1.65;
	color: #666;
	max-width: 520px;
	margin: 0 auto 32px;
}

.g2f-testimonial__avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.g2f-avatar-initials {
	color: #fff;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.g2f-testimonial__name {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin: 0 0 4px;
}

.g2f-testimonial__role {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 14px;
	color: #888;
	margin: 0;
}

/* Dots */
.g2f-testimonial-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 36px;
}

.g2f-testimonial-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.3s ease, transform 0.3s ease;
}

.g2f-testimonial-dot.active {
	background: #000;
	transform: scale(1.4);
}

/* ===================================
   Footer Styles
   =================================== */
.g2f-footer {
	background: var(--wp--preset--color--gray-dark);
	color: var(--wp--preset--color--white);
	padding: 100px 351px 16px;
}

.g2f-footer a {
	color: var(--wp--preset--color--white);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.g2f-footer a:hover {
	opacity: 0.7;
}

.g2f-footer-title {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 100px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -4px;
}

.g2f-footer-nav {
	display: flex;
	gap: 32px;
}

.g2f-footer-nav a {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 24px;
	letter-spacing: -0.24px;
}

.g2f-footer-social {
	display: flex;
	flex-direction: column;
	gap: 40px;
	text-align: right;
}

.g2f-footer-social a {
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 24px;
	letter-spacing: -0.24px;
}

.g2f-footer-contact {
	display: flex;
	gap: 16px;
	align-items: center;
	font-family: var(--wp--preset--font-family--roboto);
	font-size: 20px;
	letter-spacing: -0.2px;
}

.g2f-footer-bottom {
	background: var(--wp--preset--color--gray-dark);
	padding: 24px 0;
	text-align: center;
}

.g2f-footer-copyright {
	font-family: var(--wp--preset--font-family--inter);
	font-size: 16px;
	color: var(--wp--preset--color--text-footer);
}

/* ===================================
   Image Styles
   =================================== */
.is-style-g2f-rounded img {
	border-radius: 8px;
}

/* About Section Image */
.g2f-about-image {
	border-radius: 8px;
	overflow: hidden;
}

.g2f-about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===================================
   Utility Classes
   =================================== */
.g2f-text-center {
	text-align: center;
}

.g2f-text-right {
	text-align: right;
}

.g2f-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.g2f-gap-8 { gap: 8px; }
.g2f-gap-16 { gap: 16px; }
.g2f-gap-24 { gap: 24px; }
.g2f-gap-32 { gap: 32px; }
.g2f-gap-48 { gap: 48px; }

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1440px) {
	.is-style-g2f-section {
		padding: 80px 100px;
	}

	.g2f-footer {
		padding: 80px 100px 16px;
	}

	.g2f-hero-title {
		font-size: 80px;
	}

	.g2f-footer-title {
		font-size: 80px;
	}

	.g2f-services-zigzag {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}

	.g2f-projects-grid-section {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}

	.g2f-portfolio-split {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}

	.g2f-testimonials {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}
}

@media (max-width: 1024px) {
	.g2f-hero-title {
		font-size: 60px;
	}

	.g2f-footer-title {
		font-size: 60px;
	}

	.is-style-g2f-section {
		padding: 60px 40px;
	}

	.g2f-footer {
		padding: 60px 40px 16px;
	}

	.g2f-footer-nav {
		flex-wrap: wrap;
	}

	.g2f-services-zigzag {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}

	.g2f-projects-grid-section {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}

	.g2f-portfolio-split {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}

	.g2f-testimonials {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}

	/* Services section responsive */
	.g2f-service-row .wp-block-column {
		flex-basis: 50% !important;
	}

	/* Portfolio split responsive */
	.g2f-portfolio-heading p {
		font-size: 52px !important;
	}

	/* About section responsive */
	.g2f-vertical-text-right {
		display: none;
	}
}

@media (max-width: 768px) {
	.g2f-hero-title {
		font-size: 40px;
		letter-spacing: -2px;
	}

	.g2f-footer-title {
		font-size: 40px;
		letter-spacing: -2px;
	}

	.is-style-g2f-section {
		padding: 40px 20px;
	}

	.g2f-footer {
		padding: 40px 20px 16px;
		text-align: center;
	}

	.g2f-footer-nav {
		flex-direction: column;
		gap: 12px;
		justify-content: center;
	}

	.g2f-section {
		padding: 60px 0;
	}

	.g2f-services-zigzag {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-projects-grid-section {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-projects-grid-section h2 {
		font-size: 40px !important;
	}

	.g2f-portfolio-split {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-testimonials {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-footer-social {
		text-align: center;
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}

	.g2f-footer-contact {
		flex-wrap: wrap;
		justify-content: center;
	}

	.wp-block-navigation-item__content {
		font-size: 16px;
	}

	/* Services section mobile - stack vertically */
	.g2f-service-row {
		flex-direction: column !important;
	}

	.g2f-service-row .wp-block-column {
		flex-basis: 100% !important;
		width: 100%;
	}

	.g2f-service-row h3 {
		font-size: 36px !important;
	}

	.g2f-services-zigzag h2 {
		font-size: 40px !important;
	}

	/* Portfolio split mobile - stack */
	.g2f-portfolio-split .wp-block-columns {
		flex-direction: column !important;
	}

	.g2f-portfolio-split .wp-block-column {
		flex-basis: 100% !important;
		width: 100%;
	}

	.g2f-portfolio-heading p {
		font-size: 40px !important;
	}

	/* About section mobile */
	.g2f-about-section .wp-block-columns {
		flex-direction: column !important;
	}

	.g2f-about-section .wp-block-column {
		flex-basis: 100% !important;
		width: 100%;
	}

	.g2f-about-section h2 {
		font-size: 40px !important;
	}

	/* Testimonials mobile */
	.g2f-testimonials h2,
	.g2f-testimonials-dark h2 {
		font-size: 40px !important;
	}
}

@media (max-width: 480px) {
	.g2f-hero-title {
		font-size: 32px;
	}

	.g2f-footer-title {
		font-size: 32px;
	}
}

/* ===================================
   Section Container Padding (Desktop Default)
   =================================== */
.g2f-services-zigzag,
.g2f-projects-grid-section,
.g2f-portfolio-split,
.g2f-testimonials {
	padding-left: 151px !important;
	padding-right: 151px !important;
}

/* ===================================
   Services Zig-Zag Layout
   =================================== */
.g2f-services-zigzag {
	position: relative;
}

/* Remove all gaps between service rows */
.g2f-services-zigzag > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Keep gap only for header section */
.g2f-services-zigzag > .wp-block-group:first-child {
	margin-bottom: 60px !important;
}

/* Typography - Bold/Light weight mixing (matching About Us section) */
.g2f-services-zigzag h2 {
	font-weight: 400 !important;
}

.g2f-services-zigzag h2 strong {
	font-weight: 700 !important;
	font-style: italic;
}

/* Service titles - lighter weight like About Us */
.g2f-services-zigzag h3 {
	font-weight: 400 !important;
	font-family: var(--wp--preset--font-family--inter);
}

/* Service description paragraphs */
.g2f-services-zigzag .g2f-service-row p {
	font-weight: 400;
	font-family: var(--wp--preset--font-family--roboto);
}

.g2f-services-zigzag .g2f-service-row p strong {
	font-weight: 700 !important;
}

/* Hide service numbers (01, 02, 03) */
.g2f-services-zigzag .g2f-service-row .wp-block-group > p:first-child {
	display: none !important;
}

.g2f-service-number {
	display: none !important;
}

.g2f-service-row {
	align-items: center;
	margin-bottom: 0 !important;
}

/* Remove gaps between service rows - images touching vertically */
.g2f-services-zigzag .wp-block-columns.g2f-service-row {
	gap: 0 !important;
	margin-bottom: 0 !important;
}

.g2f-services-zigzag .wp-block-columns + .wp-block-columns {
	margin-top: 0 !important;
}

/* Force both columns to exactly 50% width for diagonal corner alignment */
.g2f-services-zigzag .g2f-service-row > .wp-block-column {
	flex-basis: 50% !important;
	width: 50% !important;
	padding: 0 !important;
}

/* Padding on inner wrapper instead to preserve column width */
.g2f-services-zigzag .g2f-service-row > .wp-block-column.is-vertically-aligned-center > .wp-block-group {
	padding: 40px 60px;
}

.g2f-service-image-large {
	width: 100%;
	min-height: 400px;
	overflow: hidden;
	margin: 0 !important;
}

.g2f-service-image-large img {
	border-radius: 0 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 400px;
}

/* ===================================
   Portfolio Split Layout
   =================================== */
.g2f-portfolio-split {
	position: relative;
}

.g2f-portfolio-heading {
	display: flex;
	flex-direction: column;
}

.g2f-portfolio-heading p {
	margin: 0;
	padding: 0;
}

.g2f-portfolio-heading strong {
	font-weight: 700;
}

.g2f-portfolio-content {
	display: flex;
	flex-direction: column;
}

/* Bold text in portfolio content paragraphs */
.g2f-portfolio-content p strong {
	font-weight: 700;
	color: var(--wp--preset--color--black);
}

/* Solid button style for Solutions */
.g2f-portfolio-content .wp-block-group.has-black-background-color {
	transition: var(--g2f-transition);
}

.g2f-portfolio-content .wp-block-group.has-black-background-color:hover {
	background: var(--wp--preset--color--white) !important;
}

.g2f-portfolio-content .wp-block-group.has-black-background-color:hover p {
	color: var(--wp--preset--color--black) !important;
}

.g2f-portfolio-content .wp-block-group.has-black-background-color:hover svg path {
	stroke: var(--wp--preset--color--black);
}

/* ===================================
   About Section - Raw HTML layout (no WP columns)
   =================================== */
.g2f-about-section {
	position: relative;
	overflow: visible;
	padding: 100px 116px 100px 116px !important;
	background: #fff;
}

.g2f-about-inner {
	display: flex;
	flex-direction: row;
	gap: 72px;
	align-items: center;
	width: 100%;
	max-width: 960px;
	position: relative;
}

.g2f-about-image-col {
	flex: 0 0 36%;
	max-width: 36%;
}

.g2f-about-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	border-radius: 0;
	object-fit: cover;
	object-position: center top;
}

/* Global section label — small uppercase above headings */
.g2f-section-label {
	display: block;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 4px;
}

.g2f-about-text-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.g2f-about-heading {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: clamp(28px, 4vw, 60px);
	font-weight: 400;
	line-height: 1.15;
	margin: 0;
	color: #000;
}

.g2f-about-heading strong {
	font-weight: 700;
}

.g2f-about-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.g2f-about-body p {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 20px;
	line-height: 1.75;
	font-weight: 400;
	color: #222;
	margin: 0;
}

.g2f-about-body .g2f-about-muted {
	color: #666;
}

.g2f-btn-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	border: 1px solid #000;
	border-radius: 100px !important;
	padding: 12px 22px;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.g2f-btn-arrow:hover {
	background: #000;
	color: #fff;
}

.g2f-btn-arrow:hover svg path {
	stroke: #fff;
}

.g2f-about-label {
	position: absolute;
	right: -100px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	transform-origin: center center;
	white-space: nowrap;
	color: #000;
	opacity: 0.12;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	pointer-events: none;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
}

@media (max-width: 1200px) {
	.g2f-about-section {
		padding: 60px 60px !important;
	}
}

@media (max-width: 1024px) {
	.g2f-about-section {
		padding: 60px 40px !important;
	}
	.g2f-about-inner {
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.g2f-about-section {
		padding: 48px 24px !important;
	}
	.g2f-about-inner {
		flex-direction: column;
	}
	.g2f-about-image-col {
		flex: none;
		max-width: 100%;
		width: 100%;
	}
	.g2f-about-img {
		height: 260px;
	}
	.g2f-about-label {
		display: none;
	}
}

/* ===================================
   Testimonials Light Theme
   =================================== */
.g2f-testimonials {
	background: var(--wp--preset--color--gray-light);
}

.g2f-testimonials .g2f-testimonial-text {
	color: var(--wp--preset--color--text-muted);
}

/* Light theme testimonial dots */
.g2f-testimonials .g2f-testimonial-dot {
	background: var(--wp--preset--color--border-light);
}

.g2f-testimonials .g2f-testimonial-dot.active {
	background: var(--wp--preset--color--black);
}

/* ===================================
   Testimonials Dark Theme (legacy support)
   =================================== */
.g2f-testimonials-dark {
	background: var(--wp--preset--color--gray-dark);
}

.g2f-testimonials-dark .g2f-testimonial-text {
	color: rgba(255, 255, 255, 0.7);
}

/* Dark theme testimonial dots */
.g2f-testimonial-dot-dark {
	background: rgba(255, 255, 255, 0.3);
}

.g2f-testimonial-dot-dark.active {
	background: var(--wp--preset--color--white);
}

/* Text color helper for dark backgrounds */
.has-text-light-color {
	color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Animation Classes
   =================================== */
.g2f-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.g2f-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.g2f-slide-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.g2f-slide-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.g2f-slide-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.g2f-slide-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Stagger animation delay */
.g2f-stagger-1 { transition-delay: 0.1s; }
.g2f-stagger-2 { transition-delay: 0.2s; }
.g2f-stagger-3 { transition-delay: 0.3s; }
.g2f-stagger-4 { transition-delay: 0.4s; }
.g2f-stagger-5 { transition-delay: 0.5s; }
.g2f-stagger-6 { transition-delay: 0.6s; }

/* ===================================
   Responsive Content Container
   =================================== */
.g2f-content-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: clamp(20px, 5vw, 151px);
	padding-right: clamp(20px, 5vw, 151px);
}

/* Full-width sections break out of content container */
.g2f-content-container .g2f-testimonials,
.g2f-content-container .g2f-testimonials-dark,
.g2f-content-container .g2f-portfolio-split,
.g2f-content-container .g2f-about-section {
	margin-left: calc(-1 * clamp(20px, 5vw, 151px));
	margin-right: calc(-1 * clamp(20px, 5vw, 151px));
	width: calc(100% + 2 * clamp(20px, 5vw, 151px));
}

/* Responsive adjustments for content container */
@media (max-width: 1440px) {
	.g2f-content-container {
		padding-left: clamp(20px, 5vw, 100px);
		padding-right: clamp(20px, 5vw, 100px);
	}

	.g2f-content-container .g2f-testimonials,
	.g2f-content-container .g2f-testimonials-dark,
	.g2f-content-container .g2f-portfolio-split,
	.g2f-content-container .g2f-about-section {
		margin-left: calc(-1 * clamp(20px, 5vw, 100px));
		margin-right: calc(-1 * clamp(20px, 5vw, 100px));
		width: calc(100% + 2 * clamp(20px, 5vw, 100px));
	}
}

@media (max-width: 1024px) {
	.g2f-content-container {
		padding-left: clamp(20px, 4vw, 60px);
		padding-right: clamp(20px, 4vw, 60px);
	}

	.g2f-content-container .g2f-testimonials,
	.g2f-content-container .g2f-testimonials-dark,
	.g2f-content-container .g2f-portfolio-split {
		margin-left: calc(-1 * clamp(20px, 4vw, 60px));
		margin-right: calc(-1 * clamp(20px, 4vw, 60px));
		padding-left: clamp(20px, 4vw, 60px) !important;
		padding-right: clamp(20px, 4vw, 60px) !important;
		width: calc(100% + 2 * clamp(20px, 4vw, 60px));
	}
}

@media (max-width: 768px) {
	.g2f-content-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.g2f-content-container .g2f-testimonials,
	.g2f-content-container .g2f-testimonials-dark,
	.g2f-content-container .g2f-portfolio-split,
	.g2f-content-container .g2f-about-section {
		margin-left: -20px;
		margin-right: -20px;
		width: calc(100% + 40px);
	}
}


/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.g2f-back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	width: 48px;
	height: 48px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.g2f-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.g2f-back-to-top:hover {
	background: #333;
}

/* ==========================================================================
   Hero Banner — Inner Pages
   ========================================================================== */

.g2f-hero-banner .g2f-hero-wrapper {
	width: 100%;
}

.g2f-hero-banner .g2f-hero-banner-cover {
	flex: 1 1 auto;
}

/* ==========================================================================
   CTA Divider
   ========================================================================== */

.g2f-cta-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.g2f-cta-divider--dark {
	background: #000;
}

.g2f-cta-divider--light {
	background: #f9f9f9;
	border-top: 1px solid #e8e8e8;
}

.g2f-cta-divider h2 {
	max-width: 640px;
}

/* ==========================================================================
   Project Info Sidebar
   ========================================================================== */

.g2f-project-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.g2f-project-meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
}

.g2f-project-meta-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.g2f-project-meta-label {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.g2f-project-meta-value {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4;
}

.g2f-project-meta-item--link {
	border-bottom: none;
	padding-top: 8px;
}

.g2f-btn--outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.g2f-btn--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

/* ==========================================================================
   Single Project Layout
   ========================================================================== */

.g2f-single-project .g2f-project-sidebar__inner {
	position: sticky;
	top: calc(var(--wp--preset--spacing--header-height, 80px) + 24px);
}

/* ==========================================================================
   Service Hero Variations
   ========================================================================== */

/* UX/UI — dark navy */
.g2f-service-hero--ux .g2f-vertical-text-strip {
	background-color: #fff !important;
}

/* Art Direction — yellow: vertical strip is black */
.g2f-service-hero--art .g2f-vertical-text-strip {
	background-color: #000 !important;
}

/* Photography — concrete dark */
.g2f-service-hero--photo .g2f-vertical-text-strip {
	background-color: #fff !important;
}

/* ==========================================================================
   Service Projects Grid (PHP Pattern)
   ========================================================================== */

.g2f-projects-section .g2f-section-header {
	margin-bottom: 48px;
}

.g2f-projects-section .g2f-section-title {
	font-family: 'Inter', sans-serif;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.1;
	margin: 0;
}

.g2f-projects-section .g2f-section-title em {
	font-style: italic;
}

.g2f-projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.g2f-project-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.g2f-project-card__image {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4/3;
	position: relative;
}

.g2f-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.g2f-project-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.g2f-project-card:hover .g2f-project-card__overlay {
	opacity: 1;
}

.g2f-explore-link {
	color: #fff;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transform: translateY(8px);
	transition: transform 0.35s ease;
}

.g2f-project-card:hover .g2f-explore-link {
	transform: translateY(0);
}

.g2f-project-card:hover .g2f-project-card__image img {
	transform: scale(1.03);
}

.g2f-project-card__info {
	padding-top: 16px;
}

.g2f-project-card__title {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 6px;
	line-height: 1.3;
}

.g2f-project-card__cat {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #666;
}

.g2f-see-more-wrap {
	text-align: center;
	margin-top: 48px;
}
.g2f-see-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #000;
	border-radius: 100px;
	padding: 12px 28px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #000;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.g2f-see-more-btn:hover { background: #000; color: #fff; }

.g2f-load-more-wrap {
	text-align: center;
	margin-top: 48px;
}

.g2f-no-projects {
	font-family: 'Inter', sans-serif;
	color: #666;
	font-size: 16px;
}

.g2f-single-project .wp-block-post-content,
.g2f-project-default-content {
	max-width: 720px;
}

.g2f-single-project .wp-block-post-content p,
.g2f-project-default-content p {
	margin: 0 0 22px;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(15px, 0.9vw, 17px);
	line-height: 1.75;
	color: #161616;
}

.g2f-project-default-content {
	margin-top: 22px;
}

/* ==========================================================================
   Responsive: Project Grid + Single Project
   ========================================================================== */

@media (max-width: 1024px) {
	.g2f-projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.g2f-projects-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.g2f-single-project .g2f-project-sidebar__inner {
		position: static;
	}

	.g2f-back-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	.g2f-cta-divider {
		flex-direction: column;
		gap: 32px;
	}

	/* Project body content — stack columns on mobile */
	.g2f-project-body {
		padding-left: 20px !important;
		padding-right: 20px !important;
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}

	.g2f-project-body .wp-block-columns {
		flex-direction: column !important;
		gap: 40px !important;
	}

	.g2f-project-body .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	/* Project navigation — mobile padding */
	.g2f-project-nav {
		padding-left: 20px !important;
		padding-right: 20px !important;
		flex-direction: column !important;
		gap: 16px;
	}

	/* Related Projects section — mobile padding and single column */
	.g2f-related-projects {
		padding-left: 20px !important;
		padding-right: 20px !important;
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}

	.g2f-related-projects .wp-block-query .wp-block-post-template {
		grid-template-columns: 1fr !important;
	}

	/* Hero project — reduce padding on mobile */
	.g2f-hero-project {
		min-height: 300px !important;
	}
}

/* ==========================================================================
   Services Page — Detailed Service Blocks
   ========================================================================== */

/* Service heading typography: "UX/UI Design." — light + bold mix */
.g2f-service-heading {
	font-weight: 400 !important;
	margin-bottom: 20px !important;
}

.g2f-service-heading strong {
	font-weight: 700 !important;
}

.g2f-service-heading em {
	font-style: italic;
}

/* Subheading */
.g2f-service-subheading {
	margin-bottom: 20px !important;
}

/* Detail row columns */
.g2f-service-detail-row {
	align-items: stretch;
}

/* Service detail image — fills column height */
.g2f-service-detail-img {
	margin: 0 !important;
	height: 100%;
}

.g2f-service-detail-img img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

/* Arrow list — replaces default disc bullets with › */
.g2f-arrow-list {
	list-style: none !important;
	padding-left: 0 !important;
	margin-left: 0 !important;
}

.g2f-arrow-list li {
	padding-left: 22px !important;
	position: relative;
}

.g2f-arrow-list li::before {
	content: '›';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2em;
	font-weight: 700;
	line-height: inherit;
	color: var(--wp--preset--color--black);
}

/* Services intro section */
.g2f-intro-divider {
	opacity: 0.15 !important;
}

.g2f-intro-service-list {
	list-style: none !important;
	padding-left: 0 !important;
	margin: 12px 0 24px 0 !important;
}

.g2f-intro-service-list li {
	padding-left: 20px;
	position: relative;
	font-weight: 500;
}

.g2f-intro-service-list li::before {
	content: '›';
	position: absolute;
	left: 0;
	font-weight: 700;
	font-size: 1.1em;
}

/* Services intro image */
.g2f-services-intro-img {
	margin: 0 !important;
}

.g2f-services-intro-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 400px;
	display: block;
}

/* Services hero title — italic variants */
.g2f-services-hero-title em {
	font-style: italic;
}

.g2f-services-hero-title strong {
	font-weight: 800 !important;
}

/* Responsive: service blocks */
@media (max-width: 1440px) {
	.g2f-service-block {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}

	.g2f-services-intro-section {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}

	.g2f-cta-divider {
		padding-left: 100px !important;
		padding-right: 100px !important;
	}
}

@media (max-width: 1024px) {
	.g2f-service-block {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}

	.g2f-services-intro-section {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
}

@media (max-width: 768px) {
	.g2f-service-block {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-services-intro-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-service-detail-row {
		flex-direction: column !important;
	}

	.g2f-service-detail-row .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	.g2f-service-detail-img img {
		min-height: 280px;
	}

	.g2f-services-intro-img img {
		min-height: 280px;
	}
}


/* ===================================================================
   CONTACT PAGE
   =================================================================== */

/* Hero — contact variant */
.g2f-service-hero--contact .wp-block-cover {
	background-color: #111 !important;
}

/* Contact section layout */
.g2f-contact-section {
	max-width: 1440px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Info labels */
.g2f-contact-section a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.g2f-contact-section a:hover {
	opacity: 0.6;
}

/* Form wrapper */
.g2f-contact-form-wrap {
	background: #fff;
}

/* CF7 form styling */
.g2f-contact-form-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.g2f-contact-form-wrap .wpcf7-form p {
	margin: 0;
}

.g2f-contact-form-wrap .wpcf7-form label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 8px;
	font-family: var(--wp--preset--font-family--roboto, 'Roboto', sans-serif);
}

.g2f-contact-form-wrap .wpcf7-form input[type="text"],
.g2f-contact-form-wrap .wpcf7-form input[type="email"],
.g2f-contact-form-wrap .wpcf7-form input[type="tel"],
.g2f-contact-form-wrap .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 14px 16px;
	font-size: 15px;
	font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
	color: #000;
	background: #fafafa;
	transition: border-color 0.2s ease, background 0.2s ease;
	outline: none;
}

.g2f-contact-form-wrap .wpcf7-form input:focus,
.g2f-contact-form-wrap .wpcf7-form textarea:focus {
	border-color: #000;
	background: #fff;
}

.g2f-contact-form-wrap .wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}

.g2f-contact-form-wrap .wpcf7-form input[type="submit"] {
	background: #000;
	color: #fff;
	border: 1px solid #000;
	border-radius: 100px;
	padding: 16px 32px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	width: auto;
	align-self: flex-start;
}

.g2f-contact-form-wrap .wpcf7-form input[type="submit"]:hover {
	background: #fff;
	color: #000;
}

/* Validation */
.wpcf7-not-valid-tip {
	font-size: 12px;
	color: #c00;
	margin-top: 4px;
	display: block;
}

.wpcf7-response-output {
	margin-top: 16px !important;
	padding: 12px 16px !important;
	border-radius: 2px !important;
	font-size: 14px !important;
	border: 1px solid !important;
}

/* Logo wordmark styling */
.wp-block-site-logo img,
.wp-block-site-logo svg {
	height: 32px;
	width: auto;
}

/* ===================================================================
   RESPONSIVE — Contact & inner pages
   =================================================================== */

@media (max-width: 1200px) {
	.g2f-contact-section {
		padding-left: 80px !important;
		padding-right: 80px !important;
	}
}

@media (max-width: 768px) {
	.g2f-contact-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-contact-form-wrap {
		padding: 24px !important;
	}

	.g2f-contact-section .wp-block-columns {
		flex-direction: column;
	}

	.g2f-contact-section .wp-block-column {
		flex-basis: 100% !important;
	}
}


/* ===================================================================
   SERVICE ROWS — Alternating image/content layout (homepage)
   =================================================================== */

.g2f-services-rows {
	overflow: hidden;
}

.g2f-services-header {
	padding: 100px 116px 100px;
	text-align: center;
}

.g2f-services-title {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 60px;
	font-weight: 400;
	line-height: 1.1;
	color: #000;
	margin: 0 0 20px 0;
}

.g2f-services-title strong {
	font-weight: 700;
	font-style: normal;
}

.g2f-services-subtitle {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin: 0 auto;
	max-width: 620px;
}

@media (max-width: 1024px) {
	.g2f-services-header {
		padding: 60px 40px 40px;
	}
	.g2f-services-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.g2f-services-header {
		padding: 48px 24px 32px;
	}
	.g2f-services-title {
		font-size: 28px;
	}
}

.g2f-service-row {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	min-height: unset;
	border-bottom: 1px solid #f0f0f0;
}

.g2f-service-row:last-child {
	border-bottom: none;
}

/* Image column — 45%, square aspect ratio */
.g2f-service-row__image {
	flex: 0 0 45% !important;
	width: 45% !important;
	min-width: 0;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	align-self: stretch;
}

.g2f-service-row__image .wp-block-image {
	height: 100%;
	margin: 0 !important;
	display: block;
}

.g2f-service-row__image .wp-block-image img,
.g2f-service-row__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Content column — takes up 55% */
.g2f-service-row__content {
	flex: 0 0 55% !important;
	width: 55% !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	gap: 20px !important;
}

/* Szöveg mindig az oldal közepe felé igazítva */
/* img-right → szöveg bal oldalon → jobbra igazítva (közepe felé) */
.g2f-service-row--img-right .g2f-service-row__content {
	padding-left: 80px !important;
	padding-right: 80px !important;
	align-items: flex-end !important;
	text-align: right !important;
}

/* img-left → szöveg jobb oldalon → balra igazítva (közepe felé) */
.g2f-service-row--img-left .g2f-service-row__content {
	padding-left: 80px !important;
	padding-right: 80px !important;
	align-items: flex-start !important;
	text-align: left !important;
}

/* Button igazítás soronként */
.g2f-service-row--img-right .g2f-button-arrow--sm {
	align-self: flex-end !important;
}
.g2f-service-row--img-left .g2f-button-arrow--sm {
	align-self: flex-start !important;
}

/* Button size variant */
.g2f-button-arrow--sm {
	align-self: flex-start !important;
}

/* Hero right strip — same width as left strip */
.g2f-vertical-text-strip--right {
	flex-shrink: 0;
	width: 60px;
	min-width: 60px;
}

/* ===================================================================
   RESPONSIVE — Service rows
   =================================================================== */

@media (max-width: 900px) {
	.g2f-service-row {
		flex-direction: column !important;
		min-height: auto;
	}

	.g2f-service-row--img-right {
		flex-direction: column-reverse !important;
	}

	.g2f-service-row__image,
	.g2f-service-row__content {
		flex: 0 0 100% !important;
		width: 100% !important;
	}

	.g2f-service-row__image {
		min-height: 280px;
	}

	.g2f-service-row--img-right .g2f-service-row__content,
	.g2f-service-row--img-left .g2f-service-row__content {
		padding: 40px 24px !important;
	}
}


/* ===================================================================
   ABOUT PAGE
   =================================================================== */

.g2f-about-intro,
.g2f-about-body,
.g2f-founder-section {
	max-width: 1440px;
	margin-left: auto !important;
	margin-right: auto !important;
}

.g2f-about-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 480px;
	display: block;
}

.g2f-about-lead strong {
	font-weight: 700;
}

.g2f-founder-card {
	display: flex;
	align-items: center;
	gap: 16px;
}

.g2f-founder-avatar img {
	border-radius: 100px;
	object-fit: cover;
}

.g2f-founder-quote {
	font-style: italic;
}

/* About hero title italic */
.g2f-about-hero-title em {
	font-style: italic;
}

/* Hero banner shared styles (Services + About) */
.g2f-hero-banner .wp-block-cover {
	flex: 1;
}

/* ===================================================================
   RESPONSIVE — About
   =================================================================== */

@media (max-width: 900px) {
	.g2f-about-intro .wp-block-columns {
		flex-direction: column;
	}

	.g2f-about-intro .wp-block-column {
		flex-basis: 100% !important;
	}

	.g2f-about-portrait img {
		min-height: 320px;
	}

	.g2f-about-intro,
	.g2f-about-body,
	.g2f-founder-section {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* =========================================
   PORTFOLIO SPLIT SECTION
   ========================================= */
.g2f-portfolio-split {
	background: #f5f5f5;
	padding: 100px 0;
}

.g2f-portfolio-inner {
	display: flex;
	flex-direction: row;
	gap: 80px;
	align-items: center;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding: 0 151px;
	box-sizing: border-box;
}

.g2f-portfolio-left {
	flex: 0 0 45%;
}

.g2f-portfolio-heading {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: clamp(40px, 4.5vw, 68px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -1.5px;
	margin: 0;
	color: #000;
}

.g2f-portfolio-heading strong {
	font-weight: 700;
}

.g2f-portfolio-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.g2f-portfolio-right p {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin: 0;
}

.g2f-btn-solid {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: #000;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 14px 24px;
	border-radius: 100px;
	border: 1.5px solid #000;
	margin-top: 12px;
	transition: background 0.2s, color 0.2s;
}

.g2f-btn-solid:hover {
	background: #000;
	color: #fff;
}

@media (max-width: 1024px) {
	.g2f-portfolio-split {
		padding: 80px 0;
	}
	.g2f-portfolio-inner {
		gap: 48px;
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.g2f-portfolio-inner {
		flex-direction: column;
	}
	.g2f-portfolio-left {
		flex: none;
	}
}

/* =========================================
   PROJECTS GRID SECTION — heading size fix
   ========================================= */
.g2f-projects-grid-section h2.wp-block-heading {
	font-size: clamp(32px, 3.5vw, 52px) !important;
}

/* "See More Work" button — pill */

/* =========================================
   CLIENTS SECTION
   ========================================= */
.g2f-clients-section {
	background: #fff;
	padding: 100px 151px;
	text-align: center;
}

.g2f-clients-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.g2f-clients-heading {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: clamp(40px, 4vw, 60px);
	font-weight: 700;
	color: #000;
	margin: 0 0 24px 0;
	line-height: 1.1;
}

.g2f-dot {
	color: #3355ff;
}

.g2f-clients-sub {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin: 0 0 56px 0;
}

.g2f-clients-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 56px;
	justify-content: center;
	align-items: center;
}

.g2f-client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.g2f-client-logo img {
	max-height: 48px;
	max-width: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.65;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.g2f-client-logo img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.g2f-client-logo--text {
	min-height: 40px;
	padding: 4px 0;
}

.g2f-client-logo__text {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #111;
	white-space: nowrap;
	opacity: 0.82;
}

@media (max-width: 768px) {
	.g2f-clients-section {
		padding: 60px 24px;
	}
	.g2f-clients-logos {
		gap: 24px 32px;
	}
}

/* =========================================
   CTA BAR + FOOTER
   ========================================= */
/* CTA Bar Section (standalone, no footer) */
.g2f-cta-bar-section {
	background: #0d0d0d;
	padding: 80px 0;
}

.g2f-cta-bar-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 151px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

/* Legacy CTA footer (cta-divider.php old version) */
.g2f-cta-footer {
	background: #0d0d0d;
	padding: 80px 0 56px;
}

.g2f-cta-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 151px;
}

.g2f-cta-bar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-bottom: 56px;
}

.g2f-cta-bar__heading {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(36px, 4.5vw, 64px);
	font-weight: 400;
	color: #fff;
	line-height: 1.05;
	margin: 0 0 12px 0;
}

.g2f-cta-bar__heading strong {
	font-weight: 700;
}

.g2f-cta-bar__sub {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #aaa;
	margin: 0;
}

.g2f-btn-outline-white {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 14px 24px;
	border-radius: 100px;
	border: 1.5px solid #fff;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
	flex-shrink: 0;
}

.g2f-btn-outline-white:hover {
	background: #fff;
	color: #000;
}

.g2f-btn-outline-white:hover span,
.g2f-btn-outline-white:hover svg {
	color: #000;
}

.g2f-btn-outline-white:hover svg path {
	stroke: #000;
}

.g2f-cta-divider-line {
	border-top: 1px solid #333;
	margin-bottom: 40px;
}

.g2f-footer-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

.g2f-footer-nav,
.g2f-footer-social {
	display: flex;
	gap: 28px;
}

.g2f-footer-nav a,
.g2f-footer-social a {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #ccc;
	text-decoration: none;
	transition: color 0.2s;
}

.g2f-footer-nav a:hover,
.g2f-footer-social a:hover {
	color: #fff;
}

.g2f-footer-center {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 13px;
	color: #aaa;
	flex-direction: column;
}

.g2f-footer-center a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.2s;
}

.g2f-footer-center a:hover {
	color: #fff;
}

.g2f-footer-sep {
	color: #555;
}

@media (max-width: 1024px) {
	.g2f-cta-footer {
		padding: 60px 0 40px;
	}
	.g2f-cta-inner {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.g2f-cta-bar {
		flex-direction: column;
		align-items: flex-start;
	}
	.g2f-footer-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.g2f-cta-footer {
		padding: 48px 0 32px;
	}
	.g2f-cta-inner {
		padding: 0 24px;
	}
}

/* =========================================================
   ABOUT PAGE — new sections (page-about.html)
   ========================================================= */

/* INTRO — image left + text right */
.g2f-about-page-intro {
	background: #fff;
	padding: 48px 116px 80px;
}
.g2f-about-page-intro__inner {
	display: flex;
	gap: 64px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}
.g2f-about-page-intro__image {
	flex: 0 0 38%;
}
.g2f-about-page-intro__image img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}
.g2f-about-page-intro__text {
	flex: 1;
	padding-top: 8px;
}
.g2f-about-page-intro__lead {
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.55;
	font-weight: 400;
	font-style: italic;
	color: #000;
	margin-bottom: 24px;
}
.g2f-about-page-intro__text p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 16px;
}

/* COPY SECTION */
.g2f-about-page-body {
	background: #fff;
	padding: 0 116px 80px;
}
.g2f-about-page-body__inner {
	max-width: 860px;
}
.g2f-about-page-body p {
	font-size: 14px;
	line-height: 1.85;
	color: #555;
	margin-bottom: 18px;
}
.g2f-about-page-body__cta-text {
	font-weight: 700 !important;
	font-size: 15px !important;
	color: #000 !important;
	margin-top: 8px;
}

/* FOUNDER CARD */
.g2f-about-page-founder {
	background: #fff;
	padding: 24px 116px 80px;
}
.g2f-about-page-founder__inner {
	max-width: 520px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}
.g2f-about-page-founder__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 6px;
}
.g2f-about-page-founder__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.g2f-about-page-founder__name {
	font-size: 16px;
	font-weight: 600;
	color: #000;
}
.g2f-about-page-founder__role {
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #999;
}
.g2f-about-page-founder__divider {
	width: 100%;
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 16px 0;
}
.g2f-about-page-founder__quote {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	font-style: normal;
	text-align: center;
	max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
	.g2f-about-page-intro,
	.g2f-about-page-body,
	.g2f-about-page-founder {
		padding-left: 24px;
		padding-right: 24px;
	}
	.g2f-about-page-intro__inner {
		flex-direction: column;
		gap: 32px;
	}
	.g2f-about-page-intro__image {
		flex: none;
		width: 100%;
	}
}

/* ==========================================================================
   About Page Figma Sync
   ========================================================================== */
.g2f-hero-about-wrap {
	background: #fff;
	padding: 0 116px;
}

.g2f-hero-about-container {
	max-width: 1218px;
	margin: 0 auto;
	padding: 0 0 40px;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: stretch;
	column-gap: 12px;
}

.g2f-hero-about__label-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.g2f-hero-about__label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	min-width: 34px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #111;
	white-space: nowrap;
}

.g2f-hero-about__frame {
	min-width: 0;
	background: #fff;
}

.g2f-hero-about__image {
	position: relative;
	min-height: 0;
	aspect-ratio: 1696 / 404;
	background-color: #d9d9d9;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	width: 100%;
}

.g2f-about-page-intro {
	background: #fff;
	padding: 8px 116px 76px;
}

.g2f-about-page-intro__inner {
	max-width: 1218px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.g2f-about-page-intro__top {
	display: grid;
	grid-template-columns: 300px minmax(0, 470px);
	gap: 72px;
	align-items: start;
	justify-content: center;
}

.g2f-about-page-intro__image {
	width: 100%;
}

.g2f-about-page-intro__image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	object-fit: cover;
	display: block;
}

.g2f-about-page-intro__intro-copy {
	padding-top: 14px;
}

.g2f-about-page-intro__lead {
	margin: 0 0 16px;
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: clamp(19px, 1.4vw, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.62;
	color: #333;
}

.g2f-about-page-intro__supporting-copy {
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
	color: #333;
}

.g2f-about-page-intro__body {
	max-width: 100%;
	margin: 0;
}

.g2f-about-page-intro__body p {
	margin: 0 0 22px;
	font-size: 13px;
	line-height: 1.88;
	color: #333;
}

.g2f-about-page-intro__cta-text {
	margin-top: 8px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	letter-spacing: 0 !important;
	color: #111 !important;
}

.g2f-about-page-founder {
	background: #fff;
	padding: 0 116px 72px;
}

.g2f-about-page-founder__inner {
	max-width: 420px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

.g2f-about-page-founder__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
}

.g2f-about-page-founder__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.g2f-about-page-founder__avatar-fallback {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #111;
}

.g2f-about-page-founder__name {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: #111;
}

.g2f-about-page-founder__role {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: none;
	color: #9a9a9a;
}

.g2f-about-page-founder__divider {
	display: none;
}

.g2f-about-page-founder__quote {
	max-width: 240px;
	margin: 8px 0 0;
	font-size: 11px;
	line-height: 1.55;
	color: #8d8d8d;
}

@media (max-width: 1024px) {
	.g2f-hero-about-wrap,
	.g2f-about-page-intro,
	.g2f-about-page-founder {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.g2f-about-page-intro__top {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 40px;
		justify-content: stretch;
	}
}

@media (max-width: 768px) {
	.g2f-hero-about-wrap {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-hero-about-container {
		grid-template-columns: 22px minmax(0, 1fr);
		padding-bottom: 28px;
		column-gap: 10px;
	}

	.g2f-hero-about__label {
		width: 22px;
		min-width: 22px;
		font-size: 8px;
		letter-spacing: 0.22em;
	}

	.g2f-about-page-intro {
		padding-top: 32px;
		padding-bottom: 56px;
	}

	.g2f-about-page-intro__top {
		grid-template-columns: 1fr;
		gap: 28px;
		justify-content: stretch;
	}

	.g2f-about-page-intro__intro-copy {
		padding-top: 0;
	}

	.g2f-about-page-founder {
		padding-bottom: 56px;
	}
}

/* =========================================================
   SERVICES PAGE — intro section
   ========================================================= */

.g2f-services-intro {
	background: #fff;
	padding: 100px 116px;
}
.g2f-services-intro__inner {
	display: flex;
	gap: 64px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}
.g2f-services-intro__text {
	flex: 0 0 55%;
}
.g2f-services-intro__image {
	flex: 1;
	padding-top: 8px;
}
.g2f-services-intro__image img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}
.g2f-services-intro__lead {
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 1.75;
	color: #333;
	margin-bottom: 16px;
}
.g2f-services-intro__text p {
	font-size: 13px;
	line-height: 1.85;
	color: #666;
	margin-bottom: 14px;
}
.g2f-services-intro__divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 28px 0;
}
.g2f-services-intro__list-label {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	color: #000 !important;
	margin-bottom: 10px !important;
}
.g2f-services-intro__list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.g2f-services-intro__list li {
	font-size: 14px;
	line-height: 2;
	color: #333;
	padding-left: 16px;
	position: relative;
}
.g2f-services-intro__list li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: #999;
}
.g2f-services-intro__footer {
	font-size: 13px !important;
	line-height: 1.75 !important;
	color: #666 !important;
}

@media (max-width: 900px) {
	.g2f-services-intro {
		padding: 60px 32px;
	}
	.g2f-services-intro__inner {
		flex-direction: column;
		gap: 40px;
	}
	.g2f-services-intro__text {
		flex: none;
	}
	.g2f-services-intro__image {
		width: 100%;
	}
}

/* =========================================
   HERO — ABOUT US PAGE
   ========================================= */
.g2f-hero-about-wrap {
	padding-top: 0;
	margin-top: 0;
	background: #fff;
	/* Full-width breakout — force past WP layout constraints */
	width: 100vw !important;
	max-width: 100vw !important;
	position: relative;
	left: 50% !important;
	right: auto;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	box-sizing: border-box;
}

/* Ensure parent containers don't clip the hero breakout */
.site-main,
.wp-block-group.site-main,
.wp-site-blocks,
body {
	overflow-x: clip;
}

.g2f-hero-about-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 116px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.g2f-hero-about__label {
	flex: 0 0 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #000;
	white-space: nowrap;
}

.g2f-hero-about__image {
	flex: 1;
	min-height: 620px;
	position: relative;
	background-color: #1c1c1c;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.g2f-hero-about__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.g2f-hero-about__content {
	position: relative;
	z-index: 2;
	text-align: left;
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.g2f-hero-about__heading {
	font-family: var(--wp--preset--font-family--inter), sans-serif !important;
	font-size: clamp(28px, 3.5vw, 48px) !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	letter-spacing: -0.5px !important;
	color: #ffffff !important;
	margin: 0 0 14px 0 !important;
}

.g2f-hero-about__heading strong {
	font-weight: 700 !important;
	color: #ffffff !important;
}

.g2f-hero-about__sub {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(40px, 6vw, 80px) !important;
	font-weight: 700 !important;
	letter-spacing: 8px !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.3) !important;
	margin: 0 !important;
	opacity: 0.25;
}

@media (max-width: 1024px) {
	.g2f-hero-about-container {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.g2f-hero-about-container {
		padding: 0 20px;
	}
	.g2f-hero-about__label {
		flex: 0 0 22px;
		font-size: 9px;
	}
	.g2f-hero-about__content {
		padding: 36px 20px;
	}
}

/* =========================================
   CTA DIVIDER — COMPACT (Inner Pages)
   ========================================= */
.g2f-cta-compact {
	background: #2d2d2d;
	padding: 48px 0;
}

.g2f-cta-compact__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 151px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.g2f-cta-compact__copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.g2f-cta-compact__text {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(18px, 2.2vw, 28px);
	font-weight: 300;
	color: #fff;
	margin: 0;
	letter-spacing: -0.3px;
	line-height: 1.3;
}

.g2f-cta-compact__text strong {
	font-weight: 700;
}

.g2f-cta-compact__sub {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(12px, 0.78vw, 14px);
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
	margin: 0;
	max-width: 320px;
	opacity: 0.95;
}

.g2f-cta-compact__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 12px 22px;
	border-radius: 100px;
	border: 1.5px solid #fff;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.2s, color 0.2s;
}

.g2f-cta-compact__btn:hover {
	background: #fff;
	color: #000;
}

@media (max-width: 1024px) {
	.g2f-cta-compact__inner {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.g2f-cta-compact__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 24px;
		gap: 20px;
	}
}

/* ============================================================
   Service Sub-pages — Split Hero (.g2f-svc-hero)
   ============================================================ */
.g2f-svc-hero {
	margin-top: 0;
	padding-top: 0;
	background: #fff;
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}
.g2f-svc-hero__container {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	padding: 0 40px;
}
.g2f-svc-hero__breadcrumb {
	flex: 0 0 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px 0;
	background: #fff;
}
.g2f-svc-hero__breadcrumb span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #999;
	white-space: nowrap;
}
.g2f-svc-hero__breadcrumb span.active { color: #000; }
.g2f-svc-hero__breadcrumb .sep {
	font-size: 10px;
	color: #ccc;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.g2f-svc-hero__body {
	flex: 1;
	display: flex;
	flex-direction: row;
	min-height: 420px;
}
.g2f-svc-hero__text {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 60px 60px 40px;
	background: #1a1a2e;
}
.g2f-svc-hero__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin: 0 0 20px 0;
}
.g2f-svc-hero__heading {
	font-size: clamp(28px, 3.5vw, 52px) !important;
	font-weight: 300 !important;
	line-height: 1.15 !important;
	color: #fff !important;
	margin: 0 0 20px 0 !important;
	letter-spacing: -0.5px !important;
}
.g2f-svc-hero__heading strong { font-weight: 700 !important; }
.g2f-svc-hero__heading em { font-style: italic !important; }
.g2f-svc-hero__sub {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	margin: 0;
	max-width: 420px;
}
.g2f-svc-hero__image {
	flex: 1;
	background-size: cover;
	background-position: center;
	background-color: #2a2a40;
	overflow: hidden;
}
.g2f-svc-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 900px) {
	.g2f-svc-hero__body { flex-direction: column; }
	.g2f-svc-hero__text { flex: none; padding: 40px 24px; }
	.g2f-svc-hero__image { min-height: 260px; }
}
@media (max-width: 600px) {
	.g2f-svc-hero__container { padding: 0 12px; }
	.g2f-svc-hero__breadcrumb { flex: 0 0 24px; }
}

/* ============================================================
   Service Sub-pages — Projects Grid
   ============================================================ */
.g2f-svc-projects {
	padding: 80px 40px;
	background: #fff;
}
.g2f-svc-projects__inner {
	max-width: 1400px;
	margin: 0 auto;
}
.g2f-svc-projects__header {
	margin-bottom: 48px;
}
.g2f-svc-projects__title {
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 300;
	color: #000;
	margin: 0;
}
.g2f-svc-projects__title em { font-style: italic; font-weight: 300; }
.g2f-svc-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 48px;
}
.g2f-svc-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}
.g2f-svc-card__image {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: #f0f0f0;
}
.g2f-svc-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.g2f-svc-card:hover .g2f-svc-card__image img { transform: scale(1.04); }
.g2f-svc-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8e8e8;
	font-size: 14px;
	color: #999;
	padding: 20px;
	text-align: center;
}
.g2f-svc-card__info { padding-top: 16px; }
.g2f-svc-card__title {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 6px;
	color: #000;
}
.g2f-svc-card__cat {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #888;
}
.g2f-svc-projects__more { text-align: center; }
@media (max-width: 900px) { .g2f-svc-projects__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g2f-svc-projects__grid { grid-template-columns: 1fr; } .g2f-svc-projects { padding: 48px 20px; } }

/* ============================================================
   CTA — Service pages (dark bg)
   ============================================================ */
.g2f-cta-service {
	background: #111;
	padding: 80px 40px;
	text-align: center;
}
.g2f-cta-service__inner {
	max-width: 700px;
	margin: 0 auto;
}
.g2f-cta-service__heading {
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 300;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.25;
	letter-spacing: -0.5px;
}
.g2f-cta-service__heading strong { font-weight: 700; color: #fff; }
.g2f-cta-service__sub {
	font-size: 15px;
	color: rgba(255,255,255,0.55);
	margin: 0 0 36px;
}
.g2f-cta-service__btn {
	display: inline-block;
	padding: 14px 32px;
	border: 1px solid rgba(255,255,255,0.6);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}
.g2f-cta-service__btn:hover {
	background: #fff;
	color: #111;
	border-color: #fff;
}

/* ============================================================
   Service Page Cover Heroes (wp:cover alignfull)
   ============================================================ */

.g2f-cover-hero .wp-block-cover__inner-container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 116px;
}

.g2f-cover-hero__inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 520px;
	gap: 0;
}

.g2f-cover-hero__label {
	flex: 0 0 28px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-right: 40px;
}

.g2f-cover-hero__content {
	flex: 1;
	padding: 80px 0;
}

.g2f-cover-hero__heading {
	font-size: clamp(32px, 4.5vw, 68px);
	font-weight: 300;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -1px;
	margin: 0 0 16px;
}

.g2f-cover-hero__heading strong {
	font-weight: 700;
}

.g2f-cover-hero__sub {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	margin: 0;
}

.g2f-cover-hero .wp-block-cover__inner-container {
	padding-top: 0;
}

@media (max-width: 768px) {
	.g2f-cover-hero .wp-block-cover__inner-container {
		padding: 0 24px;
	}
	.g2f-cover-hero__label { display: none; }
	.g2f-cover-hero__heading { font-size: clamp(28px, 8vw, 48px); }
}

/* ============================================================
   Micro-interactions & Animations
   ============================================================ */

/* ---- Nav link underlines ---- */
.g2f-header-nav .wp-block-navigation-item__content,
.g2f-header-nav a:not(.wp-block-button__link) {
	position: relative;
}
.g2f-header-nav .wp-block-navigation-item__content::after,
.g2f-header-nav a:not(.wp-block-button__link)::after {
	content: '';
	position: absolute;
	bottom: -3px; left: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.g2f-header-nav .wp-block-navigation-item__content:hover::after,
.g2f-header-nav a:not(.wp-block-button__link):hover::after {
	transform: scaleX(1);
}

/* ---- Button arrow hover ---- */
.g2f-button-arrow,
.g2f-button-arrow-light,
.g2f-btn-arrow,
.g2f-btn-arrow-light {
	cursor: pointer;
	transition: letter-spacing 0.25s ease, color 0.25s ease,
	            border-color 0.25s ease, background 0.25s ease,
	            opacity 0.25s ease;
}

/* ---- Project card hover ---- */
.g2f-project-card {
	cursor: pointer;
}
.g2f-project-card figure,
.g2f-project-card .g2f-project-image-placeholder {
	overflow: hidden;
}
.g2f-project-card figure img {
	transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
	will-change: transform;
}
.g2f-project-card:hover figure img {
	transform: scale(1.05);
}

/* ---- GET IN TOUCH pill ---- */
.g2f-header-cta a,
.g2f-header-cta .wp-block-button__link {
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease !important;
	will-change: transform;
}

.g2f-header-cta .g2f-button-arrow {
	min-width: 156px;
	justify-content: center !important;
	background: transparent !important;
	color: #111 !important;
	border-color: #111 !important;
}

.g2f-header-cta .g2f-button-arrow p,
.g2f-header-cta .g2f-button-arrow a {
	color: #111 !important;
	white-space: nowrap;
}

/* ---- Site logo hover ---- */
.wp-block-site-logo img,
.g2f-nav__logo img {
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.wp-block-site-logo:hover img,
.g2f-nav__logo:hover img {
	transform: scale(1.04);
	opacity: 0.82;
}

/* ---- Testimonial dots ---- */
.g2f-testimonial-dot {
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}
.g2f-testimonial-dot:hover {
	transform: scale(1.35);
}

/* ---- Back to top ---- */
.g2f-back-to-top {
	cursor: pointer;
	transition: transform 0.25s ease, opacity 0.3s ease;
}
.g2f-back-to-top:hover {
	transform: translateY(-4px) scale(1.08);
}

/* ---- Links / interactive elements ---- */
a, button, [role="button"],
.g2f-testimonial-dot {
	cursor: pointer;
}

/* ---- Service rows smooth transition ---- */
.g2f-service-row {
	will-change: transform, opacity;
}

/* ---- Hero word animation container ---- */
.g2f-word {
	vertical-align: bottom;
}


/* ==========================================================================
   RESPONSIVE OVERHAUL — Full Mobile-First Breakpoints
   Generated: 2026-03-22
   Breakpoints: 1280px | 1024px | 900px | 768px | 480px | 320px
   ========================================================================== */

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.g2f-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 200;
	position: relative;
	flex-shrink: 0;
}

.g2f-hamburger__bar {
	display: block;
	width: 24px;
	height: 1.5px;
	background: #000;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
	transform-origin: center;
}

/* Animated X state */
.g2f-hamburger.is-active .g2f-hamburger__bar:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.g2f-hamburger.is-active .g2f-hamburger__bar:nth-child(2) {
	opacity: 0;
	width: 0;
}
.g2f-hamburger.is-active .g2f-hamburger__bar:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.g2f-mobile-overlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.g2f-mobile-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.g2f-mobile-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.g2f-mobile-close span {
	position: absolute;
	width: 24px;
	height: 1.5px;
	background: #000;
	border-radius: 2px;
}

.g2f-mobile-close span:first-child {
	transform: rotate(45deg);
}
.g2f-mobile-close span:last-child {
	transform: rotate(-45deg);
}

.g2f-mobile-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	margin-bottom: 48px;
}

.g2f-mobile-nav a {
	font-family: var(--wp--preset--font-family--roboto, 'Roboto', sans-serif);
	font-size: clamp(28px, 8vw, 42px);
	font-weight: 400;
	letter-spacing: -0.5px;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.g2f-mobile-nav a:hover {
	opacity: 0.45;
}

.g2f-mobile-overlay__cta-link {
	font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	padding: 14px 28px;
	border: 1.5px solid #000;
	border-radius: 100px;
	transition: background 0.2s ease, color 0.2s ease;
}

.g2f-mobile-overlay__cta-link:hover {
	background: #000;
	color: #fff;
}

/* ============================================================
   HEADER — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	/* Show hamburger, hide nav + CTA */
	.g2f-hamburger {
		display: flex !important;
	}

	.g2f-header-nav,
	.g2f-header-cta {
		display: none !important;
	}

	/* Reduce side padding */
	.site-header,
	.site-header > .wp-block-group,
	header.wp-block-group.site-header {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

@media (min-width: 769px) {
	.g2f-hamburger {
		display: none !important;
	}
	.g2f-mobile-overlay {
		display: none !important;
	}
}

@media (max-width: 960px) {
	body .wp-site-blocks > header.wp-block-template-part,
	body header.site-header,
	body header.wp-block-template-part {
		position: relative !important;
		z-index: 1000 !important;
		width: 100% !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	body .g2f-header-shell {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 22px !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	body .g2f-header-inner {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		height: 64px !important;
		min-height: 64px !important;
		margin: 0 !important;
		padding: 0 !important;
		gap: 16px !important;
		overflow: visible !important;
	}

	body .g2f-header-inner .g2f-header-nav,
	body .g2f-header-inner .g2f-header-cta,
	body .g2f-header-nav,
	body .g2f-header-cta,
	body .g2f-header-nav *,
	body .g2f-header-cta *,
	body header.site-header nav.wp-block-navigation,
	body header.site-header .wp-block-navigation__container,
	body header.site-header .wp-block-navigation-item,
	body header.site-header .wp-block-navigation-item__content,
	body header.wp-block-template-part nav.wp-block-navigation,
	body header.wp-block-template-part .wp-block-navigation__container,
	body header.wp-block-template-part .wp-block-navigation-item,
	body header.wp-block-template-part .wp-block-navigation-item__content,
	body .g2f-header-inner nav.wp-block-navigation,
	body .g2f-header-inner .wp-block-navigation__responsive-container,
	body .g2f-header-inner .wp-block-navigation__responsive-container-content {
		position: absolute !important;
		display: none !important;
		visibility: hidden !important;
		width: 0 !important;
		height: 0 !important;
		min-width: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		pointer-events: none !important;
	}

	body .g2f-logo-link {
		display: block !important;
		width: 108px !important;
		height: 42px !important;
		flex: 0 0 108px !important;
		background-image: url("../images/logo.svg") !important;
		background-size: contain !important;
		background-repeat: no-repeat !important;
		background-position: left center !important;
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}

	body .g2f-logo-link img {
		display: block !important;
		width: 108px !important;
		height: auto !important;
		max-width: 108px !important;
	}

	body .g2f-hamburger {
		position: relative !important;
		z-index: 3 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 38px !important;
		height: 38px !important;
		flex: 0 0 38px !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	body .g2f-hamburger__bar {
		width: 20px !important;
		height: 2px !important;
		background: #111 !important;
	}
}

/* Tablet — reduce header side padding */
@media (max-width: 1024px) and (min-width: 769px) {
	.site-header,
	header.wp-block-group.site-header {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

/* ============================================================
   GLOBAL PADDING SCALE
   ============================================================ */

/* Tablet (769–1024px) */
@media (max-width: 1024px) {
	.g2f-services-zigzag,
	.g2f-projects-grid-section,
	.g2f-portfolio-split,
	.g2f-testimonials,
	.g2f-clients-section,
	.g2f-about-section {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.g2f-cta-inner,
	.g2f-portfolio-inner {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
	.g2f-services-zigzag,
	.g2f-projects-grid-section,
	.g2f-portfolio-split,
	.g2f-testimonials,
	.g2f-clients-section,
	.g2f-about-section {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-cta-inner,
	.g2f-portfolio-inner {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-content-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

/* ============================================================
   HERO SECTION — HOMEPAGE
   ============================================================ */

/* Tablet-landscape (769–1024px) */
@media (max-width: 1024px) {
	.g2f-hero .wp-block-cover {
		min-height: 80vh !important;
	}

	.g2f-hero .wp-block-cover__inner-container {
		padding: 160px 60px 80px 60px !important;
	}

	.g2f-hero-title {
		font-size: clamp(48px, 7vw, 80px) !important;
	}
}

/* Tablet portrait + mobile (≤768px) */
@media (max-width: 768px) {
	.g2f-hero .wp-block-cover {
		min-height: 400px !important;
	}

	.g2f-hero .wp-block-cover__inner-container {
		padding: 120px 24px 60px 24px !important;
	}

	.g2f-hero-title {
		font-size: clamp(32px, 10vw, 52px) !important;
		letter-spacing: -2px !important;
	}

	/* Hide decorative vertical text strip on mobile */
	.g2f-vertical-text-strip,
	.g2f-hero > .g2f-vertical-text,
	.g2f-hero > .wp-block-group.g2f-vertical-text {
		display: none !important;
	}

	/* Adjust image offset */
	.g2f-hero .wp-block-cover__image-background,
	.g2f-hero .wp-block-cover__background {
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
	}

	.g2f-hero .wp-block-cover {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
	.g2f-hero .wp-block-cover {
		min-height: 380px !important;
	}

	.g2f-hero-title {
		font-size: clamp(28px, 11vw, 42px) !important;
		letter-spacing: -1.5px !important;
	}
}

/* ============================================================
   SUBPAGE HERO SECTIONS (.g2f-hero-about-wrap / services)
   ============================================================ */
@media (max-width: 1024px) {
	.g2f-hero-about-wrap,
	.g2f-hero-services-wrap {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

@media (max-width: 768px) {
	.g2f-hero-about-wrap,
	.g2f-hero-services-wrap {
		flex-direction: column !important;
		min-height: auto !important;
	}

	.g2f-hero-about-wrap > *,
	.g2f-hero-services-wrap > * {
		width: 100% !important;
		flex-basis: auto !important;
	}

	/* Hide vertical label on mobile subpage heroes */
	.g2f-hero-about__label,
	.g2f-hero-services__label {
		display: none !important;
	}

	.g2f-hero-about__content,
	.g2f-hero-services__content {
		padding: 32px 24px !important;
		min-height: 0 !important;
	}

	.g2f-hero-about__image,
	.g2f-hero-services__image {
		min-height: 240px !important;
		max-height: 280px !important;
	}

	.g2f-hero-about__image img,
	.g2f-hero-services__image img {
		height: 100%;
		object-fit: cover;
	}
}

/* ============================================================
   COVER HERO (generic page cover block)
   ============================================================ */
@media (max-width: 768px) {
	.g2f-cover-hero .wp-block-cover {
		min-height: 50vh !important;
	}

	.g2f-cover-hero .wp-block-cover__inner-container {
		padding: 40px 24px !important;
	}
}

/* ============================================================
   ABOUT SECTION (homepage)
   ============================================================ */
@media (max-width: 768px) {
	.g2f-about-section .wp-block-columns {
		flex-direction: column !important;
		gap: 0 !important;
	}

	.g2f-about-section .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	.g2f-about-image-col,
	.g2f-about-section .g2f-about-image-col {
		order: -1;
	}

	.g2f-about-section h2 {
		font-size: clamp(28px, 8vw, 42px) !important;
	}
}

/* ============================================================
   SERVICES ZIG-ZAG ROWS
   ============================================================ */

/* Tablet (769–1024px): keep side-by-side but reduce padding */
@media (max-width: 1024px) {
	.g2f-services-zigzag .g2f-service-row > .wp-block-column.is-vertically-aligned-center > .wp-block-group {
		padding: 32px 40px !important;
	}

	.g2f-service-image-large,
	.g2f-service-image-large img {
		min-height: 320px !important;
	}
}

/* Mobile (≤768px): stack vertically */
@media (max-width: 768px) {
	.g2f-services-zigzag .g2f-service-row,
	.g2f-services-zigzag .wp-block-columns.g2f-service-row {
		flex-direction: column !important;
	}

	/* Even rows: image first, text second */
	.g2f-services-zigzag .g2f-service-row:nth-child(even) {
		flex-direction: column-reverse !important;
	}

	.g2f-services-zigzag .g2f-service-row > .wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	.g2f-service-image-large,
	.g2f-service-image-large img {
		min-height: 240px !important;
	}

	.g2f-services-zigzag .g2f-service-row > .wp-block-column.is-vertically-aligned-center > .wp-block-group {
		padding: 32px 20px !important;
	}

	/* Override img-right / img-left text alignment on mobile */
	.g2f-service-row--img-right .g2f-service-row__content,
	.g2f-service-row--img-left .g2f-service-row__content {
		padding: 32px 20px !important;
		align-items: flex-start !important;
		text-align: left !important;
	}

	.g2f-service-row--img-right .g2f-button-arrow--sm {
		align-self: flex-start !important;
	}
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */

/* Already covered in file but reinforce with section padding */
@media (max-width: 1024px) {
	.g2f-projects-grid-section {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
}

@media (max-width: 768px) {
	.g2f-projects-grid-section {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}

	.g2f-projects-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
}

/* ============================================================
   PORTFOLIO TEXT SPLIT
   ============================================================ */
@media (max-width: 768px) {
	.g2f-portfolio-inner {
		flex-direction: column !important;
		gap: 32px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-portfolio-left {
		flex: none !important;
		width: 100% !important;
	}

	.g2f-portfolio-heading {
		font-size: clamp(28px, 8vw, 44px) !important;
	}

	.g2f-portfolio-right {
		width: 100% !important;
	}
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
@media (max-width: 768px) {
	.g2f-testimonials,
	.g2f-testimonials-dark {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.g2f-testimonial-carousel,
	.g2f-testimonial-slider {
		padding: 0 !important;
	}

	.g2f-testimonial {
		padding: 24px 20px !important;
	}

	.g2f-testimonial-dots {
		gap: 10px !important;
		margin-top: 20px !important;
	}

	.g2f-testimonial-dot {
		width: 10px !important;
		height: 10px !important;
	}

	.g2f-testimonials h2,
	.g2f-testimonials-dark h2 {
		font-size: clamp(24px, 7vw, 36px) !important;
	}
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
@media (max-width: 768px) {
	.g2f-clients-section {
		padding: 48px 20px !important;
	}

	.g2f-clients-logos {
		gap: 20px 28px !important;
		/* max 3 per row on mobile */
	}

	.g2f-client-logo {
		flex: 0 0 calc(33.333% - 20px);
		max-width: 100px;
	}

	.g2f-clients-heading {
		font-size: clamp(28px, 7vw, 40px) !important;
	}
}

@media (max-width: 480px) {
	.g2f-client-logo {
		flex: 0 0 calc(33.333% - 16px);
	}
}

/* ============================================================
   CTA BAR + FOOTER
   ============================================================ */
@media (max-width: 768px) {
	.g2f-cta-bar {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 20px !important;
	}

	.g2f-cta-bar .g2f-button-arrow,
	.g2f-cta-bar .wp-block-button {
		width: 100%;
	}

	.g2f-cta-bar .wp-block-button__link {
		width: 100%;
		justify-content: center;
	}

	.g2f-cta-inner {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-cta-footer {
		padding: 48px 0 32px !important;
	}

	/* Footer row: stack on mobile */
	.g2f-footer-row {
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 16px !important;
	}

	.g2f-footer-center {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 8px !important;
	}

	.g2f-footer-sep {
		display: none !important;
	}
}

/* CTA bar section full-bleed */
@media (max-width: 1024px) {
	.g2f-cta-bar-section {
		padding: 60px 0 !important;
	}
}

/* ============================================================
   ABOUT PAGE INNER SECTIONS
   ============================================================ */
@media (max-width: 768px) {
	.g2f-about-page-intro,
	.g2f-about-page-body,
	.g2f-about-page-founder {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-about-page-intro__inner {
		flex-direction: column !important;
		gap: 24px !important;
	}

	.g2f-about-page-intro__image {
		flex: none !important;
		width: 100% !important;
	}
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
@media (max-width: 768px) {
	.g2f-services-intro {
		padding: 60px 20px !important;
	}

	.g2f-services-intro__inner {
		flex-direction: column !important;
		gap: 32px !important;
	}

	.g2f-services-intro__text,
	.g2f-services-intro__image {
		flex: none !important;
		width: 100% !important;
	}
}

/* ============================================================
   COVER HERO PAGE
   ============================================================ */
@media (max-width: 768px) {
	.g2f-cover-hero .wp-block-cover__inner-container {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* ============================================================
   GENERAL WP BLOCK COLUMNS — mobile stack fallback
   ============================================================ */
@media (max-width: 768px) {
	/* Stack all block columns that haven't opted out */
	.wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-direction: column !important;
	}

	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
		margin-left: 0 !important;
	}
}

/* ============================================================
   TYPOGRAPHY SCALE — mobile
   ============================================================ */
@media (max-width: 768px) {
	.g2f-services-zigzag h2,
	.g2f-projects-grid-section h2,
	.g2f-portfolio-split h2 {
		font-size: clamp(28px, 8vw, 42px) !important;
	}

	h1 {
		font-size: clamp(28px, 9vw, 48px);
	}

	h2 {
		font-size: clamp(24px, 7vw, 38px);
	}
}

@media (max-width: 480px) {
	.g2f-hero-title {
		font-size: clamp(26px, 11vw, 38px) !important;
	}

	.g2f-footer-title {
		font-size: clamp(28px, 10vw, 40px) !important;
	}
}

/* ============================================================
   SECTION VERTICAL PADDING — tablet/mobile reduction
   ============================================================ */
@media (max-width: 1024px) {
	.g2f-section {
		padding: 80px 0 !important;
	}
}

@media (max-width: 768px) {
	.g2f-section {
		padding: 60px 0 !important;
	}

	/* Reduce section padding across the board */
	.g2f-about-section,
	.g2f-services-zigzag,
	.g2f-testimonials,
	.g2f-testimonials-dark {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
}

/* ============================================================
   STICKY HEADER — white hamburger bar when over dark sections
   ============================================================ */
.site-header.is-sticky .g2f-hamburger__bar {
	background: #000;
}

/* ============================================================
   VERY SMALL SCREENS (≤320px)
   ============================================================ */
@media (max-width: 320px) {
	.g2f-hero .wp-block-cover {
		min-height: 50vh !important;
	}

	.site-header,
	header.wp-block-group.site-header {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
}

/* ==========================================================================
   Projects Grid — Tabs / Filter
   ========================================================================== */
.g2f-projects-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.g2f-tab {
	padding: 8px 20px;
	border: 1px solid #222;
	border-radius: 100px;
	background: transparent;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #222;
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
}
.g2f-tab:hover,
.g2f-tab.active {
	background: #222;
	color: #fff;
}

/* ==========================================================================
   Projects Grid — FINAL OVERRIDE (Figma match)
   ========================================================================== */
section.g2f-projects-grid-section {
	max-width: 1440px;
	margin: 0 auto;
	padding: 80px 40px;
}
section.g2f-projects-grid-section .g2f-projects-heading {
	font-family: 'Inter', sans-serif;
	font-size: 42px;
	font-weight: 300;
	color: #111;
	margin-bottom: 32px;
	line-height: 1.2;
	text-align: center;
}
section.g2f-projects-grid-section .g2f-projects-heading strong {
	font-weight: 700;
}

/* Tabs — centered, pill style */
section.g2f-projects-grid-section .g2f-projects-tabs {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 48px;
	flex-wrap: wrap;
}
section.g2f-projects-grid-section .g2f-tab {
	padding: 9px 22px;
	border: 1.5px solid #222;
	border-radius: 100px;
	background: transparent;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
	color: #222;
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
}
section.g2f-projects-grid-section .g2f-tab:hover,
section.g2f-projects-grid-section .g2f-tab.active {
	background: #222;
	color: #fff;
}

/* Grid — 3 columns, uniform cards */
section.g2f-projects-grid-section .g2f-projects-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 28px !important;
}
section.g2f-projects-grid-section .g2f-project-card {
	width: auto !important;
}
section.g2f-projects-grid-section .g2f-project-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}
section.g2f-projects-grid-section .g2f-project-card__image {
	width: 100%;
	aspect-ratio: 386 / 316;
	overflow: hidden;
	position: relative;
	border-radius: 0;
	margin: 0;
}
section.g2f-projects-grid-section .g2f-project-card__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	transition: transform 0.5s ease;
}
section.g2f-projects-grid-section .g2f-project-card:hover .g2f-project-card__image img {
	transform: scale(1.04);
}
section.g2f-projects-grid-section .g2f-project-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}
section.g2f-projects-grid-section .g2f-project-card:hover .g2f-project-card__overlay {
	opacity: 1;
}
section.g2f-projects-grid-section .g2f-explore-link {
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
section.g2f-projects-grid-section .g2f-project-card__info {
	padding-top: 14px;
}
section.g2f-projects-grid-section .g2f-project-card__title {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 500;
	margin: 0 0 4px;
	line-height: 1.3;
	color: #111;
}
section.g2f-projects-grid-section .g2f-project-card__cat {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #888;
	display: block;
}
section.g2f-projects-grid-section .g2f-see-more-wrap {
	text-align: center;
	margin-top: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
	section.g2f-projects-grid-section .g2f-projects-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 600px) {
	section.g2f-projects-grid-section .g2f-projects-grid {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}
	section.g2f-projects-grid-section {
		padding: 48px 20px;
	}
	section.g2f-projects-grid-section .g2f-projects-heading {
		font-size: 28px;
	}
}

/* Legacy direct vertical text support. */
.g2f-hero > .wp-block-group.g2f-vertical-text,
.g2f-hero > .g2f-vertical-text {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	transform: none !important;
	display: block !important;
	height: 100% !important;
	text-align: left !important;
}
p.g2f-vertical-text {
	writing-mode: vertical-rl !important;
	text-orientation: mixed !important;
	transform: rotate(180deg) !important;
}

/* ==========================================================================
   Homepage Figma Sync — final overrides
   ========================================================================== */
.g2f-hero {
	background: #fff;
}

.g2f-hero .g2f-hero-wrapper {
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
	align-items: stretch;
	width: 100% !important;
	min-height: calc(100svh - var(--g2f-header-height, 60px)) !important;
	padding: 0 0 var(--g2f-home-hero-y-padding) 0 !important;
	margin-bottom: 0 !important;
	box-sizing: border-box;
	background: #fff;
}

.g2f-hero .g2f-hero-cover {
	grid-column: 2;
	min-width: 0;
}

.g2f-hero .wp-block-cover {
	height: calc(100svh - var(--g2f-header-height, 60px) - var(--g2f-home-hero-y-padding)) !important;
	min-height: 0 !important;
	padding: 0 !important;
}

.g2f-hero .wp-block-cover__inner-container {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	padding: 0 0 54px 0 !important;
	box-sizing: border-box;
}

.g2f-hero .g2f-hero-content-wrap {
	width: 100%;
	max-width: 560px;
	padding: 0 0 0 68px !important;
	box-sizing: border-box;
}

.g2f-hero .g2f-hero-eyebrow {
	margin: 0 0 10px;
	opacity: 0.82;
}

.g2f-hero .g2f-hero-title {
	max-width: 560px;
	margin: 0;
	font-size: clamp(48px, 5vw, 72px) !important;
	font-weight: 300 !important;
	line-height: 0.92 !important;
	letter-spacing: -2.5px !important;
	text-align: left !important;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.g2f-hero .g2f-hero-title strong {
	font-weight: 700;
}

.g2f-hero .g2f-hero-separator {
	max-width: 340px;
	margin-top: 24px !important;
	margin-bottom: 20px !important;
	margin-left: 0 !important;
}

.g2f-hero .g2f-hero-description {
	max-width: 400px;
	margin: 0;
	font-size: 14px !important;
	line-height: 1.45 !important;
	text-align: left !important;
	opacity: 0.92;
}

.g2f-hero .g2f-vertical-text-strip {
	width: 60px !important;
	min-width: 60px !important;
	display: flex !important;
	align-items: stretch !important;
	justify-content: stretch !important;
	align-self: stretch !important;
	padding: 0 !important;
	background: #fff !important;
	overflow: visible !important;
}

.g2f-hero .g2f-vertical-text-strip--right {
	grid-column: 3;
}

.g2f-hero .g2f-vertical-text-strip:not(.g2f-vertical-text-strip--right) {
	grid-column: 1;
}

.g2f-hero .g2f-vertical-text-strip .g2f-vertical-text {
	position: static !important;
	left: auto !important;
	bottom: auto !important;
	width: 100% !important;
	min-height: 100% !important;
	margin: 0 !important;
	transform: rotate(180deg) !important;
	text-align: left !important;
	font-size: 24px !important;
	letter-spacing: 0.16em !important;
	line-height: 1 !important;
}

.g2f-about-section {
	padding: 100px 116px !important;
}

.g2f-about-inner {
	max-width: 1218px;
	margin: 0 auto;
	gap: 60px;
	align-items: center;
}

.g2f-about-image-col {
	flex: 0 0 34%;
	max-width: 34%;
}

.g2f-about-img {
	aspect-ratio: 1 / 1.06;
}

.g2f-about-text-col {
	max-width: 560px;
	gap: 24px;
}

.g2f-about-heading {
	font-size: clamp(40px, 4.6vw, 60px);
	line-height: 1.02;
	letter-spacing: -1.5px;
}

.g2f-about-body {
	gap: 18px;
}

.g2f-about-body p {
	font-size: 20px;
	line-height: 1.55;
}

.g2f-about-label {
	right: -74px;
	top: 50%;
	font-size: 18px;
	letter-spacing: 0.02em;
	text-transform: none;
	opacity: 0.28;
}

.g2f-services-rows {
	padding: 0 116px 100px;
}

.g2f-services-header {
	max-width: 760px;
	margin: 0 auto;
	padding: 100px 0 60px;
}

.g2f-services-title {
	font-size: clamp(40px, 4.6vw, 60px);
	line-height: 1.05;
	letter-spacing: -1.5px;
	margin-bottom: 18px;
}

.g2f-services-subtitle {
	max-width: 720px;
}

.g2f-service-row {
	max-width: 1218px;
	margin: 0 auto;
	border-bottom: none;
}

.g2f-service-row + .g2f-service-row {
	margin-top: 24px;
}

.g2f-service-row__image {
	flex: 0 0 47% !important;
	width: 47% !important;
	aspect-ratio: 1.28 / 1;
}

.g2f-service-row__content {
	flex: 0 0 53% !important;
	width: 53% !important;
	gap: 14px !important;
}

.g2f-service-row--img-left .g2f-service-row__content,
.g2f-service-row--img-right .g2f-service-row__content {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
	align-items: flex-start !important;
	text-align: left !important;
}

.g2f-service-row--img-left .g2f-service-row__content {
	padding-left: 36px !important;
	padding-right: 0 !important;
}

.g2f-service-row--img-right .g2f-service-row__content {
	padding-left: 0 !important;
	padding-right: 36px !important;
}

.g2f-service-row__content .wp-block-heading {
	font-size: 32px !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
	letter-spacing: -1px !important;
}

.g2f-service-row__content > p:first-of-type {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.g2f-service-row__content > p:nth-of-type(2) {
	font-size: 15px !important;
	line-height: 1.65 !important;
}

.g2f-service-row .g2f-button-arrow--sm {
	align-self: flex-start !important;
	padding: 8px 16px !important;
}

.g2f-service-row .g2f-button-arrow--sm {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	min-width: 0 !important;
	background: transparent !important;
	color: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
}

.g2f-service-row .g2f-button-arrow--sm p,
.g2f-service-row .g2f-button-arrow--sm a {
	color: #111 !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
}

.g2f-service-row .g2f-button-arrow--sm:hover {
	background: #111 !important;
	color: #fff !important;
}

.g2f-service-row .g2f-button-arrow--sm:hover p,
.g2f-service-row .g2f-button-arrow--sm:hover a {
	color: #fff !important;
}

.g2f-portfolio-split {
	padding: 100px 0;
}

.g2f-portfolio-inner {
	max-width: 1218px;
	padding: 0 116px;
	gap: 72px;
	align-items: flex-start;
}

.g2f-portfolio-heading {
	font-size: clamp(44px, 4.8vw, 66px);
	line-height: 1.04;
	letter-spacing: -1.4px;
}

.g2f-portfolio-right {
	padding-top: 4px;
}

section.g2f-projects-grid-section {
	max-width: 1218px;
	padding: 100px 116px;
}

section.g2f-projects-grid-section .g2f-projects-heading {
	font-size: clamp(36px, 4.4vw, 52px);
	font-weight: 300;
	margin-bottom: 22px;
}

section.g2f-projects-grid-section .g2f-projects-tabs {
	gap: 20px;
	margin-bottom: 42px;
}

section.g2f-projects-grid-section .g2f-tab {
	padding: 0 0 4px;
	border: none;
	border-bottom: 1px solid transparent;
	border-radius: 0;
	background: transparent;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8b8b8b;
}

section.g2f-projects-grid-section .g2f-tab:hover,
section.g2f-projects-grid-section .g2f-tab.active {
	background: transparent;
	color: #111;
	border-bottom-color: #111;
}

section.g2f-projects-grid-section .g2f-projects-grid {
	gap: 22px !important;
}

section.g2f-projects-grid-section .g2f-project-card,
section.g2f-projects-grid-section .g2f-project-card__link {
	visibility: visible !important;
}

section.g2f-projects-grid-section .g2f-project-card__info {
	padding-top: 12px;
	text-align: center;
}

section.g2f-projects-grid-section .g2f-project-card__title {
	font-size: 16px;
	margin-bottom: 3px;
}

section.g2f-projects-grid-section .g2f-project-card__cat {
	font-size: 10px;
	letter-spacing: 0.08em;
}

.g2f-testimonials {
	padding: 100px 116px;
}

.g2f-testimonials__header {
	max-width: 760px;
	margin: 0 auto 28px;
}

.g2f-testimonials__title {
	font-size: clamp(40px, 4.6vw, 60px);
	line-height: 1.06;
}

.g2f-testimonials__subtitle {
	max-width: 620px;
	margin: 0 auto;
}

.g2f-clients-section {
	padding: 100px 116px;
}

.g2f-clients-inner {
	max-width: 1218px;
}

.g2f-clients-heading {
	font-size: clamp(40px, 4.6vw, 60px);
	margin-bottom: 18px;
}

.g2f-clients-sub {
	margin-bottom: 40px;
}

.g2f-clients-logos {
	gap: 28px 36px;
}

.g2f-footer {
	max-width: none !important;
}

.g2f-footer > .wp-block-group {
	max-width: 1218px !important;
	margin: 0 auto;
}

@media (max-width: 1024px) {
	.g2f-about-section,
	.g2f-services-rows,
	.g2f-clients-section,
	.g2f-testimonials,
	.g2f-footer,
	section.g2f-projects-grid-section {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.g2f-portfolio-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 900px) {
	.g2f-about-inner {
		gap: 36px;
	}

	.g2f-service-row--img-left .g2f-service-row__content,
	.g2f-service-row--img-right .g2f-service-row__content {
		padding: 28px 0 0 !important;
	}
}

@media (max-width: 768px) {
	.g2f-hero .wp-block-cover {
		min-height: 340px !important;
	}

	.g2f-hero .g2f-hero-wrapper {
		grid-template-columns: 1fr !important;
		padding: 0 16px !important;
	}

	.g2f-hero .g2f-hero-cover {
		grid-column: 1;
	}

	.g2f-hero .wp-block-cover__inner-container {
		padding: 0 0 28px 0 !important;
	}

	.g2f-hero .g2f-hero-content-wrap {
		padding: 0 24px !important;
	}

	.g2f-vertical-text-strip {
		display: none !important;
	}

	.g2f-about-section,
	.g2f-services-rows,
	.g2f-testimonials,
	.g2f-clients-section,
	.g2f-footer,
	section.g2f-projects-grid-section {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-about-section,
	.g2f-testimonials,
	.g2f-clients-section,
	section.g2f-projects-grid-section {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}

	.g2f-services-rows {
		padding-bottom: 64px !important;
	}

	.g2f-services-header {
		padding-top: 64px;
		padding-bottom: 40px;
	}

	.g2f-portfolio-split {
		padding: 64px 0;
	}

	.g2f-portfolio-inner {
		padding-left: 24px;
		padding-right: 24px;
		gap: 28px;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:first-child,
	.g2f-footer > .wp-block-group > .wp-block-group:last-of-type {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 24px !important;
	}

	.g2f-footer .is-content-justification-right,
	.g2f-footer .is-content-justification-space-between {
		justify-content: flex-start !important;
	}

	.g2f-footer .has-text-align-right {
		text-align: left !important;
	}
}

/* ==========================================================================
   About Page Final Override
   ========================================================================== */
.g2f-hero-about-wrap {
	background: #fff !important;
	width: 100% !important;
	max-width: none !important;
	position: static !important;
	left: auto !important;
	margin: 0 auto !important;
	padding: 0 !important;
}

.admin-bar .g2f-hero-about-wrap {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.g2f-hero-about-container {
	max-width: none !important;
	margin: 0 auto !important;
	padding: 0 !important;
	margin-bottom: 72px !important;
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
	column-gap: 0 !important;
	align-items: stretch !important;
}

.g2f-hero-about__label-wrap {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.g2f-hero-about__label {
	width: auto !important;
	min-width: 0 !important;
	font-size: 12px !important;
	letter-spacing: 0.26em !important;
	color: #111 !important;
}

.g2f-hero-about__frame {
	min-width: 0 !important;
	grid-column: 2 !important;
}

.g2f-hero-about__image {
	aspect-ratio: 1696 / 404 !important;
	min-height: 0 !important;
	width: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
}

.g2f-hero-about__overlay,
.g2f-hero-about__content,
.g2f-hero-about__heading,
.g2f-hero-about__sub {
	display: none !important;
}

.g2f-about-page-intro {
	background: #fff !important;
	padding: 8px 24px 76px !important;
	display: block !important;
}

.g2f-about-page-intro__inner {
	max-width: 940px !important;
	margin: 0 auto !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 26px !important;
	width: min(100%, 940px) !important;
}

.g2f-about-page-intro__top {
	display: grid !important;
	grid-template-columns: 300px minmax(0, 1fr) !important;
	gap: 64px !important;
	align-items: start !important;
	justify-content: stretch !important;
}

.g2f-about-page-intro__image {
	width: 100% !important;
}

.g2f-about-page-intro__image img {
	width: 100% !important;
	aspect-ratio: 1 / 1.14 !important;
	object-fit: cover !important;
	display: block !important;
}

.g2f-about-page-intro__intro-copy {
	padding-top: 14px !important;
}

.g2f-about-page-intro__lead {
	margin: 0 0 16px !important;
	font-size: clamp(19px, 1.4vw, 24px) !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1.62 !important;
	color: #333 !important;
}

.g2f-about-page-intro__supporting-copy {
	margin: 0 !important;
	font-size: 13px !important;
	line-height: 1.9 !important;
	color: #333 !important;
}

.g2f-about-page-intro__body {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.g2f-about-page-intro__body p {
	margin: 0 0 22px !important;
	font-size: 13px !important;
	line-height: 1.88 !important;
	color: #333 !important;
}

.g2f-about-page-intro__cta-text {
	margin-top: 8px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.5 !important;
	color: #111 !important;
}

.g2f-about-page-founder {
	padding: 0 24px 72px !important;
	display: block !important;
}

.g2f-about-page-founder__inner {
	max-width: 420px !important;
	margin: 0 auto !important;
	gap: 8px !important;
}

.g2f-about-page-founder__avatar {
	width: 44px !important;
	height: 44px !important;
	margin-bottom: 4px !important;
}

.g2f-about-page-founder__name {
	font-size: 13px !important;
}

.g2f-about-page-founder__role {
	font-size: 9px !important;
	letter-spacing: 0.08em !important;
	text-transform: none !important;
}

.g2f-about-page-founder__quote {
	max-width: 240px !important;
	margin: 8px 0 0 !important;
	font-size: 11px !important;
	line-height: 1.55 !important;
}

@media (max-width: 1024px) {
	.g2f-about-page-intro,
	.g2f-about-page-founder {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.g2f-about-page-intro__inner {
		max-width: 860px !important;
		width: min(100%, 860px) !important;
	}

	.g2f-hero-about-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
		padding: 20px 0 0 !important;
		margin-bottom: 56px !important;
	}

	.g2f-hero-about__label {
		width: auto !important;
		min-width: 0 !important;
		font-size: 10px !important;
	}

	.g2f-about-page-intro__top {
		grid-template-columns: 280px minmax(0, 1fr) !important;
		gap: 40px !important;
		justify-content: stretch !important;
	}
}

@media (max-width: 768px) {
	.g2f-about-page-intro,
	.g2f-about-page-founder {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.g2f-hero-about-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) !important;
		padding: 16px 0 0 !important;
		margin-bottom: 40px !important;
		column-gap: 0 !important;
	}

	.g2f-hero-about__label {
		width: auto !important;
		min-width: 0 !important;
		font-size: 8px !important;
		letter-spacing: 0.22em !important;
	}

	.g2f-about-page-intro {
		padding-top: 32px !important;
		padding-bottom: 56px !important;
	}

	.g2f-about-page-intro__top {
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}

	.g2f-about-page-intro__intro-copy {
		padding-top: 0 !important;
	}

	.g2f-about-page-founder {
		padding-bottom: 56px !important;
	}
}

/* ==========================================================================
   Reviewed Screenshots Final Pass
   ========================================================================== */

.g2f-projects-grid-section {
	padding-top: 0 !important;
	padding-bottom: 118px !important;
}

.g2f-projects-grid {
	max-width: 960px !important;
	margin: 0 auto !important;
	gap: 34px 28px !important;
}

.g2f-project-card__image {
	background: #f4f4f4 !important;
	aspect-ratio: 1.24 / 1 !important;
}

.g2f-project-card__title {
	font-size: 13px !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-bottom: 4px !important;
}

.g2f-project-card__cat {
	display: block !important;
	font-size: 9px !important;
	letter-spacing: 0.12em !important;
	text-align: center !important;
	color: #777 !important;
}

.g2f-clients-section {
	padding: 92px 24px 96px !important;
}

.g2f-clients-inner {
	max-width: 1218px !important;
}

.g2f-clients-sub {
	margin-bottom: 38px !important;
}

.g2f-clients-logos {
	gap: 24px 36px !important;
}

.g2f-client-logo img {
	max-height: 28px !important;
	max-width: 180px !important;
	filter: none !important;
	opacity: 1 !important;
}

.g2f-client-logo--text {
	min-height: 28px !important;
}

.g2f-client-logo__text {
	font-size: 18px !important;
	opacity: 1 !important;
}

.g2f-hero-services-wrap,
.g2f-hero-contact-wrap,
.g2f-hero-projects-wrap {
	margin-top: 0 !important;
	padding-top: 0 !important;
	background: #fff !important;
}

.g2f-hero-services-container,
.g2f-hero-contact-container,
.g2f-hero-projects-container {
	max-width: none !important;
	margin: 0 auto !important;
	padding: 0 !important;
	margin-bottom: 72px !important;
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
	column-gap: 0 !important;
	align-items: stretch !important;
	background: #fff !important;
}

.g2f-hero-services__label,
.g2f-hero-contact__label,
.g2f-hero-projects__label {
	grid-column: 1 !important;
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.26em !important;
	color: #111 !important;
}

.g2f-hero-services__image,
.g2f-hero-contact__image,
.g2f-hero-projects__image {
	grid-column: 2 !important;
	min-height: 0 !important;
	width: 100% !important;
	aspect-ratio: 1688 / 400 !important;
	background-size: cover !important;
	background-position: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.g2f-hero-services__image {
	background-image: url("../images/hero-bg.png") !important;
}

.g2f-hero-contact__image {
	background-image: url("../images/contact-hero-reference.jpg") !important;
}

.g2f-hero-projects__image {
	background-image: url("../images/hero-bg.png") !important;
}

.g2f-hero-services__overlay,
.g2f-hero-contact__overlay,
.g2f-hero-projects__overlay {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(0, 0, 0, 0.36) !important;
}

.g2f-hero-services__content,
.g2f-hero-contact__content,
.g2f-hero-projects__content {
	position: relative !important;
	z-index: 2 !important;
	width: 100% !important;
	padding: 0 60px !important;
	text-align: center !important;
}

.g2f-hero-services__heading,
.g2f-hero-contact__heading,
.g2f-hero-projects__heading {
	font-size: clamp(34px, 4.1vw, 68px) !important;
	line-height: 1.04 !important;
	letter-spacing: -0.04em !important;
	color: #fff !important;
}

.g2f-hero-contact__heading {
	font-weight: 300 !important;
	margin: 0 !important;
}

.g2f-hero-contact__heading strong {
	font-weight: 800 !important;
}

.g2f-services-intro {
	padding: 98px 24px 112px !important;
}

.g2f-services-intro__inner {
	max-width: 1100px !important;
	grid-template-columns: minmax(0, 1fr) 420px !important;
	gap: 88px !important;
}

.g2f-services-intro__image img[src*="services-intro"] {
	content: url("../../uploads/2026/03/about-intro.png") !important;
}

.g2f-service-block {
	padding-left: 24px !important;
	padding-right: 24px !important;
}

.g2f-service-block > .wp-block-heading,
.g2f-service-block > .g2f-service-subheading,
.g2f-service-block > p,
.g2f-service-block > .wp-block-columns {
	max-width: 1100px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.g2f-service-block .g2f-button-arrow {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	background: transparent !important;
	color: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
}

.g2f-service-block .g2f-button-arrow p,
.g2f-service-block .g2f-button-arrow a {
	color: #111 !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
}

.g2f-service-block .g2f-button-arrow:hover {
	background: #111 !important;
	color: #fff !important;
}

.g2f-service-block .g2f-button-arrow:hover p,
.g2f-service-block .g2f-button-arrow:hover a {
	color: #fff !important;
}

.g2f-contact-content {
	max-width: 1160px !important;
	padding: 76px 24px 112px !important;
}

.g2f-contact-content__intro {
	max-width: 980px !important;
	font-size: 18px !important;
	line-height: 1.8 !important;
}

.g2f-contact-content__btn {
	background: #000 !important;
	color: #fff !important;
	border-color: #000 !important;
}

.g2f-logo-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: 106px !important;
	height: 40px !important;
	flex: 0 0 106px !important;
	background: url("../images/logo.svg") center / contain no-repeat !important;
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
	transition: width 0.35s ease, height 0.35s ease, flex-basis 0.35s ease;
}

.g2f-logo-link img {
	display: block !important;
	width: 106px !important;
	height: 40px !important;
	object-fit: contain !important;
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
	transition: width 0.35s ease, height 0.35s ease;
}

.g2f-hero .wp-block-cover__image-background {
	content: url("../images/hero-bg.png") !important;
	object-position: center !important;
}

.g2f-hero .g2f-hero-cover {
	background-image: url("../images/hero-bg.png") !important;
	background-size: cover !important;
	background-position: center !important;
}

main > section.wp-block-group.g2f-hero-banner--services,
.g2f-hero-banner--services {
	padding: 24px 0 0 !important;
	margin-bottom: 72px !important;
}

.g2f-hero-banner--services .g2f-hero-wrapper {
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
	align-items: stretch !important;
	gap: 0 !important;
}

.g2f-hero-banner--services .g2f-vertical-text-strip {
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
	background: #fff !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-end !important;
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
}

.g2f-hero-banner--services .g2f-vertical-text {
	font-size: 12px !important;
	letter-spacing: 0.26em !important;
	width: auto !important;
	height: auto !important;
	min-height: 0 !important;
	flex: 0 0 auto !important;
	align-self: center !important;
	text-align: left !important;
}

.g2f-hero-banner--services .wp-block-cover {
	grid-column: 2 !important;
	min-height: 0 !important;
	aspect-ratio: 1688 / 400 !important;
	background-image: url("../images/hero-bg.png") !important;
	background-size: cover !important;
	background-position: center !important;
}

.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
	width: 100% !important;
	padding: 0 60px !important;
	display: flex !important;
	justify-content: center !important;
	text-align: center !important;
}

.g2f-hero-banner--services .wp-block-cover__inner-container {
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
}

.g2f-hero-banner--services .g2f-services-hero-title {
	font-size: clamp(34px, 4vw, 60px) !important;
	line-height: 1.05 !important;
	letter-spacing: -0.045em !important;
	margin: 0 !important;
	text-align: center !important;
}

.g2f-services-intro-section {
	padding: 98px 24px 112px !important;
}

.g2f-services-intro-section > .wp-block-columns {
	max-width: 1100px !important;
	margin: 0 auto !important;
	gap: 88px !important;
	align-items: center !important;
}

.g2f-services-intro-section > .wp-block-columns > .wp-block-column:last-child {
	height: clamp(520px, 36vw, 620px) !important;
	min-height: 0 !important;
	background-image: url("../../uploads/2026/03/about-intro.png") !important;
	background-size: cover !important;
	background-position: center !important;
}

#ux-design .g2f-service-detail-row > .wp-block-column:first-child,
#art-direction .g2f-service-detail-row > .wp-block-column:last-child,
#photography .g2f-service-detail-row > .wp-block-column:first-child {
	min-height: 420px !important;
	background-size: cover !important;
	background-position: center !important;
}

#ux-design .g2f-service-detail-row > .wp-block-column:first-child {
	background-image: url("../../uploads/2026/03/service-ux.jpg") !important;
}

#art-direction .g2f-service-detail-row > .wp-block-column:last-child {
	background-image: url("../../uploads/2026/03/service-art.jpg") !important;
}

#photography .g2f-service-detail-row > .wp-block-column:first-child {
	background-image: url("../../uploads/2026/03/service-photo.jpg") !important;
}

main.site-main .g2f-cta-divider--light {
	background: #151515 !important;
	padding: 86px 24px !important;
	justify-content: center !important;
	gap: 140px !important;
}

main.site-main .g2f-cta-divider--light h2 {
	max-width: 760px !important;
	color: #fff !important;
	font-size: clamp(34px, 4vw, 58px) !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow {
	background: transparent !important;
	color: #fff !important;
	border-color: #fff !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow p,
main.site-main .g2f-cta-divider--light .g2f-button-arrow a {
	color: #fff !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover {
	background: #fff !important;
	color: #111 !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover p,
main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover a {
	color: #111 !important;
}

@media (max-width: 1024px) {
	.g2f-hero-services-container,
	.g2f-hero-contact-container,
	.g2f-hero-projects-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
		padding: 20px 0 0 !important;
		margin-bottom: 56px !important;
	}

	.g2f-hero-services__label,
	.g2f-hero-contact__label,
	.g2f-hero-projects__label {
		width: var(--g2f-hero-side-space) !important;
		min-width: var(--g2f-hero-side-space) !important;
		font-size: 10px !important;
	}

	.g2f-hero-services__content,
	.g2f-hero-projects__content {
		padding: 0 40px !important;
	}

	.g2f-services-intro__inner {
		grid-template-columns: 1fr !important;
		gap: 48px !important;
	}

	.g2f-hero-banner--services .g2f-hero-wrapper {
		grid-template-columns: var(--g2f-hero-label-width) minmax(0, 1fr) var(--g2f-hero-label-width) !important;
	}

	.g2f-hero-banner--services .g2f-vertical-text-strip {
		width: var(--g2f-hero-label-width) !important;
		min-width: var(--g2f-hero-label-width) !important;
	}

	.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		padding: 0 40px !important;
	}

	.g2f-services-intro-section > .wp-block-columns {
		gap: 48px !important;
	}
}

@media (max-width: 768px) {
	.g2f-projects-grid {
		grid-template-columns: 1fr !important;
		max-width: 310px !important;
	}

	.g2f-hero-services-container,
	.g2f-hero-contact-container,
	.g2f-hero-projects-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) !important;
		padding: 16px 0 0 !important;
		margin-bottom: 40px !important;
	}

	.g2f-hero-services__label,
	.g2f-hero-contact__label,
	.g2f-hero-projects__label {
		width: var(--g2f-hero-side-space) !important;
		min-width: var(--g2f-hero-side-space) !important;
		font-size: 8px !important;
	}

	.g2f-hero-services__image,
	.g2f-hero-contact__image,
	.g2f-hero-projects__image {
		aspect-ratio: 4 / 5.2 !important;
	}

	.g2f-hero-services__content,
	.g2f-hero-projects__content {
		padding: 0 24px !important;
	}

	.g2f-services-intro,
	.g2f-contact-content {
		padding-top: 64px !important;
		padding-bottom: 72px !important;
	}

	.g2f-hero-banner--services {
		padding: 16px 0 0 !important;
		margin-bottom: 40px !important;
	}

	.g2f-hero-banner--services .g2f-hero-wrapper {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) !important;
	}

	.g2f-hero-banner--services .g2f-vertical-text-strip {
		width: var(--g2f-hero-side-space) !important;
		min-width: var(--g2f-hero-side-space) !important;
	}

	.g2f-hero-banner--services .wp-block-cover {
		aspect-ratio: 4 / 5.2 !important;
	}

	.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		padding: 0 24px !important;
	}

	.g2f-services-intro-section {
		padding: 64px 16px 72px !important;
	}

	.g2f-services-intro-section > .wp-block-columns {
		display: flex !important;
		flex-direction: column !important;
	}

	.g2f-services-intro-section > .wp-block-columns > .wp-block-column:last-child,
	#ux-design .g2f-service-detail-row > .wp-block-column:first-child,
	#art-direction .g2f-service-detail-row > .wp-block-column:last-child,
	#photography .g2f-service-detail-row > .wp-block-column:first-child {
		width: 100% !important;
		min-height: 320px !important;
	}
}

/* Mobile reviewed screenshot hardening */
@media (max-width: 768px) {
	.site-header .g2f-header-cta,
	.site-header .g2f-header-nav,
	.site-header .wp-block-navigation,
	.g2f-header-inner > .g2f-header-cta {
		display: none !important;
	}

	.site-header .g2f-logo-link {
		width: 82px !important;
		height: 31px !important;
		flex-basis: 82px !important;
		background-size: contain !important;
	}

	.g2f-hamburger {
		margin-left: auto !important;
		position: relative !important;
		right: 0 !important;
	}

	.g2f-hero,
	.g2f-hero.wp-block-group {
		display: block !important;
		height: auto !important;
	}

	.g2f-hero .g2f-hero-wrapper,
	.g2f-hero > .wp-block-group {
		display: block !important;
		padding: 12px 16px 0 !important;
		height: auto !important;
	}

	.g2f-hero .g2f-vertical-text-strip,
	.g2f-hero .g2f-vertical-text-strip--right {
		display: none !important;
	}

	.g2f-hero .g2f-hero-cover,
	.g2f-hero .wp-block-cover {
		width: 100% !important;
		min-height: 360px !important;
		height: 360px !important;
	}

	.g2f-hero .wp-block-cover__inner-container {
		align-items: flex-end !important;
		padding: 0 0 26px !important;
	}

	.g2f-hero .g2f-hero-content-wrap {
		max-width: 100% !important;
		padding: 0 22px !important;
	}

.g2f-hero .g2f-hero-title {
	font-size: clamp(34px, 12vw, 48px) !important;
}
}

/* Home hero typography lockup: year + large split title + underline. */
@media (min-width: 769px) {
	.g2f-hero .wp-block-cover__inner-container {
		align-items: center !important;
		padding: 0 !important;
	}

	.g2f-hero .g2f-hero-content-wrap {
		position: relative !important;
		width: 100% !important;
		max-width: 980px !important;
		padding: 0 0 0 clamp(132px, 9vw, 156px) !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}

	.g2f-hero .g2f-hero-content-wrap > .wp-block-group {
		position: relative !important;
		display: block !important;
	}

	.g2f-hero .g2f-hero-eyebrow {
		position: absolute !important;
		left: clamp(8px, 0.8vw, 16px) !important;
		top: clamp(54px, 4.4vw, 72px) !important;
		margin: 0 !important;
		font-family: var(--wp--preset--font-family--inter), sans-serif !important;
		font-size: clamp(13px, 1.05vw, 18px) !important;
		font-weight: 400 !important;
		line-height: 1 !important;
		letter-spacing: -0.02em !important;
		text-transform: none !important;
		opacity: 0.95 !important;
	}

	.g2f-hero .g2f-hero-title {
		max-width: 880px !important;
		margin: 0 !important;
		font-family: var(--wp--preset--font-family--inter), sans-serif !important;
		font-size: clamp(70px, 5.6vw, 104px) !important;
		font-weight: 300 !important;
		line-height: 0.88 !important;
		letter-spacing: -0.07em !important;
		text-align: left !important;
		text-shadow: 0 7px 20px rgba(0, 0, 0, 0.18) !important;
		white-space: normal !important;
	}

	.g2f-hero .g2f-hero-title-line {
		display: block !important;
		white-space: nowrap !important;
	}

	.g2f-hero .g2f-hero-title-line--top {
		margin-left: clamp(68px, 4.8vw, 92px) !important;
		font-weight: 300 !important;
	}

	.g2f-hero .g2f-hero-title-line--bottom {
		margin-top: -0.08em !important;
		font-weight: 800 !important;
	}

	.g2f-hero .g2f-hero-title strong {
		display: inline-block !important;
		font-weight: 800 !important;
		letter-spacing: -0.08em !important;
	}

	.g2f-hero .g2f-hero-title-line--bottom .g2f-word-inner {
		font-weight: 800 !important;
		letter-spacing: -0.08em !important;
	}

	.g2f-hero .g2f-hero-separator {
		display: block !important;
		width: clamp(430px, 30vw, 540px) !important;
		min-width: clamp(430px, 30vw, 540px) !important;
		max-width: none !important;
		height: 2px !important;
		border: 0 !important;
		background: rgba(255, 255, 255, 0.86) !important;
		margin: 26px 0 34px !important;
	}

	.g2f-hero .g2f-hero-description {
		max-width: 560px !important;
		margin: 0 !important;
		font-family: var(--wp--preset--font-family--inter), sans-serif !important;
		font-size: clamp(16px, 1.05vw, 19px) !important;
		font-weight: 300 !important;
		line-height: 1.35 !important;
		letter-spacing: -0.02em !important;
		color: rgba(255, 255, 255, 0.92) !important;
	}
}

/* Hero side label component: vertical labels start at the visual bottom edge. */
.g2f-hero .g2f-vertical-text-strip {
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
}

.g2f-hero .g2f-vertical-text-strip:not(.g2f-vertical-text-strip--right),
.g2f-hero-about__label-wrap {
	align-self: stretch !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	padding: 0 !important;
	background: #fff !important;
}

.g2f-hero-about__label-wrap {
	flex: 0 0 var(--g2f-hero-side-space);
	width: var(--g2f-hero-side-space);
	min-width: var(--g2f-hero-side-space);
	flex-direction: column !important;
	align-items: center;
	justify-content: flex-end;
}

.g2f-hero-side-label,
.g2f-hero-about__label,
.g2f-hero-services__label,
.g2f-hero-contact__label,
.g2f-hero-projects__label,
.g2f-hero-project__label,
.g2f-svc-hero__label,
.g2f-cover-hero__label {
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	align-self: stretch;
	display: block;
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #000;
	white-space: nowrap;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	text-align: left;
}

.g2f-hero-about__label-wrap .g2f-hero-about__label {
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	height: auto !important;
	min-height: 0 !important;
	align-self: center !important;
}

.g2f-hero-services__label,
.g2f-hero-contact__label,
.g2f-hero-projects__label,
.g2f-hero-project__label,
.g2f-svc-hero__label,
.g2f-cover-hero__label {
	display: block !important;
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
	height: 100% !important;
	line-height: var(--g2f-hero-side-space) !important;
	justify-self: stretch !important;
}

.g2f-hero-about-container > .g2f-hero-about__label {
	display: block !important;
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
	height: 100% !important;
	line-height: var(--g2f-hero-side-space) !important;
	justify-self: stretch !important;
}

.g2f-hero .g2f-vertical-text-strip:not(.g2f-vertical-text-strip--right) .g2f-vertical-text {
	position: static !important;
	display: block !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	align-self: center !important;
	writing-mode: vertical-rl !important;
	text-orientation: mixed !important;
	transform: rotate(180deg) !important;
	text-align: left !important;
	white-space: nowrap !important;
}

/* Single project dynamic components. */
.g2f-hero-project-wrap {
	margin-top: 0;
	padding-top: 0;
	background: #fff;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.g2f-hero-project-container {
	max-width: 100%;
	margin: 0;
	padding: 0 40px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background: #fff;
}

.g2f-hero-project__label {
	flex: 0 0 40px;
	min-width: 40px;
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #000;
	white-space: nowrap;
	background: #fff;
	align-self: stretch;
	box-sizing: border-box;
}

.g2f-hero-project__image {
	flex: 1;
	min-height: 420px;
	position: relative;
	background-color: #1c1c1c;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.g2f-hero-project__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.g2f-hero-project__content {
	position: relative;
	z-index: 2;
	padding: 80px 60px;
}

.g2f-hero-project__breadcrumb {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 4px !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin: 0 0 16px !important;
}

.g2f-hero-project__heading {
	font-size: clamp(32px, 4.5vw, 68px) !important;
	font-weight: 300 !important;
	line-height: 1.1 !important;
	color: #fff !important;
	margin: 0 !important;
	letter-spacing: -1px !important;
}

.g2f-sidebar-box {
	border: 1px solid #e8e8e8;
	padding: 40px 36px;
	position: sticky;
	top: calc(var(--g2f-header-height, 60px) + 24px);
}

.g2f-sidebar-box h6 {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #999;
	margin: 0 0 28px;
}

.g2f-sidebar-item {
	padding: 18px 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.g2f-sidebar-item:first-of-type {
	padding-top: 0;
}

.g2f-sidebar-item:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.g2f-sidebar-label {
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #aaa;
}

.g2f-sidebar-value {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #111;
	line-height: 1.4;
}

.g2f-sidebar-share {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.g2f-sidebar-share a {
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 13px;
	color: #555;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1px;
}

.g2f-sidebar-share a:hover {
	color: #000;
	border-color: #000;
}

.g2f-sidebar-cta {
	margin-top: 28px;
}

.g2f-sidebar-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	border-bottom: 2px solid #000;
	padding-bottom: 4px;
}

.g2f-sidebar-cta a:hover {
	opacity: 0.6;
}

.g2f-project-gallery {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: #f5f5f5;
	overflow: hidden;
}

.g2f-gallery-track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.g2f-gallery-slide {
	flex: 0 0 33.333%;
	min-width: 33.333%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.g2f-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.g2f-gallery-slide img:hover {
	transform: scale(1.03);
}

.g2f-gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
	transition: background 0.2s, transform 0.2s;
}

.g2f-gallery-btn:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.08);
}

.g2f-gallery-btn--prev {
	left: 20px;
}

.g2f-gallery-btn--next {
	right: 20px;
}

.g2f-gallery-btn svg {
	width: 20px;
	height: 20px;
	stroke: #000;
	stroke-width: 2;
	fill: none;
}

.g2f-related-projects__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-bar .g2f-hero-project-wrap {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
	.admin-bar .g2f-hero-project-wrap {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}
}

@media (max-width: 768px) {
	.g2f-hero-project-container {
		padding: 0 16px;
	}

	.g2f-hero-project__label {
		flex: 0 0 22px;
		min-width: 22px;
	}

	.g2f-hero-project__content {
		padding: 48px 24px;
	}

	.g2f-hero-project__image {
		min-height: 300px;
	}

	.g2f-gallery-slide {
		flex: 0 0 85%;
		min-width: 85%;
	}

	.g2f-related-projects__grid {
		grid-template-columns: 1fr;
	}
}

/* Product page layout: hero slider + editorial case-study body. */
.g2f-single-project .g2f-hero-project-wrap {
	background: #fff;
	margin-bottom: 0 !important;
}

.g2f-single-project .g2f-hero-project-container {
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) var(--g2f-hero-side-space) !important;
	gap: 0 !important;
	padding: 0 !important;
	align-items: stretch !important;
}

.g2f-single-project .g2f-hero-project__label {
	grid-column: 1;
	flex: none !important;
	width: var(--g2f-hero-side-space) !important;
	min-width: var(--g2f-hero-side-space) !important;
	align-self: stretch !important;
	font-size: 12px !important;
	letter-spacing: 0.26em !important;
	line-height: var(--g2f-hero-side-space) !important;
	text-align: left !important;
}

.g2f-project-hero-slider {
	grid-column: 2;
	position: relative;
	min-width: 0;
	height: clamp(520px, 45vw, 760px);
	overflow: hidden;
	background: #111;
}

.g2f-project-hero-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.g2f-project-hero-slider__slide {
	flex: 0 0 100%;
	min-width: 100%;
	height: 100%;
	margin: 0;
	position: relative;
}

.g2f-project-hero-slider__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.55) 100%);
	pointer-events: none;
}

.g2f-project-hero-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.g2f-project-hero-slider__content {
	position: absolute;
	left: clamp(44px, 6vw, 170px);
	right: 96px;
	bottom: 34px;
	z-index: 3;
	color: #fff;
}

.g2f-project-hero-slider__title {
	margin: 0 0 8px;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(24px, 2.4vw, 36px);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #fff;
}

.g2f-project-hero-slider__title strong {
	font-weight: 700;
}

.g2f-project-hero-slider__title span {
	font-weight: 300;
}

.g2f-project-hero-slider__content p {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: clamp(13px, 1vw, 16px);
	line-height: 1.45;
	color: rgba(255,255,255,0.92);
}

.g2f-project-hero-social {
	grid-column: 3;
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-self: center;
	justify-self: center;
}

.g2f-project-hero-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--roboto), sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.g2f-project-hero-social a:hover {
	background: #fff;
	color: #000;
	transform: scale(1.08);
}

.g2f-project-hero-slider__controls {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex;
}

.g2f-project-hero-slider__btn {
	width: 42px;
	height: 42px;
	border: 0;
	border-left: 1px solid rgba(0,0,0,0.2);
	background: rgba(255,255,255,0.86);
	color: #111;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.g2f-project-hero-slider__btn:hover {
	background: #fff;
}

.g2f-single-project .g2f-project-body {
	width: 100% !important;
	max-width: none !important;
	margin: 0 auto !important;
	padding-left: var(--g2f-header-edge) !important;
	padding-right: var(--g2f-header-edge) !important;
}

.g2f-single-project .g2f-project-body > .wp-block-columns {
	display: grid !important;
	grid-template-columns: minmax(0, 720px) minmax(280px, 330px) !important;
	gap: clamp(56px, 6vw, 110px) !important;
	justify-content: center !important;
	align-items: flex-start !important;
	width: min(100%, 1220px) !important;
	max-width: 1220px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.g2f-single-project .g2f-project-body > .wp-block-columns > .wp-block-column {
	width: auto !important;
	min-width: 0 !important;
	flex-basis: auto !important;
	flex-grow: 0 !important;
}

.g2f-single-project .g2f-project-body > .wp-block-columns > .wp-block-column:first-child {
	max-width: 720px !important;
}

.g2f-project-page-title {
	font-family: var(--wp--preset--font-family--inter), sans-serif !important;
	font-size: clamp(34px, 4.2vw, 58px) !important;
	font-weight: 300 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.05em !important;
	margin: 0 0 36px !important;
	color: #111 !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: manual !important;
}

.g2f-project-page-title strong,
.g2f-project-page-title b {
	font-weight: 700 !important;
}

.g2f-project-section-title {
	font-family: var(--wp--preset--font-family--inter), sans-serif !important;
	font-size: clamp(22px, 2vw, 30px) !important;
	font-weight: 700 !important;
	line-height: 1.18 !important;
	margin: 0 0 28px !important;
	color: #111 !important;
}

.g2f-single-project .wp-block-post-content,
.g2f-single-project .g2f-project-default-content {
	max-width: none !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
}

.g2f-single-project .wp-block-post-content p,
.g2f-single-project .g2f-project-default-content p {
	font-size: clamp(14px, 0.86vw, 16px) !important;
	line-height: 1.78 !important;
	color: #111 !important;
	margin-bottom: 22px !important;
}

.g2f-single-project .wp-block-post-content strong,
.g2f-single-project .g2f-project-default-content strong {
	font-weight: 800;
}

.g2f-single-project .g2f-sidebar-box {
	background: #f0f0f0;
	border: 0;
	padding: 34px 34px 36px;
	position: static;
	max-width: 330px;
	margin-left: auto;
}

.g2f-single-project .g2f-sidebar-box h6 {
	font-size: 16px;
	letter-spacing: -0.01em;
	text-transform: none;
	color: #111;
	margin-bottom: 22px;
}

.g2f-single-project .g2f-sidebar-item {
	padding: 5px 0;
	border: 0;
	display: block;
}

.g2f-single-project .g2f-sidebar-label {
	font-size: 13px;
	letter-spacing: 0;
	text-transform: none;
	color: #111;
	margin-right: 4px;
}

.g2f-single-project .g2f-sidebar-label::after {
	content: ":";
}

.g2f-single-project .g2f-sidebar-value,
.g2f-single-project .g2f-sidebar-share a {
	font-size: 13px;
	color: #111;
	font-weight: 500;
}

.g2f-single-project .g2f-sidebar-share {
	display: inline-flex;
	gap: 8px;
}

.g2f-single-project .g2f-sidebar-cta a {
	border: 1px solid #111;
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 11px;
	letter-spacing: 0.08em;
}

.g2f-single-project .g2f-cta-compact {
	background: #191919;
	padding: 76px 0;
}

.g2f-single-project .g2f-cta-compact__inner {
	max-width: 1220px;
	padding: 0 116px;
}

.g2f-single-project .g2f-cta-compact__text {
	font-size: clamp(34px, 4.1vw, 58px);
	line-height: 1.05;
	letter-spacing: -0.06em;
}

.g2f-single-project .g2f-related-projects {
	background: #f1f1f1;
	padding-left: var(--g2f-header-edge) !important;
	padding-right: var(--g2f-header-edge) !important;
}

.g2f-single-project .g2f-related-projects > .wp-block-group,
.g2f-single-project .g2f-related-projects__grid,
.g2f-single-project .g2f-related-projects__intro {
	max-width: 1220px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.g2f-single-project .g2f-related-projects > .wp-block-group {
	width: 100% !important;
	align-items: center !important;
}

.g2f-related-projects__intro {
	max-width: 620px;
	margin-top: -22px !important;
	margin-bottom: 28px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	font-size: 14px;
	line-height: 1.55;
	color: #111;
}

.g2f-single-project .g2f-related-projects__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	justify-items: stretch !important;
	width: 100% !important;
}

.g2f-single-project .g2f-related-projects__grid .g2f-project-card {
	width: 100% !important;
	margin: 0 !important;
}

.g2f-single-project .g2f-related-projects__grid .g2f-project-card__image {
	filter: grayscale(100%);
}

.g2f-related-projects__actions {
	margin: 0 !important;
}

.g2f-related-projects__button .wp-block-button__link {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 12px 24px !important;
	border: 1px solid #111 !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: #111 !important;
	font-family: var(--wp--preset--font-family--inter), sans-serif;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.g2f-related-projects__button .wp-block-button__link::after {
	content: "";
	width: 16px;
	height: 16px;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	transition: transform 0.25s ease, background-image 0.25s ease;
}

.g2f-related-projects__button .wp-block-button__link:hover {
	background: #111 !important;
	border-color: #111 !important;
	color: #fff !important;
}

.g2f-related-projects__button .wp-block-button__link:hover::after {
	transform: translateX(4px);
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 1024px) {
	:root {
		--g2f-header-edge: 80px;
		--g2f-hero-label-width: 40px;
		--g2f-hero-outer-gutter: 20px;
	}

	.g2f-single-project .g2f-hero-project-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) !important;
		padding: 0 !important;
	}

	.g2f-project-hero-slider {
		height: clamp(420px, 56vw, 620px);
	}

	.g2f-single-project .g2f-project-body,
	.g2f-single-project .g2f-related-projects {
		padding-left: var(--g2f-header-edge) !important;
		padding-right: var(--g2f-header-edge) !important;
	}

	.g2f-single-project .g2f-project-body > .wp-block-columns {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) !important;
		gap: 48px !important;
	}

	.g2f-single-project .g2f-cta-compact__inner {
		padding: 0 var(--g2f-header-edge);
	}
}

@media (max-width: 768px) {
	:root {
		--g2f-header-edge: 44px;
		--g2f-hero-label-width: 28px;
		--g2f-hero-outer-gutter: 16px;
	}

	.g2f-single-project .g2f-hero-project-container {
		grid-template-columns: var(--g2f-hero-side-space) minmax(0, 1fr) !important;
		padding: 0 !important;
	}

	.g2f-single-project .g2f-hero-project__label {
		width: var(--g2f-hero-side-space) !important;
		min-width: var(--g2f-hero-side-space) !important;
		font-size: 8px !important;
	}

	.g2f-single-project .g2f-project-body {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-single-project .g2f-project-body > .wp-block-columns {
		display: block !important;
		width: 100% !important;
	}

	.g2f-project-hero-slider {
		height: 420px;
	}

	.g2f-project-hero-slider__content {
		left: 24px;
		right: 24px;
		bottom: 28px;
	}

	.g2f-project-hero-social {
		display: none;
	}

	.g2f-single-project .g2f-sidebar-box {
		max-width: none;
		margin-left: 0;
	}

	.g2f-single-project .g2f-cta-compact {
		padding: 56px 0;
	}
}

/* Review pass: about copy should read closer to the supplied Figma reference. */
.g2f-about-page-intro__inner {
	width: min(100%, 1080px) !important;
	max-width: 1080px !important;
}

.g2f-about-page-intro__top {
	grid-template-columns: 300px minmax(0, 600px) !important;
	gap: 72px !important;
	justify-content: center !important;
}

.g2f-about-page-intro__lead {
	font-size: clamp(23px, 1.65vw, 29px) !important;
	line-height: 1.42 !important;
	color: #222 !important;
	margin-bottom: 22px !important;
}

.g2f-about-page-intro__supporting-copy,
.g2f-about-page-intro__body p {
	font-size: clamp(14px, 0.88vw, 16px) !important;
	line-height: 1.72 !important;
	color: #222 !important;
}

.g2f-about-page-intro__cta-text {
	font-size: clamp(14px, 0.88vw, 16px) !important;
}

/* Keep clients consistent across home, service and project pages. */
.g2f-clients-section {
	padding: 88px 24px 92px !important;
	background: #fff !important;
	text-align: center !important;
}

.g2f-clients-inner {
	width: min(100%, 1218px) !important;
	max-width: 1218px !important;
	margin: 0 auto !important;
}

.g2f-clients-heading {
	font-size: clamp(40px, 3.6vw, 58px) !important;
	line-height: 1.08 !important;
	margin: 0 0 18px !important;
}

.g2f-clients-sub {
	font-size: clamp(14px, 0.9vw, 16px) !important;
	line-height: 1.55 !important;
	margin: 0 0 30px !important;
}

.g2f-clients-logos {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 22px 34px !important;
	min-height: 32px !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.g2f-client-logo {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 1 auto !important;
	max-width: 180px !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.g2f-client-logo img {
	max-height: 28px !important;
	max-width: 180px !important;
	width: auto !important;
	height: auto !important;
	filter: grayscale(100%) !important;
	opacity: 0.75 !important;
}

@media (max-width: 768px) {
	.g2f-about-page-intro__top {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}

	.g2f-about-page-intro__lead {
		font-size: clamp(21px, 6vw, 26px) !important;
	}
}

/* Stable header nav and default outline arrow buttons. */
.site-header .wp-block-navigation-item__content,
.site-header .wp-block-navigation-item__content:hover,
.site-header .current-menu-item .wp-block-navigation-item__content,
.site-header .current-menu-ancestor .wp-block-navigation-item__content,
.g2f-header-nav .wp-block-navigation-item__content,
.g2f-header-nav .wp-block-navigation-item__content:hover,
.g2f-header-nav a:not(.wp-block-button__link),
.g2f-header-nav a:not(.wp-block-button__link):hover {
	font-weight: 400 !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	letter-spacing: 0.5px !important;
	transition: color 0.25s ease !important;
}

.site-header.is-sticky .wp-block-navigation-item__content {
	font-size: 14px !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light),
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light) {
	background: transparent !important;
	border-color: #111 !important;
	color: #111 !important;
	box-shadow: none !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light) p,
.g2f-button-arrow:not(.g2f-button-arrow-light) a,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light) p,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light) a {
	color: #111 !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light)::after,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light)::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light):hover,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light):hover {
	background: #111 !important;
	border-color: #111 !important;
	color: #fff !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light):hover p,
.g2f-button-arrow:not(.g2f-button-arrow-light):hover a,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light):hover p,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light):hover a {
	color: #fff !important;
}

.g2f-button-arrow:not(.g2f-button-arrow-light):hover::after,
main.site-main .g2f-button-arrow:not(.g2f-button-arrow-light):hover::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* ==========================================================================
   Footer Final Layout
   ========================================================================== */
.g2f-footer {
	background: #191919 !important;
	padding: clamp(88px, 7vw, 132px) var(--g2f-header-edge) 0 !important;
}

.g2f-footer > .wp-block-group {
	width: 100% !important;
	max-width: 1218px !important;
	margin-inline: auto !important;
}

.g2f-footer-top {
	align-items: flex-end !important;
	gap: clamp(40px, 8vw, 120px) !important;
	padding-bottom: clamp(48px, 5vw, 76px) !important;
}

.g2f-footer-brand h2 {
	font-size: clamp(52px, 4.7vw, 72px) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.06em !important;
	margin: 0 !important;
}

.g2f-footer-brand p {
	font-size: clamp(14px, 1.05vw, 18px) !important;
	line-height: 1.25 !important;
	margin: 0 !important;
}

.g2f-footer-cta {
	background: transparent !important;
	border: 2px solid #fff !important;
	min-width: clamp(224px, 17vw, 322px) !important;
	min-height: clamp(54px, 4vw, 74px) !important;
	padding: 0 clamp(28px, 2.6vw, 44px) !important;
	gap: 18px !important;
}

.g2f-footer-cta p,
.g2f-footer-cta a {
	font-size: clamp(13px, 1.15vw, 20px) !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	color: #fff !important;
}

.g2f-footer-cta:hover {
	background: #fff !important;
	color: #111 !important;
}

.g2f-footer-cta:hover p,
.g2f-footer-cta:hover a {
	color: #111 !important;
}

.g2f-footer-rule {
	height: 1px !important;
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	opacity: 1 !important;
	background: rgba(255, 255, 255, 0.9) !important;
}

.g2f-footer-links-row {
	align-items: flex-start !important;
	padding-top: clamp(48px, 5.5vw, 86px) !important;
	padding-bottom: clamp(50px, 5vw, 76px) !important;
	gap: 56px !important;
}

.g2f-footer-nav {
	align-items: center !important;
	gap: clamp(22px, 2vw, 34px) !important;
}

.g2f-footer-nav a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(14px, 1vw, 16px) !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
}

.g2f-footer-contact-stack {
	align-items: center !important;
	width: min(100%, 690px) !important;
	gap: clamp(34px, 4.6vw, 62px) !important;
}

.g2f-footer-social-row,
.g2f-footer-contact-row {
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
}

.g2f-footer-social-row {
	gap: clamp(36px, 4.2vw, 70px) !important;
}

.g2f-footer-social-row a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(15px, 1.05vw, 18px) !important;
	font-weight: 400 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em !important;
}

.g2f-footer-contact-row {
	gap: clamp(28px, 3.4vw, 54px) !important;
}

.g2f-footer-email a,
.g2f-footer-phone a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(14px, 1vw, 17px) !important;
	font-weight: 500 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.03em !important;
	text-decoration: underline !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 4px !important;
}

.g2f-footer-phone a {
	display: inline-flex !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	column-gap: 0.25em !important;
	max-width: none !important;
	white-space: nowrap !important;
	text-decoration: none !important;
}

.g2f-footer-phone br,
.g2f-footer-phone a br {
	display: none !important;
}

.g2f-footer-contact-separator {
	display: none !important;
}

.g2f-footer-copyright-bar {
	border-top: clamp(20px, 2.2vw, 36px) solid #fff !important;
	padding-top: 24px !important;
	padding-bottom: 24px !important;
	background: #191919 !important;
}

.g2f-footer-copyright-bar p {
	font-size: 14px !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.g2f-footer-top,
	.g2f-footer-links-row {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.g2f-footer-contact-stack,
	.g2f-footer-social-row,
	.g2f-footer-contact-row {
		align-items: flex-start !important;
		justify-content: flex-start !important;
	}
}

@media (max-width: 640px) {
	.g2f-footer {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.g2f-footer-social-row,
	.g2f-footer-contact-row,
	.g2f-footer-nav {
		flex-wrap: wrap !important;
	}

	.g2f-footer-contact-separator {
		display: none !important;
	}
}

/* FSE can keep an older footer template-part in the database. These structural
   selectors keep that stale markup visually aligned with the file template. */
.g2f-footer > .wp-block-group > .wp-block-group:first-of-type {
	align-items: flex-end !important;
	gap: clamp(40px, 8vw, 120px) !important;
	padding-bottom: clamp(48px, 5vw, 76px) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .wp-block-group:first-child h2 {
	font-size: clamp(52px, 4.7vw, 72px) !important;
	line-height: 0.95 !important;
	letter-spacing: -0.06em !important;
	margin: 0 !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .wp-block-group:first-child p {
	font-size: clamp(14px, 1.05vw, 18px) !important;
	line-height: 1.25 !important;
	margin: 0 !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light {
	background: transparent !important;
	border: 2px solid #fff !important;
	min-width: clamp(224px, 17vw, 322px) !important;
	min-height: clamp(54px, 4vw, 74px) !important;
	padding: 0 clamp(28px, 2.6vw, 44px) !important;
	gap: 18px !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light p,
.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light a {
	font-size: clamp(13px, 1.15vw, 20px) !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	color: #fff !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light:hover {
	background: #fff !important;
	color: #111 !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light:hover p,
.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light:hover a {
	color: #111 !important;
}

.g2f-footer > .wp-block-group > hr.wp-block-separator {
	height: 1px !important;
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	opacity: 1 !important;
	background: rgba(255, 255, 255, 0.9) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) {
	align-items: flex-start !important;
	padding-top: clamp(48px, 5.5vw, 86px) !important;
	padding-bottom: clamp(50px, 5vw, 76px) !important;
	gap: 56px !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:first-child {
	align-items: center !important;
	gap: clamp(22px, 2vw, 34px) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:first-child a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(14px, 1vw, 16px) !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child {
	align-items: center !important;
	width: min(100%, 690px) !important;
	gap: clamp(34px, 4.6vw, 62px) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group {
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:first-child {
	gap: clamp(36px, 4.2vw, 70px) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:first-child a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(15px, 1.05vw, 18px) !important;
	font-weight: 400 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child {
	gap: clamp(28px, 3.4vw, 54px) !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:first-child a,
.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:last-child a {
	font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
	font-size: clamp(14px, 1vw, 17px) !important;
	font-weight: 500 !important;
	line-height: 1.12 !important;
	letter-spacing: -0.03em !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:first-child a {
	text-decoration: underline !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 4px !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:last-child a {
	display: inline-flex !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	column-gap: 0.25em !important;
	max-width: none !important;
	text-align: center !important;
	white-space: nowrap !important;
	text-decoration: none !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:last-child br,
.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:last-child a br {
	display: none !important;
}

.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child hr {
	display: none !important;
}

.g2f-footer + .wp-block-group {
	border-top: clamp(20px, 2.2vw, 36px) solid #fff !important;
	padding-top: 24px !important;
	padding-bottom: 24px !important;
	background: #191919 !important;
}

.g2f-footer + .wp-block-group p {
	font-size: 14px !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

@media (max-width: 900px) {
	.g2f-footer > .wp-block-group > .wp-block-group:first-of-type,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group {
		align-items: flex-start !important;
		justify-content: flex-start !important;
	}
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow {
	background: transparent !important;
	border-color: #fff !important;
	color: #fff !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow p,
main.site-main .g2f-cta-divider--light .g2f-button-arrow a {
	color: #fff !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover {
	background: #fff !important;
	border-color: #fff !important;
	color: #111 !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover p,
main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover a {
	color: #111 !important;
}

main.site-main .g2f-cta-divider--light .g2f-button-arrow:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.125 10H16.875' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 4.375L16.875 10L11.25 15.625' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* ==========================================================================
   Mobile design pass
   Keeps the desktop/FSE templates intact while removing desktop layout bleed on
   phone widths.
   ========================================================================== */

.g2f-projects-filter-select {
	display: none;
}

@media (max-width: 768px) {
	html,
	body {
		overflow-x: hidden;
	}

	body {
		font-size: 16px;
	}

	.site-header,
	header.site-header,
	header.wp-block-template-part {
		position: relative !important;
		z-index: 1000 !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	.site-header .g2f-header-shell,
	header.site-header .g2f-header-shell,
	.site-header > .wp-block-group,
	header.wp-block-group.site-header {
		padding: 0 22px !important;
		margin: 0 !important;
		width: 100% !important;
		max-width: none !important;
	}

	.site-header .g2f-header-inner,
	header.site-header .g2f-header-inner {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		min-height: 64px !important;
		height: 64px !important;
		padding: 0 !important;
		gap: 20px !important;
	}

	.site-header .g2f-header-nav,
	.site-header .g2f-header-cta,
	.site-header .wp-block-navigation,
	header.site-header .g2f-header-nav,
	header.site-header .g2f-header-cta,
	header.site-header .wp-block-navigation {
		display: none !important;
	}

	.g2f-logo-link {
		width: 112px !important;
		height: 42px !important;
		flex: 0 0 112px !important;
		background-size: contain !important;
		background-position: left center !important;
	}

	.g2f-logo-link img,
	.g2f-header-logo img {
		max-width: 112px !important;
		height: auto !important;
	}

	.g2f-hamburger {
		display: flex !important;
		width: 36px !important;
		height: 36px !important;
		margin-left: auto !important;
		padding: 0 !important;
	}

	.g2f-hamburger__bar {
		width: 20px !important;
		height: 2px !important;
		background: #111 !important;
	}

	.g2f-mobile-overlay {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 92px !important;
		padding: 72px 28px 48px !important;
		background: #080808 !important;
		color: #fff !important;
		z-index: 99999 !important;
	}

	.g2f-mobile-close {
		top: 24px !important;
		right: 24px !important;
		width: 32px !important;
		height: 32px !important;
	}

	.g2f-mobile-close span {
		width: 18px !important;
		background: #fff !important;
	}

	.g2f-mobile-nav {
		gap: 28px !important;
		margin: 0 !important;
	}

	.g2f-mobile-nav a {
		color: #fff !important;
		font-size: 18px !important;
		line-height: 1.25 !important;
		letter-spacing: 0.02em !important;
		font-weight: 400 !important;
	}

	.g2f-mobile-overlay__cta {
		margin: 0 !important;
	}

	.g2f-mobile-overlay__cta-link {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-width: 148px !important;
		min-height: 42px !important;
		padding: 0 22px !important;
		border: 1px solid #fff !important;
		color: #fff !important;
		background: transparent !important;
		font-size: 11px !important;
		font-weight: 700 !important;
		letter-spacing: 0.08em !important;
	}

	.g2f-mobile-overlay__cta-link:hover {
		background: #fff !important;
		color: #111 !important;
	}

	.g2f-mobile-overlay__social {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 8px !important;
		margin-top: -58px !important;
		color: #fff !important;
		font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
		font-size: 12px !important;
	}

	.g2f-mobile-overlay__social p {
		margin: 0 !important;
	}

	.g2f-mobile-overlay__social div {
		display: flex !important;
		gap: 10px !important;
	}

	.g2f-mobile-overlay__social a {
		color: #fff !important;
		font-size: 13px !important;
		text-decoration: none !important;
	}

	.g2f-vertical-text-strip,
	.g2f-hero-side-label,
	.g2f-hero-about__label,
	.g2f-hero-about__label-wrap,
	.g2f-hero-services__label,
	.g2f-hero-contact__label,
	.g2f-hero-projects__label,
	.g2f-hero-project__label,
	.g2f-cover-hero__label,
	.g2f-svc-hero__label {
		display: none !important;
	}

	.g2f-hero,
	.g2f-hero-banner,
	.g2f-hero-about,
	.g2f-hero-services,
	.g2f-hero-contact,
	.g2f-hero-projects,
	.g2f-hero-project-wrap {
		padding: 0 18px !important;
		margin: 0 !important;
		background: #fff !important;
	}

	.g2f-hero .g2f-hero-wrapper,
	.g2f-hero-about-container,
	.g2f-hero-services-container,
	.g2f-hero-contact-container,
	.g2f-hero-projects-container,
	.g2f-hero-project-container,
	.g2f-hero-banner__inner,
	.g2f-hero-banner .g2f-hero-wrapper {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 auto !important;
		padding: 0 !important;
		grid-template-columns: none !important;
	}

	.g2f-hero .g2f-hero-cover,
	.g2f-hero .wp-block-cover {
		width: 100% !important;
		min-height: min(640px, calc(100svh - 92px)) !important;
		height: auto !important;
		aspect-ratio: 315 / 485 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}

	.g2f-hero .wp-block-cover__inner-container {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		padding: 28px !important;
	}

	.g2f-hero-content {
		width: min(100%, 270px) !important;
		max-width: 270px !important;
		margin: 0 auto !important;
	}

	.g2f-hero-title {
		font-size: clamp(35px, 12.6vw, 48px) !important;
		line-height: 0.9 !important;
		letter-spacing: -0.055em !important;
		text-align: left !important;
	}

	.g2f-hero .g2f-hero-year {
		font-size: 10px !important;
	}

	.g2f-hero-separator {
		width: 100% !important;
		margin: 14px 0 18px !important;
	}

	.g2f-hero-description {
		font-size: 14px !important;
		line-height: 1.34 !important;
		max-width: 260px !important;
	}

	.g2f-hero-about__image,
	.g2f-hero-services__image,
	.g2f-hero-contact__image,
	.g2f-hero-projects__image,
	.g2f-hero-banner-cover,
	.g2f-hero-banner .wp-block-cover {
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		aspect-ratio: 315 / 230 !important;
		margin: 0 !important;
		padding: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.g2f-hero-contact__image,
	.g2f-hero-contact .wp-block-cover {
		aspect-ratio: 315 / 250 !important;
	}

	.g2f-hero-about__image img,
	.g2f-hero-services__image img,
	.g2f-hero-contact__image img,
	.g2f-hero-projects__image img,
	.g2f-hero-banner-cover img,
	.g2f-hero-banner .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.g2f-hero-about__content,
	.g2f-hero-services__content,
	.g2f-hero-contact__content,
	.g2f-hero-projects__content,
	.g2f-hero-banner .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		padding: 22px !important;
		text-align: center !important;
	}

	.g2f-hero-about__heading,
	.g2f-hero-services__heading,
	.g2f-hero-contact__heading,
	.g2f-hero-projects__heading,
	.g2f-hero-banner h1,
	.g2f-hero-banner h2 {
		margin: 0 auto !important;
		max-width: 260px !important;
		font-size: clamp(30px, 10vw, 42px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.05em !important;
		text-align: center !important;
	}

	.g2f-about-section {
		padding: 36px 22px 0 !important;
	}

	.g2f-about-inner {
		display: flex !important;
		flex-direction: column !important;
		gap: 26px !important;
		width: 100% !important;
		max-width: none !important;
	}

	.g2f-about-text-col {
		order: 1 !important;
		width: 100% !important;
	}

	.g2f-about-image-col {
		order: 2 !important;
		width: 100% !important;
	}

	.g2f-about-img {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 315 / 395 !important;
		object-fit: cover !important;
	}

	.g2f-about-heading {
		font-size: clamp(31px, 9vw, 38px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.05em !important;
		margin: 0 0 24px !important;
	}

	.g2f-about-body {
		max-width: none !important;
	}

	.g2f-about-body p {
		font-size: 16px !important;
		line-height: 1.48 !important;
		margin-bottom: 18px !important;
	}

	.g2f-about-label {
		display: none !important;
	}

	.g2f-services-rows {
		padding: 0 22px 56px !important;
	}

	.g2f-services-header {
		padding: 58px 0 30px !important;
		text-align: center !important;
	}

	.g2f-services-header h2,
	.g2f-services-header .wp-block-heading {
		font-size: clamp(31px, 9vw, 38px) !important;
		line-height: 1.05 !important;
		letter-spacing: -0.055em !important;
	}

	.g2f-service-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
		width: 100% !important;
		max-width: none !important;
		padding: 0 0 26px !important;
		margin: 0 0 26px !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.82) !important;
	}

	.g2f-service-row--img-right {
		flex-direction: column !important;
	}

	.g2f-service-row__image,
	.g2f-service-row__content {
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
		padding: 0 !important;
	}

	.g2f-service-row--img-left .g2f-service-row__image,
	.g2f-service-row--img-right .g2f-service-row__image {
		order: 1 !important;
	}

	.g2f-service-row--img-left .g2f-service-row__content,
	.g2f-service-row--img-right .g2f-service-row__content {
		order: 2 !important;
	}

	.g2f-service-row__image img,
	.g2f-service-row__image .wp-block-image,
	.g2f-service-row__image figure {
		width: 100% !important;
		height: auto !important;
	}

	.g2f-service-row__image img {
		display: block !important;
		aspect-ratio: 315 / 205 !important;
		object-fit: cover !important;
	}

	.g2f-service-row__content h3,
	.g2f-service-row__content h2 {
		font-size: clamp(27px, 8.4vw, 34px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.045em !important;
		margin-bottom: 12px !important;
	}

	.g2f-service-row__content p {
		font-size: 16px !important;
		line-height: 1.4 !important;
		margin-bottom: 14px !important;
	}

	.g2f-portfolio-split {
		padding: 54px 22px !important;
	}

	.g2f-portfolio-inner {
		display: flex !important;
		flex-direction: column !important;
		gap: 28px !important;
		padding: 0 !important;
		max-width: none !important;
	}

	.g2f-portfolio-heading {
		max-width: 255px !important;
		font-size: clamp(30px, 9.5vw, 38px) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.055em !important;
		margin: 0 !important;
	}

	.g2f-portfolio-right p {
		font-size: 15px !important;
		line-height: 1.52 !important;
	}

	.g2f-projects-grid-section {
		padding: 44px 22px 56px !important;
	}

	.g2f-projects-grid-section h2,
	.g2f-projects-title {
		max-width: 315px !important;
		margin: 0 0 18px !important;
		text-align: left !important;
		font-size: clamp(31px, 10vw, 40px) !important;
		line-height: 1.05 !important;
		letter-spacing: -0.055em !important;
	}

	.g2f-projects-tabs {
		display: none !important;
	}

	.g2f-projects-filter-select {
		display: block !important;
		width: 100% !important;
		height: 42px !important;
		margin: 0 0 18px !important;
		padding: 0 14px !important;
		border: 1px solid #bdbdbd !important;
		border-radius: 4px !important;
		background: #fff !important;
		color: #111 !important;
		font-family: var(--wp--preset--font-family--roboto), sans-serif !important;
		font-size: 14px !important;
	}

	.g2f-projects-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 28px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.g2f-project-card {
		width: 100% !important;
		max-width: none !important;
	}

	.g2f-project-card__image {
		width: 100% !important;
		aspect-ratio: 315 / 220 !important;
	}

	.g2f-project-card__title {
		font-size: 17px !important;
		line-height: 1.15 !important;
	}

	.g2f-project-card__cat {
		font-size: 12px !important;
		letter-spacing: 0.05em !important;
	}

	.g2f-testimonials,
	.g2f-testimonials-dark {
		padding: 54px 22px !important;
	}

	.g2f-testimonials h2,
	.g2f-testimonials-dark h2 {
		font-size: clamp(32px, 10vw, 42px) !important;
		line-height: 1.03 !important;
	}

	.g2f-clients-section {
		padding: 54px 22px !important;
	}

	.g2f-clients-heading {
		font-size: clamp(32px, 10vw, 42px) !important;
		line-height: 1.05 !important;
	}

	.g2f-clients-logo-strip,
	.g2f-clients-logos {
		flex-wrap: wrap !important;
		gap: 18px 22px !important;
		justify-content: center !important;
	}

	.g2f-clients-logo-strip img,
	.g2f-clients-logos img {
		max-width: 118px !important;
		max-height: 34px !important;
	}

	.g2f-single-project .g2f-hero-project-wrap {
		padding: 0 22px !important;
	}

	.g2f-single-project .g2f-hero-project-container {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		padding: 0 !important;
		grid-template-columns: none !important;
	}

	.g2f-project-hero-slider {
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 315 / 410 !important;
		margin: 0 !important;
		overflow: hidden !important;
	}

	.g2f-project-hero-slider__slide img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	.g2f-project-hero-slider__content {
		left: 22px !important;
		right: 22px !important;
		bottom: 24px !important;
		max-width: calc(100% - 44px) !important;
	}

	.g2f-project-hero-slider__title {
		font-size: clamp(30px, 9.6vw, 42px) !important;
		line-height: 1.05 !important;
		letter-spacing: -0.055em !important;
	}

	.g2f-project-hero-slider__content p {
		font-size: 16px !important;
		line-height: 1.35 !important;
		max-width: 280px !important;
	}

	.g2f-project-hero-social {
		display: none !important;
	}

	.g2f-project-hero-slider__controls {
		right: 0 !important;
		bottom: 0 !important;
	}

	.g2f-project-gallery {
		padding: 22px 0 0 !important;
		margin: 0 -22px !important;
		overflow: hidden !important;
	}

	.g2f-gallery-track {
		display: flex !important;
	}

	.g2f-gallery-slide {
		flex: 0 0 100% !important;
		width: 100% !important;
	}

	.g2f-gallery-slide img {
		aspect-ratio: 315 / 260 !important;
		object-fit: cover !important;
	}

	.g2f-single-project .g2f-project-body {
		padding: 54px 22px 50px !important;
	}

	.g2f-single-project .g2f-project-body > .wp-block-columns {
		display: flex !important;
		flex-direction: column !important;
		gap: 34px !important;
		width: 100% !important;
		margin: 0 !important;
	}

	.g2f-single-project .g2f-project-body > .wp-block-columns > .wp-block-column {
		width: 100% !important;
		flex-basis: auto !important;
		min-width: 0 !important;
	}

	.g2f-single-project .g2f-project-body h1,
	.g2f-single-project .g2f-project-body h2 {
		font-size: clamp(38px, 11vw, 48px) !important;
		line-height: 1.06 !important;
		letter-spacing: -0.055em !important;
		margin-bottom: 24px !important;
		text-align: left !important;
	}

	.g2f-single-project .g2f-project-body h3,
	.g2f-single-project .g2f-project-body h4 {
		font-size: 22px !important;
		line-height: 1.25 !important;
		margin: 28px 0 12px !important;
	}

	.g2f-single-project .wp-block-post-content,
	.g2f-project-default-content {
		width: 100% !important;
		max-width: none !important;
	}

	.g2f-single-project .wp-block-post-content p,
	.g2f-project-default-content p,
	.g2f-single-project .wp-block-post-content li,
	.g2f-project-default-content li {
		font-size: 17px !important;
		line-height: 1.58 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
		text-wrap: pretty !important;
	}

	.g2f-single-project .g2f-sidebar-box {
		width: 100% !important;
		max-width: none !important;
		margin: 12px 0 0 !important;
		padding: 30px 28px !important;
		background: #f0f0f0 !important;
		border: 0 !important;
	}

	.g2f-single-project .g2f-sidebar-box h6 {
		font-size: 24px !important;
		letter-spacing: -0.04em !important;
		margin-bottom: 20px !important;
	}

	.g2f-single-project .g2f-sidebar-item {
		padding: 12px 0 !important;
		border-bottom: 0 !important;
	}

	.g2f-single-project .g2f-sidebar-label,
	.g2f-single-project .g2f-sidebar-value,
	.g2f-single-project .g2f-sidebar-share a {
		font-size: 16px !important;
		line-height: 1.35 !important;
		letter-spacing: 0 !important;
		word-break: normal !important;
	}

	.g2f-single-project .g2f-sidebar-label {
		display: inline !important;
		font-weight: 700 !important;
		text-transform: none !important;
	}

	.g2f-single-project .g2f-sidebar-label::after {
		content: ": ";
	}

	.g2f-single-project .g2f-sidebar-value {
		display: inline !important;
	}

	.g2f-single-project .g2f-sidebar-share {
		display: inline-flex !important;
		flex-wrap: wrap !important;
		gap: 10px !important;
		margin-left: 6px !important;
	}

	.g2f-single-project .g2f-sidebar-cta a {
		width: auto !important;
		min-height: 44px !important;
		padding: 0 22px !important;
		font-size: 13px !important;
	}

	.g2f-project-nav {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 18px !important;
		padding: 30px 22px !important;
	}

	.g2f-project-nav a {
		font-size: 16px !important;
		line-height: 1.3 !important;
	}

	.g2f-single-project .g2f-cta-compact,
	.g2f-cta-compact {
		padding: 58px 22px !important;
	}

	.g2f-cta-compact__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 28px !important;
		padding: 0 !important;
		text-align: center !important;
	}

	.g2f-cta-compact__copy {
		align-items: center !important;
		text-align: center !important;
	}

	.g2f-cta-compact__text {
		max-width: 320px !important;
		font-size: clamp(34px, 11vw, 46px) !important;
		line-height: 1.12 !important;
		letter-spacing: -0.06em !important;
		white-space: normal !important;
	}

	.g2f-cta-compact__sub {
		font-size: 15px !important;
		line-height: 1.34 !important;
	}

	.g2f-cta-compact__btn {
		min-width: 210px !important;
		min-height: 54px !important;
		font-size: 14px !important;
	}

	.g2f-single-project .g2f-related-projects {
		padding: 54px 22px !important;
		background: #f0f0f0 !important;
	}

	.g2f-single-project .g2f-related-projects > .wp-block-group {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 22px !important;
		padding: 0 !important;
	}

	.g2f-related-projects h2 {
		font-size: clamp(38px, 12vw, 52px) !important;
		line-height: 1.06 !important;
		letter-spacing: -0.06em !important;
	}

	.g2f-related-projects__intro {
		font-size: 18px !important;
		line-height: 1.45 !important;
		text-align: left !important;
	}

	.g2f-related-projects__actions {
		width: 100% !important;
		justify-content: flex-start !important;
	}

	.g2f-related-projects__button .wp-block-button__link {
		min-width: 190px !important;
		min-height: 44px !important;
		padding: 0 22px !important;
		font-size: 12px !important;
		background: transparent !important;
		color: #111 !important;
		border: 1.5px solid #111 !important;
	}

	.g2f-footer {
		padding: 56px 22px !important;
	}

	.g2f-footer > .wp-block-group,
	.g2f-footer > .wp-block-group > .wp-block-group:first-of-type,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		gap: 28px !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .wp-block-group:first-child h2 {
		font-size: clamp(42px, 13vw, 58px) !important;
		line-height: 0.98 !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:first-of-type > .g2f-button-arrow-light {
		min-width: 210px !important;
		min-height: 52px !important;
	}

	.g2f-footer > .wp-block-group > hr.wp-block-separator {
		width: 100% !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:first-child,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group {
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		gap: 20px !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:first-child a,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:first-child a,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:first-child a,
	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child p:last-child a {
		font-size: 16px !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	.g2f-footer > .wp-block-group > .wp-block-group:nth-of-type(2) > .wp-block-group:last-child > .wp-block-group:last-child {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 18px !important;
	}

	.g2f-footer + .wp-block-group {
		border-top-width: 20px !important;
		padding: 20px 22px !important;
		text-align: center !important;
	}
}

@media (max-width: 420px) {
	.g2f-hero,
	.g2f-hero-banner,
	.g2f-hero-about,
	.g2f-hero-services,
	.g2f-hero-contact,
	.g2f-hero-projects,
	.g2f-hero-project-wrap {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.g2f-hero-title {
		font-size: clamp(33px, 12vw, 42px) !important;
	}

	.g2f-single-project .wp-block-post-content p,
	.g2f-project-default-content p,
	.g2f-single-project .wp-block-post-content li,
	.g2f-project-default-content li {
		font-size: 16px !important;
	}
}

/* ==========================================================================
   Mobile reviewed refinements
   ========================================================================== */
@media (max-width: 768px) {
	.g2f-hero-about__image,
	.g2f-hero-services__image,
	.g2f-hero-contact__image,
	.g2f-hero-projects__image,
	.g2f-hero-banner-cover,
	.g2f-hero-banner .wp-block-cover,
	.g2f-project-hero-slider {
		position: relative !important;
		overflow: hidden !important;
	}

	.g2f-hero .g2f-hero-cover,
	.g2f-hero .wp-block-cover {
		max-height: none !important;
	}

	.g2f-services-rows {
		width: 100% !important;
		max-width: none !important;
		padding: 0 22px 56px !important;
	}

	.g2f-services-rows > .wp-block-group,
	.g2f-service-row,
	.g2f-service-row__image,
	.g2f-service-row__content {
		width: 100% !important;
		max-width: none !important;
	}

	.g2f-service-row__image {
		min-height: 0 !important;
		background: #eee !important;
	}

	.g2f-service-row__image figure {
		margin: 0 !important;
	}

	.g2f-service-row__image img {
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 315 / 210 !important;
		object-fit: cover !important;
	}

	.g2f-service-row__content {
		align-items: flex-start !important;
		padding: 0 !important;
		text-align: left !important;
	}

	.g2f-service-row__content .g2f-button-arrow,
	.g2f-service-block .g2f-button-arrow {
		align-self: flex-start !important;
		min-width: 0 !important;
	}

	.g2f-services-intro-section,
	.g2f-service-block {
		padding: 54px 22px !important;
	}

	.g2f-services-intro-section > .wp-block-columns,
	.g2f-service-detail-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 28px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.g2f-services-intro-section > .wp-block-columns > .wp-block-column,
	.g2f-service-detail-row > .wp-block-column {
		width: 100% !important;
		flex-basis: auto !important;
		min-width: 0 !important;
	}

	.g2f-services-intro-section > .wp-block-columns > .wp-block-column:last-child {
		height: auto !important;
		min-height: 0 !important;
		aspect-ratio: 315 / 390 !important;
		background-color: #eee !important;
	}

	.g2f-services-intro-img,
	.g2f-service-detail-img {
		display: block !important;
		width: 100% !important;
		margin: 0 !important;
		background: #eee !important;
	}

	.g2f-services-intro-img img,
	.g2f-service-detail-img img {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 315 / 230 !important;
		object-fit: cover !important;
	}

	.g2f-services-intro-img img[src=""],
	.g2f-service-detail-img img[src=""] {
		visibility: hidden !important;
	}

	.g2f-service-heading {
		font-size: clamp(36px, 12vw, 48px) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.06em !important;
	}

	.g2f-service-block p,
	.g2f-services-intro-section p {
		font-size: 16px !important;
		line-height: 1.55 !important;
		text-align: left !important;
	}

	.g2f-projects-grid-section {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.g2f-projects-grid-section h2,
	.g2f-projects-title,
	.g2f-projects-heading {
		width: 100% !important;
		max-width: 320px !important;
		text-align: left !important;
	}

	.g2f-projects-grid-section .g2f-project-card__link,
	.g2f-related-projects__grid .g2f-project-card__link {
		width: 100% !important;
	}

	.g2f-single-project .g2f-project-page-title {
		font-size: clamp(42px, 13vw, 58px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.065em !important;
		margin: 0 0 38px !important;
	}

	.g2f-single-project .g2f-project-section-title {
		font-size: clamp(34px, 10vw, 44px) !important;
		line-height: 1.05 !important;
		letter-spacing: -0.055em !important;
		margin: 0 0 24px !important;
	}

	.g2f-single-project .wp-block-post-content,
	.g2f-single-project .wp-block-post-content > *,
	.g2f-project-default-content,
	.g2f-project-default-content > * {
		max-width: none !important;
	}

	.g2f-single-project .wp-block-post-content p,
	.g2f-project-default-content p {
		font-size: 16px !important;
		line-height: 1.62 !important;
		text-align: left !important;
		word-spacing: normal !important;
		hyphens: none !important;
	}

	.g2f-single-project .g2f-sidebar-box {
		display: block !important;
		padding: 28px 24px !important;
	}

	.g2f-single-project .g2f-sidebar-item {
		display: block !important;
		margin: 0 0 10px !important;
	}

	.g2f-single-project .g2f-sidebar-label,
	.g2f-single-project .g2f-sidebar-value {
		display: inline !important;
	}

	.g2f-project-nav {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.g2f-cta-compact__text {
		max-width: 310px !important;
		font-size: clamp(30px, 9.5vw, 38px) !important;
		line-height: 1.12 !important;
	}

	.g2f-cta-compact__text strong {
		display: inline !important;
	}

	.g2f-footer-top,
	.g2f-footer-links-row,
	.g2f-footer-contact-stack,
	.g2f-footer-social-row,
	.g2f-footer-contact-row {
		width: 100% !important;
		max-width: none !important;
	}

	.g2f-footer-contact-row {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 12px !important;
	}

	.g2f-footer-email,
	.g2f-footer-phone {
		margin: 0 !important;
	}

	.g2f-footer-email a,
	.g2f-footer-phone a {
		font-size: 14px !important;
		white-space: nowrap !important;
	}
}

/* ==========================================================================
   Mobile layout contract
   WordPress block markup and inline spacing vary between templates. This final
   mobile layer normalizes the rendered components instead of relying on editor
   block order.
   ========================================================================== */
@media (max-width: 782px) {
	html,
	body {
		overflow-x: hidden !important;
	}

	body .wp-site-blocks > header.wp-block-template-part,
	body header.site-header,
	body header.wp-block-template-part {
		position: relative !important;
		z-index: 1000 !important;
		width: 100% !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	body .g2f-header-shell {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 22px !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	body .g2f-header-inner {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		height: 64px !important;
		min-height: 64px !important;
		margin: 0 !important;
		padding: 0 !important;
		gap: 16px !important;
		overflow: visible !important;
	}

	body .g2f-header-inner .g2f-header-nav,
	body .g2f-header-inner .g2f-header-cta,
	body .g2f-header-nav,
	body .g2f-header-cta,
	body .g2f-header-nav *,
	body .g2f-header-cta *,
	body header.site-header nav.wp-block-navigation,
	body header.site-header .wp-block-navigation__container,
	body header.site-header .wp-block-navigation-item,
	body header.site-header .wp-block-navigation-item__content,
	body .g2f-header-inner nav.wp-block-navigation,
	body .g2f-header-inner .wp-block-navigation__responsive-container,
	body .g2f-header-inner .wp-block-navigation__responsive-container-content {
		position: absolute !important;
		display: none !important;
		visibility: hidden !important;
		width: 0 !important;
		height: 0 !important;
		min-width: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		pointer-events: none !important;
	}

	body .g2f-header-inner > .wp-block-group:first-child {
		position: relative !important;
		z-index: 2 !important;
		display: flex !important;
		align-items: center !important;
		flex: 0 0 auto !important;
		min-width: 0 !important;
	}

	body .g2f-logo-link {
		display: block !important;
		width: 108px !important;
		height: 42px !important;
		flex: 0 0 108px !important;
		background-image: url("../images/logo.svg") !important;
		background-size: contain !important;
		background-repeat: no-repeat !important;
		background-position: left center !important;
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}

	body .g2f-logo-link img {
		display: block !important;
		width: 108px !important;
		height: auto !important;
		max-width: 108px !important;
	}

	body .site-header .g2f-logo-link,
	body header.site-header .g2f-logo-link,
	body header.wp-block-template-part .g2f-logo-link,
	body .site-header.is-sticky .g2f-logo-link {
		display: block !important;
		width: 108px !important;
		height: 42px !important;
		flex: 0 0 108px !important;
		background-image: url("../images/logo.svg") !important;
		background-size: contain !important;
		background-repeat: no-repeat !important;
		background-position: left center !important;
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}

	body .g2f-logo-link::before,
	body .g2f-logo-link::after {
		content: none !important;
		display: none !important;
	}

	body .g2f-hamburger {
		position: relative !important;
		z-index: 3 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 38px !important;
		height: 38px !important;
		flex: 0 0 38px !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	body .g2f-hamburger__bar {
		width: 20px !important;
		height: 2px !important;
		background: #111 !important;
	}

	body .g2f-hero .g2f-vertical-text-strip,
	body .g2f-hero .g2f-vertical-text-strip *,
	body .g2f-hero-banner .g2f-vertical-text-strip,
	body .g2f-hero-banner .g2f-vertical-text-strip *,
	body .g2f-vertical-text-strip,
	body .g2f-vertical-text-strip *,
	body .g2f-hero-side-label,
	body .g2f-hero-about__label-wrap,
	body .g2f-hero-about__label,
	body .g2f-hero-services__label,
	body .g2f-hero-contact__label,
	body .g2f-hero-projects__label,
	body .g2f-hero-project__label,
	body .g2f-cover-hero__label,
	body .g2f-svc-hero__label {
		position: absolute !important;
		display: none !important;
		visibility: hidden !important;
		width: 0 !important;
		height: 0 !important;
		min-width: 0 !important;
		min-height: 0 !important;
		flex: 0 0 0 !important;
		overflow: hidden !important;
		pointer-events: none !important;
	}

	body .g2f-hero,
	body .g2f-hero-banner,
	body .g2f-hero-about-wrap,
	body .g2f-hero-contact-wrap,
	body .g2f-hero-projects-wrap {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		min-height: 0 !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 18px 34px !important;
		background: #fff !important;
		overflow: visible !important;
	}

	body .g2f-hero-wrapper,
	body .g2f-hero-about-container,
	body .g2f-hero-contact-container,
	body .g2f-hero-projects-container {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		min-height: 0 !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		gap: 0 !important;
	}

	body.home .g2f-hero .g2f-hero-wrapper {
		min-height: 0 !important;
		height: auto !important;
	}

	body.single-project .site-main {
		padding-top: 0 !important;
	}

	body main.site-main,
	body main.wp-block-group {
		padding-top: 0 !important;
	}

	body.single-project .g2f-hero-project-wrap {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 22px 34px !important;
		background: #fff !important;
		overflow: visible !important;
	}

	body.single-project .g2f-hero-project-container {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.single-project .g2f-project-hero-slider {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		aspect-ratio: 315 / 410 !important;
		height: auto !important;
		min-height: 0 !important;
	}

	body.home .g2f-hero .g2f-hero-cover,
	body.home .g2f-hero .wp-block-cover {
		display: flex !important;
		width: 100% !important;
		height: min(56svh, 430px) !important;
		min-height: 390px !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		aspect-ratio: auto !important;
		overflow: hidden !important;
	}

	body:not(.home) .g2f-hero .wp-block-cover,
	body .g2f-hero-banner-cover,
	body .g2f-hero-about__image,
	body .g2f-hero-contact__image,
	body .g2f-hero-projects__image {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-height: 0 !important;
		height: auto !important;
		aspect-ratio: 315 / 230 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-size: cover !important;
		background-position: center !important;
	}

	body .g2f-services-hero-title {
		max-width: 330px !important;
		margin: 0 auto !important;
		font-size: clamp(28px, 7.9vw, 34px) !important;
		line-height: 1.05 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
	}

	body .g2f-services-hero-title em,
	body .g2f-services-hero-title strong {
		font-size: inherit !important;
		line-height: inherit !important;
	}

	body .g2f-hero .wp-block-cover__inner-container,
	body .g2f-hero-banner-cover .wp-block-cover__inner-container {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		margin: 0 !important;
		padding: 0 24px !important;
	}

	body .g2f-hero .wp-block-cover__inner-container > .wp-block-group,
	body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	body .g2f-hero-about__content,
	body .g2f-hero-contact__content,
	body .g2f-hero-projects__content {
		display: block !important;
		width: min(100%, 330px) !important;
		max-width: 330px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		text-align: left !important;
	}

	body .g2f-hero .g2f-hero-content-wrap,
	body .g2f-hero .g2f-hero-content {
		display: block !important;
		width: min(100%, 330px) !important;
		max-width: 330px !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}

	body.home .g2f-hero .g2f-hero-title {
		font-size: clamp(34px, 9vw, 38px) !important;
		line-height: 1 !important;
		letter-spacing: -0.055em !important;
	}

	body.home .g2f-hero .g2f-hero-title strong {
		font-weight: 800 !important;
	}

	body.home .g2f-hero .g2f-hero-title-line {
		display: block !important;
		white-space: nowrap !important;
	}

	body.home .g2f-hero .g2f-hero-title-line--top {
		margin-left: 0 !important;
	}

	body.home .g2f-hero .g2f-hero-title-line--bottom {
		font-weight: 800 !important;
	}

	body.home .g2f-hero .g2f-hero-separator {
		width: 100% !important;
		min-width: 0 !important;
		margin: 18px 0 18px !important;
	}

	body.home .g2f-hero .g2f-hero-description {
		max-width: none !important;
		font-size: 13px !important;
		line-height: 1.45 !important;
	}

	body .g2f-services-home,
	body .g2f-services-rows,
	body .g2f-portfolio-split,
	body .g2f-projects-grid-section,
	body .g2f-services-intro-section,
	body .g2f-service-block,
	body .g2f-project-body,
	body .g2f-related-projects {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 54px 22px !important;
	}

	body .g2f-services-home,
	body .g2f-services-rows {
		padding-top: 58px !important;
	}

	body .g2f-services-intro-section {
		padding-top: 52px !important;
		padding-bottom: 52px !important;
	}

	body .g2f-services-header,
	body .g2f-projects-grid-section__header,
	body .g2f-portfolio-split__inner {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		text-align: left !important;
	}

	body .g2f-services-title,
	body .g2f-projects-title,
	body .g2f-portfolio-split h2 {
		font-size: clamp(32px, 11vw, 44px) !important;
		line-height: 1.03 !important;
		letter-spacing: -0.045em !important;
		text-align: left !important;
	}

	body .g2f-service-row,
	body .g2f-services-home .wp-block-columns,
	body .g2f-services-intro-section > .wp-block-columns,
	body .g2f-service-detail-row,
	body .g2f-project-body > .wp-block-columns,
	body .g2f-project-body .wp-block-columns {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		max-width: none !important;
		gap: 22px !important;
		margin: 0 !important;
		transform: none !important;
		opacity: 1 !important;
	}

	body .g2f-service-row__image,
	body .g2f-service-row__content,
	body .g2f-services-home .wp-block-column,
	body .g2f-services-intro-section .wp-block-column,
	body .g2f-service-detail-row .wp-block-column,
	body .g2f-project-body .wp-block-column,
	body .g2f-project-sidebar {
		width: 100% !important;
		max-width: none !important;
		flex: 0 0 auto !important;
		flex-basis: auto !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body .g2f-service-row__image img,
	body .g2f-service-home-img img,
	body .g2f-services-intro-img img,
	body .g2f-service-detail-img img {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 315 / 230 !important;
		object-fit: cover !important;
	}

	body .g2f-service-row__content,
	body .g2f-services-home .wp-block-column:not(:has(img)) {
		width: 100% !important;
		max-width: none !important;
		padding: 0 !important;
		margin: 0 !important;
		transform: none !important;
		opacity: 1 !important;
	}

	body .g2f-service-row__content h3,
	body .g2f-services-home h3,
	body .g2f-service-row__content .wp-block-heading {
		font-size: clamp(27px, 8.2vw, 34px) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.035em !important;
		margin: 0 0 10px !important;
	}

	body .g2f-services-intro-section p,
	body .g2f-service-block p,
	body .g2f-service-detail-row p,
	body .g2f-service-row__content p,
	body .g2f-services-home p {
		font-size: 15px !important;
		line-height: 1.55 !important;
		letter-spacing: 0 !important;
		text-align: left !important;
		text-align-last: auto !important;
		word-spacing: normal !important;
		hyphens: none !important;
	}

	body .g2f-services-header p,
	body .g2f-projects-grid-section__header p {
		text-align: center !important;
	}

	body .g2f-services-rows .g2f-service-row__content,
	body .g2f-services-rows .g2f-service-row__image {
		padding-top: 0 !important;
	}

	body .g2f-services-rows .g2f-service-row {
		padding-bottom: 38px !important;
	}

	body .g2f-services-rows .g2f-service-row + .g2f-service-row {
		padding-top: 38px !important;
		border-top: 1px solid #d9d9d9 !important;
	}

	body .g2f-service-row .g2f-button-arrow,
	body .g2f-service-row .g2f-button-arrow--sm {
		margin-left: 0 !important;
		margin-right: auto !important;
	}

	body .g2f-service-card,
	body .g2f-project-card,
	body .g2f-project-grid-card {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	body .g2f-projects-tabs {
		display: none !important;
	}

	body .g2f-projects-filter-select {
		display: block !important;
		width: 100% !important;
		margin: 18px 0 22px !important;
		padding: 12px 16px !important;
		border: 1px solid #d7d7d7 !important;
		border-radius: 6px !important;
		background: #fff !important;
		color: #111 !important;
		font-family: var(--wp--preset--font-family--inter, sans-serif) !important;
		font-size: 14px !important;
	}

	body .g2f-project-page-title {
		font-size: clamp(38px, 10.8vw, 48px) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.055em !important;
		margin: 0 0 42px !important;
	}

	body .g2f-project-section-title {
		font-size: clamp(32px, 9vw, 38px) !important;
		line-height: 1.08 !important;
		margin: 0 0 28px !important;
	}

	body.single-project .g2f-single-project .g2f-project-page-title,
	body.single-project .g2f-project-page-title.wp-block-post-title {
		font-size: clamp(38px, 10.8vw, 48px) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.055em !important;
		margin: 0 0 38px !important;
	}

	body.single-project .g2f-single-project .g2f-project-section-title,
	body.single-project .wp-block-heading.g2f-project-section-title {
		font-size: clamp(32px, 9vw, 38px) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.04em !important;
		margin: 0 0 24px !important;
	}

	body .g2f-single-project .wp-block-post-content,
	body .g2f-project-default-content {
		width: 100% !important;
		max-width: none !important;
	}

	body .g2f-single-project .wp-block-post-content p,
	body .g2f-single-project .wp-block-post-content li,
	body .g2f-project-default-content p,
	body .g2f-project-default-content li {
		font-size: 16px !important;
		line-height: 1.58 !important;
		text-align: left !important;
		text-align-last: auto !important;
		word-spacing: normal !important;
		letter-spacing: 0 !important;
		hyphens: none !important;
	}

	body .g2f-single-project .wp-block-post-content h2,
	body .g2f-single-project .wp-block-post-content h3 {
		font-size: clamp(24px, 7vw, 32px) !important;
		line-height: 1.2 !important;
		margin: 30px 0 14px !important;
	}

	body .g2f-single-project .g2f-sidebar-box {
		width: 100% !important;
		max-width: none !important;
		margin-top: 34px !important;
		padding: 26px 22px !important;
		background: #f2f2f2 !important;
	}

	body .g2f-project-nav {
		padding: 34px 22px !important;
	}

	body .g2f-project-nav a {
		max-width: 46% !important;
		font-size: 15px !important;
		line-height: 1.35 !important;
	}

	body .g2f-cta-compact {
		padding: 56px 22px !important;
	}

	body .g2f-cta-compact__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 26px !important;
		text-align: center !important;
	}

	body .g2f-cta-compact__text {
		max-width: 330px !important;
		font-size: clamp(31px, 8.8vw, 38px) !important;
		line-height: 1.12 !important;
		text-align: center !important;
	}

	body .g2f-cta-compact__text strong {
		display: inline !important;
	}

	body .g2f-related-projects__actions {
		width: 100% !important;
		margin-top: 18px !important;
	}

	body.single-project .g2f-related-projects h2,
	body.single-project .g2f-related-projects .wp-block-heading {
		font-size: clamp(36px, 10vw, 44px) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	body .g2f-footer {
		padding: 56px 22px 14px !important;
	}

	body .g2f-footer > .wp-block-group,
	body .g2f-footer-top,
	body .g2f-footer-links-row,
	body .g2f-footer-contact-stack,
	body .g2f-footer-social-row,
	body .g2f-footer-contact-row {
		width: 100% !important;
		max-width: none !important;
	}

	body .g2f-footer-top,
	body .g2f-footer-links-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 28px !important;
	}

	body .g2f-footer-contact-stack {
		align-items: flex-start !important;
		gap: 18px !important;
	}

	body .g2f-footer-social-row,
	body .g2f-footer-contact-row,
	body .g2f-footer-nav {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		justify-content: flex-start !important;
		gap: 18px !important;
	}

	body .g2f-footer-contact-separator {
		display: none !important;
	}

	body .g2f-footer-email a,
	body .g2f-footer-phone a {
		font-size: 14px !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}
}

@media (max-width: 420px) {
	body .g2f-header-shell,
	body .g2f-hero,
	body .g2f-hero-banner,
	body .g2f-hero-about-wrap,
	body .g2f-hero-contact-wrap,
	body .g2f-hero-projects-wrap {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	body.home .g2f-hero .g2f-hero-cover,
	body.home .g2f-hero .wp-block-cover {
		height: min(56svh, 430px) !important;
		min-height: 390px !important;
	}

	body .g2f-hero .wp-block-cover__inner-container,
	body .g2f-hero-banner-cover .wp-block-cover__inner-container {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	body .g2f-services-home,
	body .g2f-services-rows,
	body .g2f-portfolio-split,
	body .g2f-projects-grid-section,
	body .g2f-services-intro-section,
	body .g2f-service-block,
	body .g2f-project-body,
	body .g2f-related-projects {
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
}

/* ==========================================================================
   Mobile design parity pass
   Keeps the rendered mobile layout aligned with design/reviewed/MOBILE.png.
   This layer intentionally normalizes reusable components after legacy blocks.
   ========================================================================== */
@media (max-width: 782px) {
	:root {
		--g2f-mobile-edge: 18px;
	}

	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden !important;
	}

	body > header,
	body .wp-site-blocks > header,
	body header.wp-block-template-part,
	body header.site-header {
		height: 64px !important;
		min-height: 64px !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #fff !important;
		overflow: visible !important;
	}

	body .g2f-header-shell {
		height: 64px !important;
		min-height: 64px !important;
		padding: 0 var(--g2f-mobile-edge) !important;
	}

	body .g2f-header-inner {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		height: 64px !important;
		min-height: 64px !important;
		padding: 0 !important;
	}

	body .g2f-logo-link,
	body .site-header .g2f-logo-link,
	body header.wp-block-template-part .g2f-logo-link {
		flex: 0 0 104px !important;
		width: 104px !important;
		max-width: 104px !important;
		height: 38px !important;
		margin: 0 !important;
		padding: 0 !important;
		background-position: left center !important;
		background-repeat: no-repeat !important;
		background-size: contain !important;
		opacity: 1 !important;
		transform: none !important;
	}

	body .g2f-header-nav,
	body .g2f-header-cta,
	body header .wp-block-navigation {
		display: none !important;
		visibility: hidden !important;
	}

	body .g2f-hamburger {
		display: flex !important;
		flex: 0 0 34px !important;
		align-items: center !important;
		justify-content: center !important;
		width: 34px !important;
		height: 34px !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	body .g2f-hamburger__bar {
		width: 22px !important;
		height: 2px !important;
		margin: 3px 0 !important;
		background: #111 !important;
	}

	body .g2f-mobile-overlay {
		width: min(78vw, 300px) !important;
		padding: 52px 28px 42px !important;
	}

	body .g2f-mobile-nav a {
		font-size: 18px !important;
		line-height: 1.2 !important;
		letter-spacing: 0.02em !important;
	}

	body .g2f-vertical-text-strip,
	body .g2f-hero-side-label {
		display: none !important;
	}

	body .g2f-hero,
	body .g2f-hero-banner,
	body .g2f-hero-about-wrap,
	body .g2f-hero-contact-wrap,
	body .g2f-hero-projects-wrap,
	body.single-project .g2f-hero-project-wrap {
		margin: 0 !important;
		padding: 0 var(--g2f-mobile-edge) 34px !important;
		background: #fff !important;
	}

	body .g2f-hero-wrapper,
	body .g2f-hero-about-container,
	body .g2f-hero-contact-container,
	body .g2f-hero-projects-container {
		display: block !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.home .g2f-hero .wp-block-cover,
	body.home .g2f-hero .g2f-hero-cover {
		width: 100% !important;
		height: 352px !important;
		min-height: 352px !important;
		max-height: 352px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.home .g2f-hero .wp-block-cover__inner-container {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		height: 100% !important;
		padding: 0 22px !important;
	}

	body.home .g2f-hero .g2f-hero-content-wrap,
	body.home .g2f-hero .g2f-hero-content,
	body.home .g2f-hero .wp-block-cover__inner-container > .wp-block-group {
		width: 100% !important;
		max-width: 275px !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: left !important;
	}

	body.home .g2f-hero .g2f-hero-title {
		max-width: 275px !important;
		font-size: 32px !important;
		line-height: 0.96 !important;
		letter-spacing: -0.06em !important;
	}

	body.home .g2f-hero .g2f-hero-title-line {
		display: block !important;
		white-space: normal !important;
	}

	body.home .g2f-hero .g2f-hero-title-line--top {
		font-weight: 300 !important;
	}

	body.home .g2f-hero .g2f-hero-title-line--bottom {
		font-weight: 800 !important;
	}

	body.home .g2f-hero .g2f-hero-eyebrow {
		font-size: 11px !important;
		line-height: 1 !important;
		letter-spacing: 0.12em !important;
	}

	body.home .g2f-hero .g2f-hero-separator {
		width: 100% !important;
		margin: 15px 0 !important;
	}

	body.home .g2f-hero .g2f-hero-description {
		max-width: 260px !important;
		font-size: 13px !important;
		line-height: 1.4 !important;
	}

	body:not(.home) .g2f-hero .wp-block-cover,
	body .g2f-hero-banner-cover,
	body .g2f-hero-about__image,
	body .g2f-hero-contact__image,
	body .g2f-hero-projects__image {
		width: 100% !important;
		height: 300px !important;
		min-height: 300px !important;
		margin: 0 !important;
		padding: 0 !important;
		aspect-ratio: auto !important;
	}

	body .g2f-hero-banner-cover .wp-block-cover__inner-container,
	body .g2f-hero-about__content,
	body .g2f-hero-contact__content,
	body .g2f-hero-projects__content {
		position: absolute !important;
		inset: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		padding: 0 24px !important;
		text-align: center !important;
	}

	body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group {
		width: 100% !important;
		max-width: 330px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	body .g2f-services-hero-title,
	body .g2f-hero-about__heading,
	body .g2f-hero-contact__heading,
	body .g2f-hero-projects__heading,
	body .g2f-hero-banner h1 {
		max-width: 330px !important;
		margin: 0 auto !important;
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
	}

	body.home .g2f-about-section {
		padding: 48px var(--g2f-mobile-edge) 56px !important;
	}

	body .g2f-about-inner {
		display: flex !important;
		flex-direction: column !important;
		gap: 24px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body .g2f-about-text-col {
		order: 1 !important;
		width: 100% !important;
		max-width: none !important;
	}

	body .g2f-about-image-col {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
	}

	body .g2f-about-heading {
		margin: 0 0 20px !important;
		font-size: 30px !important;
		line-height: 1.06 !important;
		letter-spacing: -0.04em !important;
	}

	body .g2f-about-body p,
	body .g2f-about-muted {
		margin: 0 0 18px !important;
		font-size: 16px !important;
		line-height: 1.55 !important;
	}

	body .g2f-about-img {
		display: block !important;
		width: 100% !important;
		height: 330px !important;
		object-fit: cover !important;
	}

	body .g2f-services-rows,
	body .g2f-services-home {
		padding: 56px var(--g2f-mobile-edge) !important;
	}

	body .g2f-services-header {
		margin: 0 0 36px !important;
		text-align: center !important;
	}

	body .g2f-services-title {
		font-size: 29px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.04em !important;
		text-align: center !important;
	}

	body .g2f-services-subtitle {
		max-width: 310px !important;
		margin: 16px auto 0 !important;
		font-size: 14px !important;
		line-height: 1.5 !important;
		text-align: center !important;
	}

	body .g2f-service-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 0 !important;
		width: 100% !important;
		margin: 0 0 28px !important;
		padding: 0 0 28px !important;
		border-bottom: 1px solid #d8d8d8 !important;
	}

	body .g2f-service-row__image {
		order: 1 !important;
		width: 100% !important;
		max-width: none !important;
	}

	body .g2f-service-row__content {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
		padding: 18px 0 0 !important;
	}

	body .g2f-service-row__image figure {
		margin: 0 !important;
	}

	body .g2f-service-row__image img {
		display: block !important;
		width: 100% !important;
		height: 225px !important;
		object-fit: cover !important;
	}

	body .g2f-service-row__content h2,
	body .g2f-service-row__content h3 {
		margin: 0 0 10px !important;
		font-size: 26px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.035em !important;
	}

	body .g2f-service-row__content p {
		margin: 0 0 10px !important;
		font-size: 15px !important;
		line-height: 1.55 !important;
	}

	body .g2f-services-intro-section,
	body .g2f-service-block,
	body .g2f-portfolio-split,
	body .g2f-projects-grid-section,
	body .g2f-testimonials,
	body .g2f-clients-section,
	body .g2f-project-body,
	body .g2f-related-projects {
		padding-right: var(--g2f-mobile-edge) !important;
		padding-left: var(--g2f-mobile-edge) !important;
	}

	body .g2f-services-intro-section,
	body .g2f-service-block {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}

	body .g2f-services-intro-section > .wp-block-columns,
	body .g2f-service-detail-row {
		flex-direction: column !important;
		gap: 24px !important;
	}

	body .g2f-services-intro-section p,
	body .g2f-service-block p,
	body .g2f-service-block li {
		font-size: 15px !important;
		line-height: 1.58 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
		text-align-last: auto !important;
		hyphens: none !important;
	}

	body .g2f-services-intro-img img,
	body .g2f-service-detail-img img {
		width: 100% !important;
		height: 250px !important;
		object-fit: cover !important;
	}

	body .g2f-service-heading {
		font-size: 32px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.04em !important;
	}

	body .g2f-portfolio-split {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}

	body .g2f-portfolio-inner {
		display: block !important;
	}

	body .g2f-portfolio-heading {
		margin: 0 0 24px !important;
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.04em !important;
	}

	body .g2f-portfolio-right p {
		font-size: 14px !important;
		line-height: 1.58 !important;
	}

	body .g2f-projects-grid-section {
		padding-top: 52px !important;
		padding-bottom: 56px !important;
	}

	body .g2f-projects-heading,
	body .g2f-projects-title,
	body .g2f-projects-grid-section h2 {
		font-size: 30px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
		text-align: left !important;
	}

	body .g2f-projects-tabs {
		display: none !important;
	}

	body .g2f-projects-filter-select {
		display: block !important;
		width: 100% !important;
		height: 46px !important;
		margin: 20px 0 !important;
		padding: 0 14px !important;
		border: 1px solid #d0d0d0 !important;
		border-radius: 6px !important;
		background: #fff !important;
		color: #111 !important;
		font-size: 14px !important;
	}

	body .g2f-projects-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}

	body .g2f-project-card__image,
	body .g2f-project-card__image img {
		width: 100% !important;
		height: 225px !important;
		object-fit: cover !important;
	}

	body .g2f-project-card__title {
		font-size: 18px !important;
		line-height: 1.15 !important;
	}

	body .g2f-project-card__cat {
		font-size: 12px !important;
	}

	body.single-project .g2f-project-hero-slider {
		height: 520px !important;
		min-height: 520px !important;
		aspect-ratio: auto !important;
	}

	body.single-project .g2f-project-hero-slider__content {
		right: 24px !important;
		bottom: 28px !important;
		left: 24px !important;
	}

	body.single-project .g2f-project-hero-slider__title {
		font-size: 36px !important;
		line-height: 1.05 !important;
		letter-spacing: -0.05em !important;
	}

	body.single-project .g2f-project-hero-slider__content p {
		font-size: 16px !important;
		line-height: 1.35 !important;
	}

	body.single-project .g2f-project-page-title {
		font-size: 40px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.05em !important;
	}

	body.single-project .g2f-project-section-title {
		font-size: 32px !important;
		line-height: 1.1 !important;
	}

	body.single-project .g2f-project-body {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
	}

	body.single-project .g2f-project-body > .wp-block-columns {
		flex-direction: column !important;
		gap: 34px !important;
	}

	body.single-project .g2f-project-default-content p,
	body.single-project .g2f-project-default-content li,
	body.single-project .wp-block-post-content p,
	body.single-project .wp-block-post-content li {
		font-size: 16px !important;
		line-height: 1.6 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
		text-align-last: auto !important;
	}

	body.single-project .g2f-project-sidebar {
		width: 100% !important;
	}

	body.single-project .g2f-sidebar-box,
	body.single-project .g2f-project-info {
		padding: 28px 24px !important;
		background: #f2f2f2 !important;
	}

	body .g2f-cta-compact {
		padding: 54px 22px !important;
	}

	body .g2f-cta-compact__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 26px !important;
		text-align: center !important;
	}

	body .g2f-cta-compact__text {
		max-width: 330px !important;
		font-size: 36px !important;
		line-height: 1.12 !important;
		text-align: center !important;
		word-break: normal !important;
		overflow-wrap: normal !important;
	}

	body .g2f-cta-compact__text strong {
		display: inline !important;
	}

	body .g2f-cta-compact__sub {
		font-size: 14px !important;
		line-height: 1.45 !important;
	}

	body .g2f-clients-section,
	body .g2f-testimonials {
		padding-top: 52px !important;
		padding-bottom: 52px !important;
	}

	body .g2f-clients-heading,
	body .g2f-testimonials h2 {
		font-size: 30px !important;
		line-height: 1.08 !important;
	}

	body .g2f-clients-sub {
		font-size: 13px !important;
		line-height: 1.45 !important;
	}

	body .g2f-footer {
		padding: 52px 22px 14px !important;
	}

	body .g2f-footer-top,
	body .g2f-footer-links-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 28px !important;
		text-align: center !important;
	}

	body .g2f-footer h2 {
		font-size: 36px !important;
		line-height: 1.05 !important;
		text-align: center !important;
	}

	body .g2f-footer-brand p {
		font-size: 14px !important;
		line-height: 1.35 !important;
		text-align: center !important;
	}

	body .g2f-footer-rule {
		margin: 26px 0 !important;
	}

	body .g2f-footer-nav,
	body .g2f-footer-social-row,
	body .g2f-footer-contact-row {
		display: flex !important;
		flex-flow: row wrap !important;
		justify-content: center !important;
		gap: 18px !important;
	}

	body .g2f-footer-nav p,
	body .g2f-footer-social-row p,
	body .g2f-footer-contact-row p {
		margin: 0 !important;
		font-size: 13px !important;
		line-height: 1.2 !important;
	}

	body .g2f-footer-contact-separator {
		display: none !important;
	}

	body .g2f-footer-email a,
	body .g2f-footer-phone a {
		font-size: 13px !important;
		white-space: nowrap !important;
	}

	body .g2f-footer-copyright-bar {
		padding: 18px 22px !important;
	}

	body .g2f-footer-copyright-bar p {
		font-size: 11px !important;
	}
}

@media (max-width: 480px) {
	:root {
		--g2f-mobile-edge: 18px;
	}

	body.home .g2f-hero .wp-block-cover,
	body.home .g2f-hero .g2f-hero-cover {
		height: 352px !important;
		min-height: 352px !important;
	}

	body.home .g2f-hero .g2f-hero-title {
		font-size: 32px !important;
	}

	body.home .g2f-hero .wp-block-cover__inner-container {
		padding: 0 22px !important;
	}

	body .g2f-services-hero-title,
	body .g2f-hero-about__heading,
	body .g2f-hero-contact__heading,
	body .g2f-hero-projects__heading,
	body .g2f-hero-banner h1 {
		font-size: 28px !important;
	}
}

/* ==========================================================================
   Mobile final parity corrections
   Final small-screen layer for the reviewed mobile designs.
   ========================================================================== */
@media (max-width: 782px) {
	html body {
		--g2f-mobile-edge: 18px;
	}

	html body .wp-site-blocks {
		overflow-x: hidden !important;
	}

	html body .g2f-hero-banner,
	html body .g2f-hero-about-wrap,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 var(--g2f-mobile-edge) 32px !important;
		background: #fff !important;
	}

	html body .g2f-hero-banner .g2f-hero-wrapper,
	html body .g2f-hero-about-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		gap: 0 !important;
	}

	html body .g2f-hero-banner .g2f-vertical-text-strip,
	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about__label,
	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label {
		display: none !important;
	}

	html body .g2f-hero-banner .wp-block-cover.g2f-hero-banner-cover,
	html body .g2f-hero-banner-cover,
	html body .g2f-hero-about__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		max-width: none !important;
		height: 300px !important;
		min-height: 300px !important;
		max-height: 300px !important;
		margin: 0 !important;
		padding: 0 !important;
		aspect-ratio: auto !important;
		overflow: hidden !important;
		transform: none !important;
	}

	html body .g2f-hero-banner .wp-block-cover__image-background,
	html body .g2f-hero-banner-cover img,
	html body .g2f-hero-about__image img,
	html body .g2f-hero-contact__image img,
	html body .g2f-hero-projects__image img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
	html body .g2f-hero-about__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content {
		position: absolute !important;
		inset: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		margin: 0 !important;
		padding: 0 24px !important;
		text-align: center !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-about__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > * {
		width: min(100%, 330px) !important;
		max-width: 330px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-services-hero-title,
	html body .g2f-services-hero-title em,
	html body .g2f-services-hero-title strong,
	html body .g2f-hero-banner h1,
	html body .g2f-hero-banner h1 em,
	html body .g2f-hero-banner h1 strong,
	html body .g2f-hero-about__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading {
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
	}

	html body .g2f-services-hero-title {
		max-width: 330px !important;
		margin: 0 auto !important;
	}

	html body.home .g2f-hero {
		padding: 0 var(--g2f-mobile-edge) 36px !important;
	}

	html body.home .g2f-hero .wp-block-cover,
	html body.home .g2f-hero .g2f-hero-cover {
		height: 350px !important;
		min-height: 350px !important;
		max-height: 350px !important;
	}

	html body.home .g2f-hero .wp-block-cover__inner-container {
		justify-content: center !important;
		padding: 0 22px !important;
	}

	html body.home .g2f-hero .g2f-hero-content,
	html body.home .g2f-hero .g2f-hero-content-wrap,
	html body.home .g2f-hero .wp-block-cover__inner-container > .wp-block-group {
		width: min(100%, 280px) !important;
		max-width: 280px !important;
		margin: 0 auto !important;
	}

	html body.home .g2f-hero .g2f-hero-title {
		font-size: 31px !important;
		line-height: 0.96 !important;
		letter-spacing: -0.06em !important;
	}

	html body.home .g2f-about-heading {
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.home .g2f-about-body p,
	html body .g2f-about-body p,
	html body .g2f-about-muted,
	html body .g2f-service-block p,
	html body .g2f-services-intro-section p,
	html body .g2f-service-block li {
		font-size: 15px !important;
		line-height: 1.55 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
	}

	html body .g2f-service-heading {
		font-size: 32px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body .g2f-service-subheading {
		font-size: 15px !important;
		line-height: 1.35 !important;
	}

	html body.single-project .g2f-project-page-title {
		font-size: 34px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.single-project .g2f-project-section-title {
		font-size: 30px !important;
		line-height: 1.1 !important;
	}

	html body.single-project .g2f-project-default-content p,
	html body.single-project .g2f-project-default-content li,
	html body.single-project .wp-block-post-content p,
html body.single-project .wp-block-post-content li {
	font-size: 15.5px !important;
	line-height: 1.58 !important;
	letter-spacing: 0 !important;
	word-spacing: normal !important;
	text-align: left !important;
	text-align-last: auto !important;
}
}

/* ==========================================================================
   Reviewed mobile parity - final cascade layer
   This must stay at the end because older mobile rules use high specificity.
   ========================================================================== */
@media (max-width: 782px) {
	html body {
		--g2f-mobile-edge: 18px;
	}

	html body .g2f-mobile-overlay {
		position: fixed !important;
		inset: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100vw !important;
		max-width: none !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		margin: 0 !important;
		padding: 72px 28px 48px !important;
		background: #080808 !important;
		color: #fff !important;
		box-sizing: border-box !important;
		z-index: 999999 !important;
	}

	html body .g2f-mobile-overlay.is-open {
		opacity: 1 !important;
		visibility: visible !important;
		background: #080808 !important;
	}

	html body header,
	html body .site-header,
	html body .wp-block-template-part > header {
		min-height: 64px !important;
		height: 64px !important;
		padding: 0 18px !important;
	}

	html body header .wp-block-buttons,
	html body header .g2f-header-cta,
	html body header .g2f-header-button {
		display: none !important;
	}

	html body .g2f-vertical-text-strip,
	html body .g2f-hero-side-label,
	html body .g2f-hero-projects__label {
		display: none !important;
	}

	html body .g2f-hero-banner,
	html body .g2f-hero-about-wrap,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 var(--g2f-mobile-edge) 32px !important;
		box-sizing: border-box !important;
		overflow: visible !important;
	}

	html body .g2f-hero-wrapper,
	html body .g2f-hero-about-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-banner .wp-block-cover,
	html body .g2f-hero-banner-cover,
	html body .g2f-hero-about__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		height: 300px !important;
		min-height: 300px !important;
		max-height: 300px !important;
		margin: 0 !important;
		padding: 0 !important;
		transform: none !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
	}

	html body .g2f-hero-banner .wp-block-cover__inner-container,
	html body .g2f-hero-about__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content {
		position: absolute !important;
		inset: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 24px !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-banner .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-about__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > * {
		width: min(100%, 330px) !important;
		max-width: 330px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body.page-template-page-services .g2f-services-hero-title.wp-block-heading,
	html body.page-template-page-services .g2f-services-hero-title.wp-block-heading em,
	html body.page-template-page-services .g2f-services-hero-title.wp-block-heading strong,
	html body .g2f-hero-about__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading {
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
	}

	html body .g2f-hero-projects__heading {
		margin: 0 0 10px !important;
		color: #fff !important;
	}

	html body .g2f-hero-projects__sub {
		position: static !important;
		display: block !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 auto !important;
		padding: 0 !important;
		color: #fff !important;
		font-size: 9px !important;
		line-height: 1.1 !important;
		font-weight: 700 !important;
		letter-spacing: 0.34em !important;
		text-transform: uppercase !important;
		transform: none !important;
		text-align: center !important;
	}

	html body.home .g2f-hero {
		padding: 0 var(--g2f-mobile-edge) 30px !important;
	}

	html body.home .g2f-hero .wp-block-cover,
	html body.home .g2f-hero .g2f-hero-cover {
		height: 350px !important;
		min-height: 350px !important;
		max-height: 350px !important;
	}

	html body.home .g2f-hero .wp-block-cover__inner-container {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 0 22px !important;
	}

	html body.home .g2f-hero .g2f-hero-content,
	html body.home .g2f-hero .g2f-hero-content-wrap,
	html body.home .g2f-hero .wp-block-cover__inner-container > .wp-block-group {
		width: min(100%, 280px) !important;
		max-width: 280px !important;
		margin: 0 auto !important;
		text-align: left !important;
	}

	html body.home .g2f-hero .g2f-hero-title {
		font-size: 31px !important;
		line-height: 0.96 !important;
		letter-spacing: -0.06em !important;
	}

	html body.home .g2f-about-heading,
	html body.home .g2f-projects-heading.wp-block-heading,
	html body .g2f-projects-heading.wp-block-heading,
	html body.home .g2f-portfolio-heading.wp-block-heading {
		font-size: 28px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.home .g2f-portfolio-heading.wp-block-heading {
		max-width: 250px !important;
	}

	html body.home .g2f-services-section .wp-block-column h2.wp-block-heading {
		font-size: 26px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.035em !important;
	}

	html body.home .g2f-about-body p,
	html body .g2f-about-body p,
	html body .g2f-about-muted,
	html body .g2f-service-block p,
	html body .g2f-services-intro-section p,
	html body .g2f-service-block li,
	html body .g2f-services-intro-section li {
		font-size: 15px !important;
		line-height: 1.55 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
		text-align-last: auto !important;
	}

	html body.page-template-page-services .g2f-services-intro-section {
		padding: 56px var(--g2f-mobile-edge) 66px !important;
	}

	html body.page-template-page-services .g2f-services-intro-section .wp-block-columns,
	html body.page-template-page-services .g2f-service-detail-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 28px !important;
	}

	html body.page-template-page-services .g2f-services-intro-section .wp-block-column,
	html body.page-template-page-services .g2f-service-detail-row .wp-block-column {
		flex-basis: auto !important;
		width: 100% !important;
	}

	html body.page-template-page-services .g2f-service-heading.wp-block-heading {
		font-size: 32px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.page-template-page-services .g2f-service-subheading {
		font-size: 15px !important;
		line-height: 1.35 !important;
	}

	html body.page-template-page-services .g2f-services-intro-img img,
	html body.page-template-page-services .g2f-service-detail-img img {
		display: block !important;
		width: 100% !important;
		height: 300px !important;
		object-fit: cover !important;
		background: #f2f2f2 !important;
	}

	html body.page-template-page-contact main h1,
	html body.page-template-page-contact main h2 {
		font-size: 34px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.page-template-page-contact main p {
		font-size: 15.5px !important;
		line-height: 1.6 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
	}

	html body.single-project .g2f-project-body {
		padding: 46px 22px 52px !important;
	}

	html body.single-project .g2f-project-body .wp-block-columns {
		display: flex !important;
		flex-direction: column !important;
		gap: 34px !important;
	}

	html body.single-project .g2f-project-body .wp-block-column {
		width: 100% !important;
		flex-basis: auto !important;
	}

	html body.single-project .g2f-project-page-title.wp-block-post-title,
	html body.single-project .g2f-project-page-title {
		font-size: 34px !important;
		line-height: 1.12 !important;
		letter-spacing: -0.045em !important;
		margin: 0 0 30px !important;
	}

	html body.single-project .g2f-project-section-title.wp-block-heading,
	html body.single-project .g2f-project-section-title {
		font-size: 30px !important;
		line-height: 1.14 !important;
		letter-spacing: -0.04em !important;
		margin: 0 0 28px !important;
	}

	html body.single-project .g2f-project-default-content p,
	html body.single-project .g2f-project-default-content li,
	html body.single-project .wp-block-post-content p,
	html body.single-project .wp-block-post-content li {
		font-size: 15.5px !important;
		line-height: 1.58 !important;
		letter-spacing: 0 !important;
		word-spacing: normal !important;
		text-align: left !important;
		text-align-last: auto !important;
	}

	html body.single-project .g2f-related-projects {
		padding: 56px 22px !important;
	}

	html body.single-project .g2f-related-projects h2 {
		font-size: 34px !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
	}

	html body.single-project .g2f-related-projects__intro {
		font-size: 15.5px !important;
		line-height: 1.55 !important;
	}

	html body .g2f-cta-compact {
		padding: 58px 22px !important;
	}

	html body .g2f-cta-compact__inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 28px !important;
		text-align: center !important;
	}

	html body .g2f-cta-compact__text {
		font-size: 32px !important;
		line-height: 1.15 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
	}

	html body .g2f-cta-bar-section {
		padding: 58px 22px !important;
		overflow: hidden !important;
	}

	html body .g2f-cta-bar-inner {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 28px !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-cta-bar__left {
		width: min(100%, 330px) !important;
		max-width: 330px !important;
		margin: 0 auto !important;
		text-align: center !important;
	}

	html body .g2f-cta-bar__heading {
		width: 100% !important;
		max-width: 330px !important;
		margin: 0 auto 14px !important;
		font-size: 32px !important;
		line-height: 1.15 !important;
		letter-spacing: -0.045em !important;
		text-align: center !important;
		white-space: normal !important;
	}

	html body .g2f-cta-bar__sub {
		width: 100% !important;
		max-width: 260px !important;
		margin: 0 auto !important;
		font-size: 14px !important;
		line-height: 1.35 !important;
		text-align: center !important;
	}

html body .g2f-cta-bar-section .g2f-btn-outline-white {
		position: static !important;
		display: inline-flex !important;
		width: auto !important;
		min-width: 210px !important;
		max-width: calc(100vw - 44px) !important;
		margin: 0 auto !important;
		transform: none !important;
	}
}

/* ==========================================================================
   Bundled hero image fallbacks
   Keeps legacy saved page markup from rendering black/gray blocks when media
   uploads are missing or a cover block was saved without a URL.
   ========================================================================== */
.g2f-hero-about__image {
	background-image: url("../images/about-hero-reference.jpg");
	background-color: #1c1c1c !important;
	background-size: cover !important;
	background-position: center !important;
}

.g2f-hero-banner-cover,
.g2f-hero-banner--services .wp-block-cover,
.g2f-hero-services__image,
.g2f-hero-projects__image {
	background-image: url("../images/hero-bg.png") !important;
	background-color: #151515 !important;
	background-size: cover !important;
	background-position: center !important;
}

.g2f-hero-contact__image {
	background-image: url("../images/contact-hero-reference.jpg") !important;
	background-color: #151515 !important;
	background-size: cover !important;
	background-position: center !important;
}

.g2f-hero-banner-cover .wp-block-cover__image-background {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	opacity: 1 !important;
}

.g2f-hero-banner-cover .wp-block-cover__background,
.g2f-hero-projects__overlay,
.g2f-hero-contact__overlay {
	pointer-events: none !important;
}

.g2f-hero-banner-cover .wp-block-cover__inner-container,
.g2f-hero-projects__content,
.g2f-hero-contact__content {
	position: relative !important;
	z-index: 2 !important;
}

.g2f-hero-projects__content,
.g2f-hero-contact__content {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 100% !important;
	text-align: center !important;
}

.g2f-hero-projects__sub,
.g2f-hero-contact__sub {
	margin-top: 24px !important;
	letter-spacing: 0.22em !important;
	color: rgba(255, 255, 255, 0.72) !important;
}

/* ==========================================================================
   Subpage Hero Normalization
   Keeps all subpage hero overlays/text scoped to the image frame and gives
   Services, Projects, and Contact the same centered composition.
   ========================================================================== */
.g2f-hero-about__image,
.g2f-hero-services__image,
.g2f-hero-contact__image,
.g2f-hero-projects__image,
.g2f-hero-banner-cover,
.g2f-hero-banner--services .wp-block-cover {
	position: relative !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

.g2f-hero-services__overlay,
.g2f-hero-contact__overlay,
.g2f-hero-projects__overlay {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	pointer-events: none !important;
}

.g2f-hero-services__content,
.g2f-hero-contact__content,
.g2f-hero-projects__content {
	position: relative !important;
	z-index: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	padding: 0 clamp(24px, 6vw, 80px) !important;
	text-align: center !important;
}

.g2f-hero-banner--services .wp-block-cover__inner-container {
	position: relative !important;
	z-index: 2 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	text-align: center !important;
}

.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 clamp(24px, 6vw, 80px) !important;
	text-align: center !important;
}

.g2f-hero-projects__heading,
.g2f-hero-contact__heading,
.g2f-hero-services__heading,
.g2f-services-hero-title {
	max-width: 840px !important;
	margin: 0 auto !important;
	text-align: center !important;
}

.g2f-hero-banner--services .g2f-services-hero-title {
	font-size: clamp(34px, 4.5vw, 64px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.045em !important;
}

.g2f-hero-projects__sub,
.g2f-hero-contact__sub {
	margin: 24px 0 0 !important;
	text-align: center !important;
}

.g2f-hero-projects-wrap + .g2f-projects-grid-section,
.g2f-hero-projects-wrap + section.g2f-projects-grid-section {
	position: relative !important;
	z-index: 0 !important;
	background: #fff !important;
}

@media (max-width: 768px) {
	.g2f-hero-services__content,
	.g2f-hero-contact__content,
	.g2f-hero-projects__content,
	.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}

	.g2f-hero-banner--services .g2f-services-hero-title {
		font-size: clamp(32px, 11vw, 46px) !important;
	}
}

/* ==========================================================================
   Subpage Hero Final Composition
   Normalizes saved template variations so every subpage hero has the same
   centered text layout and its overlay stays clipped to the image frame.
   ========================================================================== */
html body .g2f-hero-about__image,
html body .g2f-hero-services__image,
html body .g2f-hero-contact__image,
html body .g2f-hero-projects__image,
html body .g2f-hero-banner-cover,
html body .g2f-hero-banner--services .wp-block-cover {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

html body .g2f-hero-about__overlay,
html body .g2f-hero-services__overlay,
html body .g2f-hero-contact__overlay,
html body .g2f-hero-projects__overlay,
html body .g2f-hero-banner-cover .wp-block-cover__background,
html body .g2f-hero-banner--services .wp-block-cover__background {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	pointer-events: none !important;
}

html body .g2f-hero-about__content,
html body .g2f-hero-services__content,
html body .g2f-hero-contact__content,
html body .g2f-hero-projects__content,
html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
html body .g2f-hero-banner--services .wp-block-cover__inner-container {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	margin: 0 !important;
	padding: 0 clamp(24px, 6vw, 80px) !important;
	box-sizing: border-box !important;
	text-align: center !important;
}

html body .g2f-hero-about__content > *,
html body .g2f-hero-services__content > *,
html body .g2f-hero-contact__content > *,
html body .g2f-hero-projects__content > *,
html body .g2f-hero-banner-cover .wp-block-cover__inner-container > *,
html body .g2f-hero-banner--services .wp-block-cover__inner-container > * {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	text-align: center !important;
}

html body .g2f-hero-about__heading,
html body .g2f-hero-services__heading,
html body .g2f-hero-contact__heading,
html body .g2f-hero-projects__heading,
html body .g2f-services-hero-title,
html body .g2f-hero-banner-cover h1,
html body .g2f-hero-banner-cover h2,
html body .g2f-hero-banner--services h1,
html body .g2f-hero-banner--services h2 {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin: 0 auto !important;
	text-align: center !important;
}

html body .g2f-hero-about__sub,
html body .g2f-hero-services__sub,
html body .g2f-hero-contact__sub,
html body .g2f-hero-projects__sub,
html body .g2f-hero-banner-cover p,
html body .g2f-hero-banner--services p {
	margin: 24px auto 0 !important;
	text-align: center !important;
}

html body .g2f-hero-banner--services .g2f-services-hero-title {
	font-size: clamp(30px, 3.6vw, 54px) !important;
	line-height: 1.06 !important;
	letter-spacing: -0.05em !important;
}

html body .g2f-hero-projects-wrap ~ .g2f-projects-grid-section,
html body .g2f-hero-projects-wrap ~ .g2f-cta-bar-section,
html body .g2f-hero-projects-wrap ~ .g2f-clients-section,
html body .g2f-hero-projects-wrap ~ .g2f-footer,
html body .g2f-hero-projects-wrap ~ footer {
	position: relative !important;
	z-index: 2 !important;
	background: #fff !important;
}

@media (max-width: 768px) {
	html body .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
	html body .g2f-hero-banner--services .wp-block-cover__inner-container {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}

	html body .g2f-hero-about__content > *,
	html body .g2f-hero-services__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > *,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > *,
	html body .g2f-hero-banner--services .wp-block-cover__inner-container > * {
		max-width: 330px !important;
	}

	html body .g2f-hero-banner--services .g2f-services-hero-title {
		font-size: clamp(30px, 10vw, 42px) !important;
	}
}

/* ==========================================================================
   Subpage Hero Render Parity
   Block templates can save an extra inner group with inline padding. Normalize
   that layer so About, Services, Projects and Contact keep one text layout.
   ========================================================================== */
html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
html body .g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	height: 100% !important;
	min-height: 100% !important;
	margin: 0 auto !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	text-align: center !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group > *,
html body .g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group > * {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	text-align: center !important;
}

html body .g2f-hero-projects__overlay,
html body .g2f-hero-services__overlay,
html body .g2f-hero-contact__overlay {
	background: rgba(0, 0, 0, 0.45) !important;
	opacity: 1 !important;
	mix-blend-mode: normal !important;
}

html body .g2f-projects-grid-section {
	position: relative !important;
	z-index: 2 !important;
	background: #fff !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
}

html body .g2f-projects-grid-section::before,
html body .g2f-projects-grid-section::after {
	pointer-events: none !important;
}

/* ==========================================================================
   Subpage Hero Runtime Lock
   Last-mile normalization for template markup variants rendered by WordPress.
   Keeps Services, Projects and Contact hero text centered the same way and
   prevents hero overlays/mobile overlays from tinting the rest of the page.
   ========================================================================== */
@media (min-width: 783px) {
	html body .g2f-mobile-overlay {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
}

html body,
html body .wp-site-blocks,
html body main.site-main {
	background: #fff !important;
}

html body .g2f-hero-banner--services,
html body .g2f-hero-services-wrap,
html body .g2f-hero-contact-wrap,
html body .g2f-hero-projects-wrap {
	position: relative !important;
	z-index: 1 !important;
	background: #fff !important;
	isolation: isolate !important;
	overflow: visible !important;
}

html body .g2f-hero-banner--services .g2f-hero-wrapper,
html body .g2f-hero-services-container,
html body .g2f-hero-contact-container,
html body .g2f-hero-projects-container {
	position: relative !important;
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: 0 !important;
	background: #fff !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-banner-cover,
html body .g2f-hero-services__image,
html body .g2f-hero-contact__image,
html body .g2f-hero-projects__image {
	position: relative !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	flex: initial !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: var(--g2f-subpage-hero-height, 520px) !important;
	min-height: var(--g2f-subpage-hero-height, 520px) !important;
	max-height: var(--g2f-subpage-hero-height, 520px) !important;
	margin: 0 !important;
	padding: 0 !important;
	background-color: #111 !important;
	background-size: cover !important;
	background-position: center !important;
	overflow: hidden !important;
	isolation: isolate !important;
	box-shadow: none !important;
}

html body .g2f-hero-banner-cover {
	background-image: url("../images/hero-bg.png") !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__image-background {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__background,
html body .g2f-hero-services__overlay,
html body .g2f-hero-contact__overlay,
html body .g2f-hero-projects__overlay {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.45) !important;
	opacity: 1 !important;
	pointer-events: none !important;
	mix-blend-mode: normal !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
html body .g2f-hero-services__content,
html body .g2f-hero-contact__content,
html body .g2f-hero-projects__content {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 clamp(28px, 6vw, 84px) !important;
	box-sizing: border-box !important;
	text-align: center !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
html body .g2f-hero-services__content > *,
html body .g2f-hero-contact__content > *,
html body .g2f-hero-projects__content > * {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	height: auto !important;
	min-height: 0 !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding: 0 !important;
	text-align: center !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

html body .g2f-hero-services__heading,
html body .g2f-hero-contact__heading,
html body .g2f-hero-projects__heading,
html body .g2f-services-hero-title {
	margin: 0 auto !important;
	font-size: clamp(40px, 3.6vw, 62px) !important;
	font-weight: 300 !important;
	line-height: 0.98 !important;
	letter-spacing: -0.055em !important;
	text-align: center !important;
	text-wrap: balance;
}

html body .g2f-hero-services__heading strong,
html body .g2f-hero-contact__heading strong,
html body .g2f-hero-projects__heading strong,
html body .g2f-services-hero-title strong {
	font-weight: 700 !important;
}

html body .g2f-hero-services__heading em,
html body .g2f-hero-contact__heading em,
html body .g2f-hero-projects__heading em,
html body .g2f-services-hero-title em {
	font-style: italic !important;
	font-weight: inherit !important;
}

html body .g2f-hero-projects__sub,
html body .g2f-hero-contact__sub,
html body .g2f-hero-services__sub,
html body .g2f-hero-banner-cover p {
	margin: 26px auto 0 !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.28em !important;
	text-align: center !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.72) !important;
}

html body .g2f-hero-projects-wrap ~ .g2f-projects-grid-section,
html body .g2f-projects-grid-section,
html body #projects.g2f-projects-grid-section {
	position: relative !important;
	z-index: 2 !important;
	background: #fff !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
}

@media (max-width: 782px) {
	html body .g2f-hero-banner-cover,
	html body .g2f-hero-services__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		height: 300px !important;
		min-height: 300px !important;
		max-height: 300px !important;
	}

	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-services-hero-title {
		font-size: clamp(30px, 9.5vw, 42px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.052em !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
}

/* ==========================================================================
   Subpage Hero Consistency Lock
   Final layer: one geometry and one typography model for all subpage heroes.
   ========================================================================== */
@media (min-width: 783px) {
	html body .g2f-mobile-overlay,
	html body .g2f-mobile-overlay.is-open {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		background: transparent !important;
	}

	html body.has-modal-open {
		overflow: auto !important;
	}
}

html body,
html body .wp-site-blocks,
html body main,
html body .entry-content,
html body.page-template-page-projects,
html body.post-type-archive-project {
	background: #fff !important;
	filter: none !important;
	opacity: 1 !important;
	mix-blend-mode: normal !important;
}

html body .g2f-hero-about-wrap,
html body .g2f-hero-banner--services,
html body .g2f-hero-services-wrap,
html body .g2f-hero-contact-wrap,
html body .g2f-hero-projects-wrap {
	position: relative !important;
	z-index: 1 !important;
	width: 100vw !important;
	max-width: 100vw !important;
	margin: 0 calc(50% - 50vw) !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	padding: 0 0 var(--g2f-home-hero-y-padding, clamp(28px, 3.5svh, 44px)) !important;
	background: #fff !important;
	overflow: visible !important;
	isolation: isolate !important;
	filter: none !important;
	opacity: 1 !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-about-container,
html body .g2f-hero-banner--services .g2f-hero-wrapper,
html body .g2f-hero-services-container,
html body .g2f-hero-contact-container,
html body .g2f-hero-projects-container {
	position: relative !important;
	display: grid !important;
	grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: 0 !important;
	background: #fff !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-about__frame,
html body .g2f-hero-about__image,
html body .g2f-hero-banner-cover,
html body .g2f-hero-services__image,
html body .g2f-hero-contact__image,
html body .g2f-hero-projects__image {
	position: relative !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	flex: initial !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: var(--g2f-subpage-hero-height, 520px) !important;
	min-height: var(--g2f-subpage-hero-height, 520px) !important;
	max-height: var(--g2f-subpage-hero-height, 520px) !important;
	margin: 0 !important;
	padding: 0 !important;
	background-color: #111 !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	overflow: hidden !important;
	filter: none !important;
	opacity: 1 !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-about__image img,
html body .g2f-hero-banner-cover .wp-block-cover__image-background,
html body .g2f-hero-services__image img,
html body .g2f-hero-contact__image img,
html body .g2f-hero-projects__image img {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	filter: none !important;
	opacity: 1 !important;
}

html body .g2f-hero-about__overlay,
html body .g2f-hero-banner-cover .wp-block-cover__background,
html body .g2f-hero-services__overlay,
html body .g2f-hero-contact__overlay,
html body .g2f-hero-projects__overlay {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.45) !important;
	opacity: 1 !important;
	pointer-events: none !important;
	mix-blend-mode: normal !important;
}

html body .g2f-hero-about__content,
html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
html body .g2f-hero-services__content,
html body .g2f-hero-contact__content,
html body .g2f-hero-projects__content {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 clamp(28px, 6vw, 84px) !important;
	text-align: center !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-about__content > *,
html body .g2f-hero-banner-cover .wp-block-cover__inner-container > *,
html body .g2f-hero-services__content > *,
html body .g2f-hero-contact__content > *,
html body .g2f-hero-projects__content > * {
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	height: auto !important;
	min-height: 0 !important;
	margin-right: auto !important;
	margin-left: auto !important;
	padding: 0 !important;
	text-align: center !important;
	box-sizing: border-box !important;
}

html body .g2f-hero-about__heading,
html body .g2f-hero-banner-cover h1,
html body .g2f-hero-banner-cover h2,
html body .g2f-hero-services__heading,
html body .g2f-hero-contact__heading,
html body .g2f-hero-projects__heading,
html body .g2f-services-hero-title {
	margin: 0 auto !important;
	font-size: clamp(38px, 3.25vw, 56px) !important;
	font-weight: 300 !important;
	line-height: 1.03 !important;
	letter-spacing: -0.052em !important;
	text-align: center !important;
	text-wrap: balance;
}

html body .g2f-hero-about__heading .g2f-word,
html body .g2f-hero-about__heading .g2f-word-inner,
html body .g2f-hero-banner-cover h1 .g2f-word,
html body .g2f-hero-banner-cover h1 .g2f-word-inner,
html body .g2f-hero-banner-cover h2 .g2f-word,
html body .g2f-hero-banner-cover h2 .g2f-word-inner,
html body .g2f-hero-services__heading .g2f-word,
html body .g2f-hero-services__heading .g2f-word-inner,
html body .g2f-hero-contact__heading .g2f-word,
html body .g2f-hero-contact__heading .g2f-word-inner,
html body .g2f-hero-projects__heading .g2f-word,
html body .g2f-hero-projects__heading .g2f-word-inner,
html body .g2f-services-hero-title .g2f-word,
html body .g2f-services-hero-title .g2f-word-inner {
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

html body .g2f-hero-about__heading strong,
html body .g2f-hero-about__heading strong .g2f-word-inner,
html body .g2f-hero-banner-cover strong,
html body .g2f-hero-banner-cover strong .g2f-word-inner,
html body .g2f-hero-services__heading strong,
html body .g2f-hero-services__heading strong .g2f-word-inner,
html body .g2f-hero-contact__heading strong,
html body .g2f-hero-contact__heading strong .g2f-word-inner,
html body .g2f-hero-projects__heading strong,
html body .g2f-hero-projects__heading strong .g2f-word-inner,
html body .g2f-services-hero-title strong,
html body .g2f-services-hero-title strong .g2f-word-inner {
	font-weight: 700 !important;
}

html body .g2f-hero-about__heading em,
html body .g2f-hero-about__heading em .g2f-word-inner,
html body .g2f-hero-banner-cover em,
html body .g2f-hero-banner-cover em .g2f-word-inner,
html body .g2f-hero-services__heading em,
html body .g2f-hero-services__heading em .g2f-word-inner,
html body .g2f-hero-contact__heading em,
html body .g2f-hero-contact__heading em .g2f-word-inner,
html body .g2f-hero-projects__heading em,
html body .g2f-hero-projects__heading em .g2f-word-inner,
html body .g2f-services-hero-title em,
html body .g2f-services-hero-title em .g2f-word-inner {
	font-style: italic !important;
	font-weight: inherit !important;
}

html body .g2f-hero-about__sub,
html body .g2f-hero-banner-cover p,
html body .g2f-hero-services__sub,
html body .g2f-hero-contact__sub,
html body .g2f-hero-projects__sub {
	margin: clamp(18px, 2vw, 26px) auto 0 !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.28em !important;
	text-align: center !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.72) !important;
}

html body .g2f-projects-grid-section,
html body #projects.g2f-projects-grid-section,
html body .g2f-hero-projects-wrap + .g2f-projects-grid-section,
html body .g2f-hero-projects-wrap ~ .g2f-projects-grid-section {
	position: relative !important;
	z-index: 3 !important;
	background: #fff !important;
	color: #000 !important;
	opacity: 1 !important;
	filter: none !important;
	mix-blend-mode: normal !important;
}

html body .g2f-projects-grid-section::before,
html body .g2f-projects-grid-section::after {
	display: none !important;
	content: none !important;
}

@media (max-width: 782px) {
	html body .g2f-hero-about-wrap,
	html body .g2f-hero-banner--services,
	html body .g2f-hero-services-wrap,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap {
		margin-bottom: 40px !important;
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-about__image,
	html body .g2f-hero-banner-cover,
	html body .g2f-hero-services__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		height: 300px !important;
		min-height: 300px !important;
		max-height: 300px !important;
	}

	html body .g2f-hero-about__content,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}

	html body .g2f-hero-about__heading,
	html body .g2f-hero-banner-cover h1,
	html body .g2f-hero-banner-cover h2,
	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-services-hero-title {
		font-size: clamp(30px, 9.5vw, 42px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.052em !important;
	}
}

/* ==========================================================================
   Subpage Hero Final Guard
   Closes older high-specificity hero rules without changing the block markup.
   ========================================================================== */
@media (min-width: 783px) {
	body > .wp-site-blocks > main.site-main > .g2f-hero-banner.g2f-hero-banner--services:first-child,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-banner.g2f-hero-banner--services,
	body > .wp-site-blocks > main.site-main > .g2f-hero-projects-wrap:first-child,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-projects-wrap,
	body > .wp-site-blocks > main.site-main > .g2f-hero-about-wrap:first-child,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-about-wrap {
		margin-top: 0 !important;
	}

	html body .g2f-hero-about-wrap,
	html body .g2f-hero-banner.g2f-hero-banner--services,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin-top: 0 !important;
		margin-bottom: clamp(56px, 7vw, 116px) !important;
	}

	html body .g2f-hero-about-wrap,
	html body .g2f-hero-projects-wrap {
		margin-top: calc(-1 * var(--g2f-header-height, 60px)) !important;
	}

	body > .wp-site-blocks > main.site-main > .g2f-hero-about-wrap,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-about-wrap,
	body > .wp-site-blocks > main.site-main > .g2f-hero-projects-wrap,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-projects-wrap {
		margin-top: calc(-1 * var(--g2f-header-height, 60px)) !important;
	}

	html body main > section.wp-block-group.g2f-hero-banner--services,
	html body .g2f-hero-banner--services {
		padding: 0 0 var(--g2f-home-hero-y-padding, clamp(28px, 3.5svh, 44px)) !important;
		margin-top: var(--g2f-header-height, 60px) !important;
	}

	body > .wp-site-blocks > main.site-main > .g2f-hero-banner.g2f-hero-banner--services:first-child,
	body > .wp-site-blocks > main.site-main > style:first-child + .g2f-hero-banner.g2f-hero-banner--services,
	body > .wp-site-blocks > main.site-main > section.wp-block-group.g2f-hero-banner.g2f-hero-banner--services {
		margin-top: var(--g2f-header-height, 60px) !important;
	}

	html body .g2f-hero-about-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		align-items: flex-start !important;
	}

	html body .g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
		gap: 0 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-about__image,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about-container > .g2f-hero-about__label,
	html body .g2f-hero-banner--services .g2f-vertical-text-strip,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label {
		flex: 0 0 var(--g2f-hero-side-space, 84px) !important;
		width: var(--g2f-hero-side-space, 84px) !important;
		min-width: var(--g2f-hero-side-space, 84px) !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		align-self: stretch !important;
		align-items: flex-end !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-banner--services .g2f-hero-banner-cover,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image {
		flex: 1 1 auto !important;
		width: auto !important;
		min-width: 0 !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-about__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > * {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		text-align: center !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title,
	html body .g2f-hero-about__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading {
		margin: 0 auto !important;
		font-size: clamp(38px, 3.25vw, 56px) !important;
		font-weight: 300 !important;
		line-height: 1.03 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title strong,
	html body .g2f-hero-about__heading strong,
	html body .g2f-hero-contact__heading strong,
	html body .g2f-hero-projects__heading strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title em,
	html body .g2f-hero-about__heading em,
	html body .g2f-hero-contact__heading em,
	html body .g2f-hero-projects__heading em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-mobile-overlay,
	html body .g2f-mobile-overlay.is-open,
	html body:not(.g2f-mobile-menu-open) .g2f-mobile-overlay,
	html body:not(.g2f-mobile-menu-open) .g2f-mobile-overlay.is-open {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transform: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body.g2f-mobile-menu-open {
		overflow: auto !important;
	}

	html body.page-template-page-projects,
	html body.post-type-archive-project,
	html body.page-template-page-projects .wp-site-blocks,
	html body.post-type-archive-project .wp-site-blocks,
	html body.page-template-page-projects main.site-main,
	html body.post-type-archive-project main.site-main,
	html body.page-template-page-projects .g2f-projects-grid-section,
	html body.post-type-archive-project .g2f-projects-grid-section {
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
	}

	html body.page-template-page-projects::before,
	html body.page-template-page-projects::after,
	html body.post-type-archive-project::before,
	html body.post-type-archive-project::after {
		display: none !important;
		content: none !important;
	}
}

/* ==========================================================================
   Final runtime override: keep subpage hero geometry consistent.
   This must stay at EOF because earlier legacy guards target the same blocks.
   ========================================================================== */
@media (min-width: 783px) {
	html body .g2f-mobile-overlay,
	html body .g2f-mobile-overlay.is-open {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body.g2f-mobile-menu-open,
	html body.has-modal-open {
		overflow: auto !important;
	}

	html body .g2f-hero-about-wrap,
	html body .g2f-hero-services-wrap,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap,
	html body .g2f-hero-banner.g2f-hero-banner--services {
		width: 100vw !important;
		max-width: 100vw !important;
		margin: 0 calc(50% - 50vw) !important;
		margin-block-start: 0 !important;
		margin-block-end: 0 !important;
		padding: 0 0 var(--g2f-home-hero-y-padding, clamp(28px, 3.5svh, 44px)) !important;
		background: #fff !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		overflow: visible !important;
		isolation: isolate !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-about-container,
	html body .g2f-hero-services-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
		gap: 0 !important;
		align-items: stretch !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #fff !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about-container > .g2f-hero-about__label,
	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip {
		grid-column: 1 !important;
		width: var(--g2f-hero-side-space, 84px) !important;
		min-width: var(--g2f-hero-side-space, 84px) !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		display: flex !important;
		align-items: flex-end !important;
		justify-content: center !important;
		background: #fff !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-about-container > .g2f-hero-about__image,
	html body .g2f-hero-services__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover {
		grid-column: 2 !important;
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-width: 0 !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-color: #111 !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		opacity: 1 !important;
		filter: none !important;
		box-shadow: none !important;
	}

	html body .g2f-hero-about__frame > .g2f-hero-about__image {
		position: relative !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		box-shadow: none !important;
	}

	html body .g2f-hero-about__frame img,
	html body .g2f-hero-about-container > .g2f-hero-about__image img,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
		max-width: none !important;
		max-height: none !important;
		margin: 0 !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__overlay,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__overlay,
	html body .g2f-hero-services__overlay,
	html body .g2f-hero-contact__overlay,
	html body .g2f-hero-projects__overlay,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__background {
		display: block !important;
		position: absolute !important;
		inset: 0 !important;
		z-index: 1 !important;
		background: rgba(0, 0, 0, 0.45) !important;
		opacity: 1 !important;
		pointer-events: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__content,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(28px, 6vw, 84px) !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__content > *,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__content > *,
	html body .g2f-hero-services__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > *,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group > * {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__heading .g2f-word,
	html body .g2f-hero-about__heading .g2f-word-inner,
	html body .g2f-hero-services__heading .g2f-word,
	html body .g2f-hero-services__heading .g2f-word-inner,
	html body .g2f-hero-contact__heading .g2f-word,
	html body .g2f-hero-contact__heading .g2f-word-inner,
	html body .g2f-hero-projects__heading .g2f-word,
	html body .g2f-hero-projects__heading .g2f-word-inner,
	html body .g2f-services-hero-title .g2f-word,
	html body .g2f-services-hero-title .g2f-word-inner,
	html body .g2f-hero-banner-cover h1 .g2f-word,
	html body .g2f-hero-banner-cover h1 .g2f-word-inner,
	html body .g2f-hero-banner-cover h2 .g2f-word,
	html body .g2f-hero-banner-cover h2 .g2f-word-inner {
		line-height: inherit !important;
		letter-spacing: inherit !important;
		will-change: transform, opacity;
	}

	html body .g2f-hero-about__heading,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__heading,
	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title {
		display: block !important;
		margin: 0 auto !important;
		color: #fff !important;
		font-size: clamp(38px, 3.25vw, 56px) !important;
		font-weight: 300 !important;
		line-height: 1.03 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
		text-wrap: balance;
	}

	html body .g2f-hero-about__heading strong,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__heading strong,
	html body .g2f-hero-services__heading strong,
	html body .g2f-hero-contact__heading strong,
	html body .g2f-hero-projects__heading strong,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-about__heading em,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__heading em,
	html body .g2f-hero-services__heading em,
	html body .g2f-hero-contact__heading em,
	html body .g2f-hero-projects__heading em,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-hero-about__sub,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__sub,
	html body .g2f-hero-services__sub,
	html body .g2f-hero-contact__sub,
	html body .g2f-hero-projects__sub {
		display: block !important;
		margin: clamp(18px, 2vw, 26px) auto 0 !important;
		color: rgba(255, 255, 255, 0.72) !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
		letter-spacing: 0.28em !important;
		text-align: center !important;
		text-transform: uppercase !important;
	}

	html body.page-template-page-projects,
	html body.post-type-archive-project,
	html body.page-template-page-projects .wp-site-blocks,
	html body.post-type-archive-project .wp-site-blocks,
	html body.page-template-page-projects main.site-main,
	html body.post-type-archive-project main.site-main,
	html body .g2f-hero-projects-wrap ~ .g2f-projects-grid-section,
	html body .g2f-projects-grid-section,
	html body #projects.g2f-projects-grid-section {
		position: relative !important;
		z-index: 2 !important;
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
	}

	html body.page-template-page-projects.g2f-mobile-menu-open,
	html body.post-type-archive-project.g2f-mobile-menu-open {
		overflow: auto !important;
	}

	html body.page-template-page-projects .g2f-mobile-overlay,
	html body.post-type-archive-project .g2f-mobile-overlay,
	html body.page-template-page-projects .g2f-mobile-overlay.is-open,
	html body.post-type-archive-project .g2f-mobile-overlay.is-open {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body.page-template-page-projects::before,
	html body.page-template-page-projects::after,
	html body.post-type-archive-project::before,
	html body.post-type-archive-project::after,
	html body .g2f-projects-grid-section::before,
	html body .g2f-projects-grid-section::after {
		display: none !important;
		content: none !important;
	}
}

@media (max-width: 782px) {
	html body .g2f-hero-about-container,
	html body .g2f-hero-services-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: 42px minmax(0, 1fr) !important;
		gap: 0 !important;
	}
}

/* ==========================================================================
   Runtime Hero Consistency Guard
   Keeps DB-stored page templates visually aligned with file-based patterns.
   ========================================================================== */
@media (min-width: 783px) {
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover {
		background-image: url("../images/hero-bg.png") !important;
	}

	html body .g2f-hero-projects__image {
		background-image: url("../images/hero-bg.png") !important;
	}

	html body .g2f-hero-contact__image {
		background-image: url("../images/contact-hero-reference.jpg") !important;
	}

	html body .g2f-hero-about-container,
	html body .g2f-hero-services-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
		align-items: stretch !important;
		gap: 0 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about-container > .g2f-hero-about__label,
	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip {
		grid-column: 1 !important;
		grid-row: 1 !important;
		align-self: stretch !important;
		justify-self: stretch !important;
		width: var(--g2f-hero-side-space, 84px) !important;
		min-width: var(--g2f-hero-side-space, 84px) !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		display: flex !important;
		align-items: flex-end !important;
		justify-content: center !important;
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-about-container > .g2f-hero-about__image,
	html body .g2f-hero-services__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover {
		grid-column: 2 !important;
		grid-row: 1 !important;
		position: relative !important;
		width: 100% !important;
		min-width: 0 !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-color: #111 !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		opacity: 1 !important;
		filter: none !important;
		box-shadow: none !important;
	}

	html body .g2f-hero-about__frame img,
	html body .g2f-hero-about-container > .g2f-hero-about__image img,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__overlay,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__overlay,
	html body .g2f-hero-services__overlay,
	html body .g2f-hero-contact__overlay,
	html body .g2f-hero-projects__overlay,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__background {
		position: absolute !important;
		inset: 0 !important;
		z-index: 1 !important;
		display: block !important;
		background: rgba(0, 0, 0, 0.45) !important;
		opacity: 1 !important;
		pointer-events: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__content,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(28px, 6vw, 84px) !important;
		text-align: center !important;
		box-sizing: border-box !important;
		transform: none !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__heading,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__heading,
	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title,
	html body .g2f-hero-banner.g2f-hero-banner--services h2.g2f-services-hero-title {
		display: block !important;
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		color: #fff !important;
		font-size: clamp(38px, 3.25vw, 56px) !important;
		font-weight: 300 !important;
		line-height: 1.03 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
		text-wrap: balance;
	}

	html body .g2f-hero-about__heading strong,
	html body .g2f-hero-services__heading strong,
	html body .g2f-hero-contact__heading strong,
	html body .g2f-hero-projects__heading strong,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title strong,
	html body .g2f-hero-banner.g2f-hero-banner--services h2.g2f-services-hero-title strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-about__heading em,
	html body .g2f-hero-services__heading em,
	html body .g2f-hero-contact__heading em,
	html body .g2f-hero-projects__heading em,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title em,
	html body .g2f-hero-banner.g2f-hero-banner--services h2.g2f-services-hero-title em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-hero-about__sub,
	html body .g2f-hero-services__sub,
	html body .g2f-hero-contact__sub,
	html body .g2f-hero-projects__sub,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container p {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin: clamp(18px, 2vw, 26px) auto 0 !important;
		color: rgba(255, 255, 255, 0.72) !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
		letter-spacing: 0.28em !important;
		text-align: center !important;
		text-transform: uppercase !important;
	}

	html body .g2f-hero-about__heading .g2f-word,
	html body .g2f-hero-services__heading .g2f-word,
	html body .g2f-hero-contact__heading .g2f-word,
	html body .g2f-hero-projects__heading .g2f-word,
	html body .g2f-services-hero-title .g2f-word {
		display: inline-block !important;
		overflow: hidden !important;
		padding-bottom: 0.1em !important;
		vertical-align: baseline !important;
	}

	html body .g2f-hero-about__heading .g2f-word-inner,
	html body .g2f-hero-services__heading .g2f-word-inner,
	html body .g2f-hero-contact__heading .g2f-word-inner,
	html body .g2f-hero-projects__heading .g2f-word-inner,
	html body .g2f-services-hero-title .g2f-word-inner {
		display: inline-block !important;
		will-change: transform, opacity;
	}

	html body.page-template-page-projects,
	html body.post-type-archive-project,
	html body.page-template-page-projects .wp-site-blocks,
	html body.post-type-archive-project .wp-site-blocks,
	html body.page-template-page-projects main,
	html body.post-type-archive-project main,
	html body.page-template-page-projects .g2f-projects-grid-section,
	html body.post-type-archive-project .g2f-projects-grid-section,
	html body.page-template-page-projects .g2f-clients-section,
	html body.post-type-archive-project .g2f-clients-section {
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body.page-template-page-projects .g2f-cta-bar-section,
	html body.post-type-archive-project .g2f-cta-bar-section,
	html body.page-template-page-projects footer,
	html body.post-type-archive-project footer {
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body.page-template-page-projects .wp-block-navigation__responsive-container:not(.is-menu-open),
	html body.post-type-archive-project .wp-block-navigation__responsive-container:not(.is-menu-open) {
		background: transparent !important;
		opacity: 1 !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body.page-template-page-projects .g2f-mobile-overlay,
	html body.post-type-archive-project .g2f-mobile-overlay {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}
}

/* ==========================================================================
   Desktop subpage hero contract
   Normalizes DB-stored subpage heroes and prevents stale mobile modal dimming.
   ========================================================================== */
@media (min-width: 783px) {
	html,
	html.has-modal-open,
	html body,
	html body.has-modal-open,
	html body.g2f-mobile-menu-open {
		overflow: auto !important;
		background: #fff !important;
	}

	html body .g2f-mobile-overlay,
	html body .g2f-mobile-overlay.is-open {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body .wp-block-navigation__responsive-container.is-menu-open,
	html.has-modal-open body .wp-block-navigation__responsive-container.is-menu-open {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body.post-type-archive-project::before,
	html body.post-type-archive-project::after,
	html body.page-template-page-projects::before,
	html body.page-template-page-projects::after {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
		background: transparent !important;
		filter: none !important;
		backdrop-filter: none !important;
	}

	html body .g2f-hero-about-wrap,
	html body .g2f-hero-services-wrap,
	html body .g2f-hero-contact-wrap,
	html body .g2f-hero-projects-wrap,
	html body .g2f-hero-banner.g2f-hero-banner--services {
		background: #fff !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body .g2f-hero-about-container,
	html body .g2f-hero-services-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
		align-items: stretch !important;
		gap: 0 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about-container > .g2f-hero-about__label,
	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip {
		grid-column: 1 !important;
		grid-row: 1 !important;
		display: flex !important;
		align-items: flex-end !important;
		justify-content: center !important;
		align-self: stretch !important;
		justify-self: stretch !important;
		width: var(--g2f-hero-side-space, 84px) !important;
		min-width: var(--g2f-hero-side-space, 84px) !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-about__frame,
	html body .g2f-hero-about-container > .g2f-hero-about__image,
	html body .g2f-hero-services__image,
	html body .g2f-hero-contact__image,
	html body .g2f-hero-projects__image,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover {
		grid-column: 2 !important;
		grid-row: 1 !important;
		position: relative !important;
		width: 100% !important;
		min-width: 0 !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-color: #111 !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		opacity: 1 !important;
		filter: none !important;
		box-shadow: none !important;
	}

	html body .g2f-hero-about__frame img,
	html body .g2f-hero-about-container > .g2f-hero-about__image img,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__content,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: grid !important;
		place-items: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(28px, 6vw, 84px) !important;
		text-align: center !important;
		box-sizing: border-box !important;
		transform: none !important;
	}

	html body .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		height: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__content > *,
	html body .g2f-hero-services__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > * {
		display: block !important;
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		height: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__heading,
	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-hero-banner.g2f-hero-banner--services h1.g2f-services-hero-title,
	html body .g2f-hero-banner.g2f-hero-banner--services h2.g2f-services-hero-title {
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		color: #fff !important;
		font-size: clamp(36px, 3.1vw, 54px) !important;
		font-weight: 300 !important;
		line-height: 1.04 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
		text-wrap: balance;
	}

	html body .g2f-hero-about__heading strong,
	html body .g2f-hero-services__heading strong,
	html body .g2f-hero-contact__heading strong,
	html body .g2f-hero-projects__heading strong,
	html body .g2f-services-hero-title strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-about__heading em,
	html body .g2f-hero-services__heading em,
	html body .g2f-hero-contact__heading em,
	html body .g2f-hero-projects__heading em,
	html body .g2f-services-hero-title em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-hero-about__sub,
	html body .g2f-hero-services__sub,
	html body .g2f-hero-contact__sub,
	html body .g2f-hero-projects__sub,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container p {
		margin: clamp(18px, 2vw, 26px) auto 0 !important;
		color: rgba(255, 255, 255, 0.72) !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
		letter-spacing: 0.28em !important;
		text-align: center !important;
		text-transform: uppercase !important;
	}

	html body .g2f-hero-about__heading .g2f-word,
	html body .g2f-hero-services__heading .g2f-word,
	html body .g2f-hero-contact__heading .g2f-word,
	html body .g2f-hero-projects__heading .g2f-word,
	html body .g2f-services-hero-title .g2f-word {
		display: inline-block !important;
		overflow: hidden !important;
		padding-bottom: 0.1em !important;
		vertical-align: baseline !important;
	}

	html body .g2f-hero-about__heading .g2f-word-inner,
	html body .g2f-hero-services__heading .g2f-word-inner,
	html body .g2f-hero-contact__heading .g2f-word-inner,
	html body .g2f-hero-projects__heading .g2f-word-inner,
	html body .g2f-services-hero-title .g2f-word-inner {
		display: inline-block !important;
		will-change: transform, opacity;
	}

	html body.post-type-archive-project,
	html body.post-type-archive-project .wp-site-blocks,
	html body.post-type-archive-project main,
	html body.post-type-archive-project .g2f-projects-grid-section,
	html body.post-type-archive-project .g2f-project-card,
	html body.post-type-archive-project .g2f-clients-section {
		background-color: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body.post-type-archive-project .g2f-hero-projects-wrap,
	html body.post-type-archive-project .g2f-hero-projects-container,
	html body.post-type-archive-project .g2f-hero-projects__image,
	html body.post-type-archive-project .g2f-hero-projects__content,
	html body.page-template-page-projects .g2f-hero-projects-wrap,
	html body.page-template-page-projects .g2f-hero-projects-container,
	html body.page-template-page-projects .g2f-hero-projects__image,
	html body.page-template-page-projects .g2f-hero-projects__content {
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body.post-type-archive-project .g2f-hero-projects__heading,
	html body.post-type-archive-project .g2f-hero-projects__heading *,
	html body.post-type-archive-project .g2f-hero-projects__sub,
	html body.page-template-page-projects .g2f-hero-projects__heading,
	html body.page-template-page-projects .g2f-hero-projects__heading *,
	html body.page-template-page-projects .g2f-hero-projects__sub {
		color: #fff !important;
	}

	html body .g2f-hero-banner-cover {
		grid-column: 2 !important;
		grid-row: 1 !important;
		position: relative !important;
		width: 100% !important;
		min-width: 0 !important;
		height: var(--g2f-subpage-hero-height, 520px) !important;
		min-height: var(--g2f-subpage-hero-height, 520px) !important;
		max-height: var(--g2f-subpage-hero-height, 520px) !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		background-color: #111 !important;
		background-size: cover !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		box-shadow: none !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center !important;
		opacity: 1 !important;
		filter: none !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__background {
		position: absolute !important;
		inset: 0 !important;
		z-index: 1 !important;
		background: rgba(0, 0, 0, 0.45) !important;
		opacity: 1 !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: grid !important;
		place-items: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(28px, 6vw, 84px) !important;
		text-align: center !important;
		box-sizing: border-box !important;
		transform: none !important;
	}

	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > * {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		height: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

	html body .g2f-hero-banner-cover h1,
	html body .g2f-hero-banner-cover h2 {
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		color: #fff !important;
		font-size: clamp(36px, 3.1vw, 54px) !important;
		font-weight: 300 !important;
		line-height: 1.04 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
		text-wrap: balance;
	}

	html body .g2f-hero-banner-cover h1 strong,
	html body .g2f-hero-banner-cover h2 strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-banner-cover h1 em,
	html body .g2f-hero-banner-cover h2 em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-hero-banner-cover p {
		margin: clamp(18px, 2vw, 26px) auto 0 !important;
		color: rgba(255, 255, 255, 0.72) !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
		letter-spacing: 0.28em !important;
		text-align: center !important;
		text-transform: uppercase !important;
	}

	html body .g2f-hero-banner-cover h1 .g2f-word,
	html body .g2f-hero-banner-cover h2 .g2f-word,
	html body .g2f-hero-banner-cover h1 .g2f-word-inner,
	html body .g2f-hero-banner-cover h2 .g2f-word-inner {
		display: inline-block !important;
	}

	html body .g2f-hero-banner-cover h1 .g2f-word,
	html body .g2f-hero-banner-cover h2 .g2f-word {
		overflow: hidden !important;
		padding-bottom: 0.1em !important;
		vertical-align: baseline !important;
	}

	html body .g2f-hero-about__frame > .g2f-hero-about__image {
		background-image: url("../images/about-hero-reference.jpg") !important;
		background-size: cover !important;
		background-position: center !important;
	}
}

/* Canonical desktop subpage hero alignment and archive reset. */
@media (min-width: 783px) {
	html body:has(.g2f-hero-projects-wrap),
	html body:has(.g2f-hero-projects-wrap) .wp-site-blocks,
	html body:has(.g2f-hero-projects-wrap) main,
	html body:has(.g2f-hero-projects-wrap) .g2f-projects-grid-section,
	html body:has(.g2f-hero-projects-wrap) .g2f-project-card,
	html body:has(.g2f-hero-projects-wrap) .g2f-clients-section,
	html body.post-type-archive-project,
	html body.post-type-archive-project .wp-site-blocks,
	html body.post-type-archive-project main,
	html body.post-type-archive-project .g2f-projects-grid-section,
	html body.post-type-archive-project .g2f-project-card,
	html body.post-type-archive-project .g2f-clients-section {
		background: #fff !important;
		color: #000 !important;
		opacity: 1 !important;
		filter: none !important;
		mix-blend-mode: normal !important;
		backdrop-filter: none !important;
	}

	html body:has(.g2f-hero-projects-wrap)::before,
	html body:has(.g2f-hero-projects-wrap)::after,
	html body.post-type-archive-project::before,
	html body.post-type-archive-project::after {
		content: none !important;
		display: none !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	html body .g2f-hero-about__frame .g2f-hero-about__content,
	html body .g2f-hero-about-container > .g2f-hero-about__image .g2f-hero-about__content,
	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(28px, 6vw, 84px) !important;
		text-align: center !important;
		box-sizing: border-box !important;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-about__content > *,
	html body .g2f-hero-services__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > * {
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	html body .g2f-hero-about__heading,
	html body .g2f-hero-about__content h1,
	html body .g2f-hero-about__content h2,
	html body .g2f-hero-services__heading,
	html body .g2f-hero-services__content h1,
	html body .g2f-hero-services__content h2,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-contact__content h1,
	html body .g2f-hero-contact__content h2,
	html body .g2f-hero-projects__heading,
	html body .g2f-hero-projects__content h1,
	html body .g2f-hero-projects__content h2,
	html body .g2f-services-hero-title,
	html body .g2f-hero-banner-cover h1,
	html body .g2f-hero-banner-cover h2 {
		margin: 0 auto !important;
		padding: 0 !important;
		color: #fff !important;
		font-size: clamp(36px, 3.1vw, 54px) !important;
		font-weight: 300 !important;
		line-height: 1.04 !important;
		letter-spacing: -0.052em !important;
		text-align: center !important;
		text-wrap: balance;
		opacity: 1;
		visibility: visible;
	}

	html body .g2f-hero-about__heading strong,
	html body .g2f-hero-about__content h1 strong,
	html body .g2f-hero-about__content h2 strong,
	html body .g2f-hero-services__heading strong,
	html body .g2f-hero-services__content h1 strong,
	html body .g2f-hero-services__content h2 strong,
	html body .g2f-hero-contact__heading strong,
	html body .g2f-hero-contact__content h1 strong,
	html body .g2f-hero-contact__content h2 strong,
	html body .g2f-hero-projects__heading strong,
	html body .g2f-hero-projects__content h1 strong,
	html body .g2f-hero-projects__content h2 strong,
	html body .g2f-services-hero-title strong,
	html body .g2f-hero-banner-cover h1 strong,
	html body .g2f-hero-banner-cover h2 strong {
		font-weight: 700 !important;
	}

	html body .g2f-hero-about__heading em,
	html body .g2f-hero-about__content h1 em,
	html body .g2f-hero-about__content h2 em,
	html body .g2f-hero-services__heading em,
	html body .g2f-hero-services__content h1 em,
	html body .g2f-hero-services__content h2 em,
	html body .g2f-hero-contact__heading em,
	html body .g2f-hero-contact__content h1 em,
	html body .g2f-hero-contact__content h2 em,
	html body .g2f-hero-projects__heading em,
	html body .g2f-hero-projects__content h1 em,
	html body .g2f-hero-projects__content h2 em,
	html body .g2f-services-hero-title em,
	html body .g2f-hero-banner-cover h1 em,
	html body .g2f-hero-banner-cover h2 em {
		font-style: italic !important;
		font-weight: inherit !important;
	}

	html body .g2f-hero-about__sub,
	html body .g2f-hero-services__sub,
	html body .g2f-hero-contact__sub,
	html body .g2f-hero-projects__sub,
	html body .g2f-hero-banner-cover p {
		margin: clamp(18px, 2vw, 26px) auto 0 !important;
		color: rgba(255, 255, 255, 0.72) !important;
		font-size: 11px !important;
		font-weight: 600 !important;
		line-height: 1.2 !important;
		letter-spacing: 0.28em !important;
		text-align: center !important;
		text-transform: uppercase !important;
		opacity: 1;
		visibility: visible;
	}

	html body .g2f-hero-about__heading .g2f-word,
	html body .g2f-hero-services__heading .g2f-word,
	html body .g2f-hero-contact__heading .g2f-word,
	html body .g2f-hero-projects__heading .g2f-word,
	html body .g2f-services-hero-title .g2f-word,
	html body .g2f-hero-banner-cover h1 .g2f-word,
	html body .g2f-hero-banner-cover h2 .g2f-word {
		display: inline-block !important;
		overflow: hidden !important;
		padding-bottom: 0.1em !important;
		vertical-align: baseline !important;
	}

	html body .g2f-hero-about__heading .g2f-word-inner,
	html body .g2f-hero-services__heading .g2f-word-inner,
	html body .g2f-hero-contact__heading .g2f-word-inner,
	html body .g2f-hero-projects__heading .g2f-word-inner,
	html body .g2f-services-hero-title .g2f-word-inner,
	html body .g2f-hero-banner-cover h1 .g2f-word-inner,
	html body .g2f-hero-banner-cover h2 .g2f-word-inner {
		display: inline-block !important;
		will-change: transform, opacity;
	}
}

/* ==========================================================================
   Desktop subpage hero contract
   One source of truth for first subpage heroes: same image gutters as the
   homepage hero, no compensating top offset, and a single bottom rhythm.
   ========================================================================== */
@media (min-width: 783px) {
	html body .wp-site-blocks > main {
		--g2f-subpage-hero-height: 520px;
	}

	body > .wp-site-blocks > main:has(> .g2f-hero-about-wrap:first-child),
	body > .wp-site-blocks > main:has(> .g2f-hero-projects-wrap:first-child),
	body > .wp-site-blocks > main:has(> .g2f-hero-contact-wrap:first-child),
	body > .wp-site-blocks > main:has(> .g2f-hero-services-wrap:first-child),
	body > .wp-site-blocks > main:has(> .g2f-hero-banner--services:first-child),
	body > .wp-site-blocks > main:has(> style:first-child + .g2f-hero-about-wrap),
	body > .wp-site-blocks > main:has(> style:first-child + .g2f-hero-projects-wrap),
	body > .wp-site-blocks > main:has(> style:first-child + .g2f-hero-contact-wrap),
	body > .wp-site-blocks > main:has(> style:first-child + .g2f-hero-services-wrap),
	body > .wp-site-blocks > main:has(> style:first-child + .g2f-hero-banner--services) {
		padding-top: 0 !important;
	}

	html body .wp-site-blocks > main > .g2f-hero-about-wrap,
	html body .wp-site-blocks > main > .g2f-hero-projects-wrap,
	html body .wp-site-blocks > main > .g2f-hero-contact-wrap,
	html body .wp-site-blocks > main > .g2f-hero-services-wrap,
	html body .wp-site-blocks > main > section.wp-block-group.g2f-hero-banner.g2f-hero-banner--services {
		width: 100vw !important;
		max-width: 100vw !important;
		margin: 0 calc(50% - 50vw) !important;
		margin-block-start: 0 !important;
		margin-block-end: 0 !important;
		padding: 0 0 var(--g2f-home-hero-y-padding, clamp(28px, 3.5svh, 44px)) !important;
		background: #fff !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-about-container,
	html body .g2f-hero-services-container,
	html body .g2f-hero-contact-container,
	html body .g2f-hero-projects-container,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-wrapper {
		display: grid !important;
		grid-template-columns: var(--g2f-hero-side-space, 84px) minmax(0, 1fr) var(--g2f-hero-side-space, 84px) !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		gap: 0 !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-about-container > .g2f-hero-about__label,
	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip {
		grid-column: 1 !important;
		grid-row: 1 !important;
		align-self: stretch !important;
		display: flex !important;
		align-items: flex-end !important;
		justify-content: center !important;
		width: var(--g2f-hero-side-space, 84px) !important;
		min-width: var(--g2f-hero-side-space, 84px) !important;
		height: var(--g2f-subpage-hero-height) !important;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-about-container > .g2f-hero-about__image,
	html body .g2f-hero-about-container > .g2f-hero-about__frame,
	html body .g2f-hero-services-container > .g2f-hero-services__image,
	html body .g2f-hero-contact-container > .g2f-hero-contact__image,
	html body .g2f-hero-projects-container > .g2f-hero-projects__image,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-hero-banner-cover {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 100% !important;
		height: var(--g2f-subpage-hero-height) !important;
		min-height: var(--g2f-subpage-hero-height) !important;
		max-height: var(--g2f-subpage-hero-height) !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-about-container > .g2f-hero-about__image img,
	html body .g2f-hero-about-container > .g2f-hero-about__frame img,
	html body .g2f-hero-services-container > .g2f-hero-services__image img,
	html body .g2f-hero-contact-container > .g2f-hero-contact__image img,
	html body .g2f-hero-projects-container > .g2f-hero-projects__image img,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__image-background {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container {
		position: relative !important;
		z-index: 2 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}

	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group {
		width: min(780px, 80%) !important;
		max-width: min(780px, 80%) !important;
		margin: 0 auto !important;
		padding: 0 !important;
		text-align: center !important;
	}

html body.page-id-29 .g2f-hero-about-wrap .g2f-hero-about__content,
html body .g2f-hero-about-wrap--about-page .g2f-hero-about__content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 clamp(72px, 9vw, 160px) !important;
  box-sizing: border-box !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

html body.page-id-29 .g2f-hero-about-wrap .g2f-hero-about__heading,
html body .g2f-hero-about-wrap--about-page .g2f-hero-about__heading {
  display: block !important;
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: var(--wp--preset--font-family--roboto, "Roboto", sans-serif) !important;
  font-size: clamp(30px, 2.55vw, 46px) !important;
  font-weight: 300 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.035em !important;
  text-align: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35) !important;
}

html body.page-id-29 .g2f-hero-about-wrap .g2f-hero-about__heading strong,
html body .g2f-hero-about-wrap--about-page .g2f-hero-about__heading strong {
  font-weight: 700 !important;
}

	html body .g2f-hero-services__content,
	html body .g2f-hero-contact__content,
	html body .g2f-hero-projects__content,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container {
		position: absolute !important;
		inset: 0 !important;
		z-index: 2 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: center !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 clamp(96px, 13vw, 240px) !important;
		text-align: left !important;
		box-sizing: border-box !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	html body .g2f-hero-services__content > *,
	html body .g2f-hero-contact__content > *,
	html body .g2f-hero-projects__content > *,
	html body .g2f-hero-banner.g2f-hero-banner--services .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > .wp-block-group,
	html body .g2f-hero-banner-cover .wp-block-cover__inner-container > * {
		width: min(100%, 820px) !important;
		max-width: 820px !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: left !important;
	}

	html body .g2f-hero-services__heading,
	html body .g2f-hero-contact__heading,
	html body .g2f-hero-projects__heading,
	html body .g2f-services-hero-title,
	html body .g2f-hero-banner-cover h1,
	html body .g2f-hero-banner-cover h2 {
		margin: 0 !important;
		text-align: left !important;
	}

	html body .g2f-hero-about__label-wrap,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip {
		position: relative !important;
		display: block !important;
	}

	html body .g2f-hero-about__label-wrap .g2f-hero-about__label,
	html body .g2f-hero-banner.g2f-hero-banner--services .g2f-vertical-text-strip .g2f-vertical-text {
		position: absolute !important;
		left: 50% !important;
		bottom: 0 !important;
		width: auto !important;
		height: auto !important;
		min-width: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		line-height: 1 !important;
		transform: translateX(-50%) rotate(180deg) !important;
		white-space: nowrap !important;
	}

	html body .g2f-hero-services__label,
	html body .g2f-hero-contact__label,
	html body .g2f-hero-projects__label,
	html body .g2f-hero-project__label {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		writing-mode: vertical-rl !important;
		text-orientation: mixed !important;
		transform: rotate(180deg) !important;
	}
}
