/*
Theme Name: Geyser Global
Theme URI: https://gogeyserglobal.com
Author: Geyser Global LLC
Author URI: https://gogeyserglobal.com
Description: A clean, photography-led block theme for Geyser Global LLC — international agribusiness, livestock logistics, and supply chain coordination. Full Site Editing with editable sections and a Fluent Forms consultation area.
Version: 1.2.1
Requires at least: 6.6
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geyser-global
Tags: full-site-editing, block-patterns, one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
	--forest: #1a4334;
	--forest-deep: #122e24;
	--forest-muted: #2d5a48;
	--ink: #141614;
	--body: #3d4540;
	--muted: #6b736c;
	--line: rgba(20, 22, 20, 0.08);
	--surface: #ffffff;
	--wash: #f7f6f3;
	--accent: #c4843a;
	--accent-soft: rgba(196, 132, 58, 0.12);
	--white: #ffffff;
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 28px;
	--container: min(1120px, calc(100% - 2rem));
	--nav-h: 72px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow-sm: 0 1px 2px rgba(18, 46, 36, 0.04), 0 8px 24px rgba(18, 46, 36, 0.06);
	--shadow-md: 0 2px 4px rgba(18, 46, 36, 0.04), 0 16px 48px rgba(18, 46, 36, 0.08);
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
	font-variation-settings: "opsz" 32;
	font-feature-settings: "cv11", "ss01";
	background: var(--surface);
	color: var(--ink);
	line-height: 1.6;
	font-size: 16px;
}

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

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

.geyser-container {
	width: var(--container);
	margin-inline: auto;
}

/* ── Remove default vertical gap between top-level template blocks ── */
.wp-site-blocks > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Kill the constrained-layout vertical margins between page sections so the
   coloured bands butt together (no white slivers between sections). */
main.wp-block-group > * {
	margin-block: 0 !important;
}

/* ── Header (core Navigation block, glass) ── */
/* The bar is FIXED and overlays the hero; the wrapper must reserve no space.
   Every hero/section/page top offset is authored assuming a fixed bar. */
.wp-site-blocks > header.wp-block-template-part,
header.wp-block-template-part:has(.site-header) {
	position: relative;
	z-index: 100;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 1px 0 rgba(20, 22, 20, 0.05);
	transition: box-shadow 0.3s var(--ease);
	padding-block: 0 !important;
	background: transparent !important;
}

/* Glass lives on a pseudo-element. If backdrop-filter sat on .site-header it
   would establish a containing block and trap the core Navigation mobile
   overlay (position:fixed) inside the 72px bar — that is what broke the
   hamburger dropdown. */
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	transition: background 0.3s var(--ease);
}

.site-header.is-scrolled::before {
	background: rgba(255, 255, 255, 0.92);
}

/* Inner row: title left, nav right, constrained to the container with gutters. */
.site-header .nav-inner,
.site-header > .wp-block-group.alignwide {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: var(--container);
	margin-inline: auto;
	min-height: var(--nav-h);
}

.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(18, 46, 36, 0.06);
}

/* Two-tone wordmark to match the design (forest name + muted "LLC"). */
.site-header .wordmark {
	font-size: 1.0625rem;
	font-weight: 650;
	letter-spacing: -0.03em;
	line-height: 1;
}

.site-header .wordmark a {
	color: var(--forest-deep);
	white-space: nowrap;
}

.site-header .wordmark span {
	color: var(--muted);
	font-weight: 500;
}

.site-header .wp-block-site-title a {
	font-size: 1.0625rem;
	font-weight: 650;
	letter-spacing: -0.03em;
	color: var(--forest-deep);
	white-space: nowrap;
	text-decoration: none;
}

.site-header .wp-block-navigation {
	font-size: 0.875rem;
	font-weight: 500;
}

.site-header .wp-block-navigation a {
	color: var(--body);
	transition: color 0.2s;
}

.site-header .wp-block-navigation a:hover {
	color: var(--forest);
}

/* CTA nav item: add class "nav-cta" to a nav link */
.site-header .wp-block-navigation .nav-cta a,
.nav-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 1.125rem;
	border-radius: 999px;
	background: var(--forest);
	color: var(--white);
	font-weight: 600;
	font-size: 0.875rem;
	transition: background 0.2s, transform 0.2s var(--ease);
}

.site-header .wp-block-navigation .nav-cta a:hover,
.nav-cta a:hover {
	background: var(--forest-deep);
	color: var(--white);
	transform: translateY(-1px);
}

/* ── Buttons ── */
.geyser-btn .wp-block-button__link,
a.geyser-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.375rem;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 600;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.geyser-btn.is-primary .wp-block-button__link {
	background: var(--white);
	color: var(--forest-deep);
}

.geyser-btn.is-primary .wp-block-button__link:hover {
	transform: translateY(-1px);
	background: var(--wash);
}

.geyser-btn.is-ghost .wp-block-button__link {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--white);
}

.geyser-btn.is-ghost .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.geyser-btn.is-forest .wp-block-button__link {
	background: var(--forest);
	color: var(--white);
}

.geyser-btn.is-forest .wp-block-button__link:hover {
	background: var(--forest-deep);
	transform: translateY(-1px);
}

/* ── Hero (plain Group + CSS background) ──
   No Cover / no Image block, so it can never fail block validation. The photo
   is a CSS background (relative to this file → theme/assets/images/hero.jpg)
   and the design's gradient sits on ::after. Identical in editor and front. */
.geyser-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 100svh;
	padding: calc(var(--nav-h) + 3rem) 0 3rem;
	overflow: hidden;
	background-color: var(--forest-deep);
	background-image: url("assets/images/hero.jpg");
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}

/* Gradient overlay layer. */
.geyser-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
			to top,
			rgba(18, 46, 36, 0.88) 0%,
			rgba(18, 46, 36, 0.45) 42%,
			rgba(18, 46, 36, 0.18) 100%
		),
		linear-gradient(to right, rgba(18, 46, 36, 0.35) 0%, transparent 55%);
}

/* Content — a 680px measure, centred in the container, text left. */
.geyser-hero__content {
	position: relative;
	z-index: 1;
	width: var(--container);
	max-width: 680px;
	margin-inline: auto;
	color: var(--white);
	text-align: left;
}

/* WP constrained layout forces `margin-left/right:auto !important` on children,
   which centres the narrower subtext. Override with !important so every hero
   line hugs the left edge, aligned under the headline. */
.geyser-hero__content > * {
	margin-left: 0 !important;
	margin-right: 0 !important;
	text-align: left;
}

/* Explicit, higher-specificity guard so the eyebrow and subtext can never be
   auto-centred — they align hard-left under the headline. */
.geyser-hero .geyser-eyebrow,
.geyser-hero .geyser-lead,
.geyser-hero__content h1 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.geyser-hero :where(h1, h2, p) {
	color: var(--white);
}

.geyser-hero__actions {
	margin-top: 2rem;
}

.geyser-eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem !important;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72) !important;
}

.geyser-hero h1 {
	margin: 0;
	font-size: clamp(2.25rem, 7vw, 3.75rem);
	font-weight: 650;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.geyser-hero .geyser-lead {
	margin: 1.25rem 0 0;
	font-size: clamp(1rem, 2.5vw, 1.1875rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82) !important;
	max-width: 52ch;
}

/* ── Sections ── */
/* Full-bleed background, vertical rhythm only — exactly like the reference
   `.section`. Horizontal gutter comes from the container rule below. */
.geyser-section {
	padding-block: clamp(4rem, 10vw, 6.5rem);
	padding-inline: 0;
}

/* Every direct child of a section behaves like the reference `.container`:
   capped at 1120px, centred, with a guaranteed 1rem gutter on smaller screens
   (min(1120px, 100% - 2rem)). This is the single source of truth for layout
   width and is independent of WP root-padding / alignment quirks. */
.geyser-section > * {
	width: var(--container);
	margin-inline: auto;
}

.geyser-section.is-wash {
	background: var(--wash);
}

.geyser-section-head {
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

.geyser-section-head.is-center {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}

.geyser-label {
	display: block;
	margin-bottom: 0.75rem !important;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent) !important;
}

.geyser-section h2 {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.625rem);
	font-weight: 650;
	line-height: 1.12;
	letter-spacing: -0.035em;
	color: var(--forest-deep);
}

.geyser-copy {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--body);
	max-width: 58ch;
}

.geyser-section-head.is-center .geyser-copy {
	margin-inline: auto;
}

/* ── About ── */
.geyser-about-visual img,
.geyser-about-visual.wp-block-image img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.geyser-point {
	padding-left: 1rem;
	border-left: 2px solid var(--forest);
}

.geyser-point strong {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 0.25rem;
}

.geyser-point p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ── Services ── */
/* Make columns stretch and the card fill its column so all three cards match
   height regardless of body-copy length. */
#services .wp-block-column {
	display: flex;
}

.geyser-service-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.geyser-service-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.geyser-service-card .wp-block-image {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.geyser-service-card .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.geyser-service-card:hover .wp-block-image img {
	transform: scale(1.03);
}

.geyser-service-body {
	padding: 1.5rem 1.375rem 1.625rem;
}

.geyser-service-body h3 {
	margin: 0 0 0.625rem;
	font-size: 1.1875rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--forest-deep);
}

.geyser-service-body p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--body);
}

/* ── Why band ── */
.geyser-why.is-band {
	background: var(--forest-deep);
	color: var(--white);
}

.geyser-why.is-band h2,
.geyser-why.is-band .geyser-label {
	color: var(--white) !important;
}

.geyser-why.is-band .geyser-copy {
	color: rgba(255, 255, 255, 0.72);
}

.geyser-why-list {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.geyser-why-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem 1.25rem;
	padding: 1.375rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	align-items: start;
}

.geyser-why-item .num {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
	padding-top: 0.15rem;
}

.geyser-why-item strong {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--white);
}

.geyser-why-item span {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

/* ── Audience tags ── */
.geyser-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	justify-content: center;
}

.geyser-tag {
	padding: 0.625rem 1.125rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--forest-muted);
}

/* ── Process ── */
.geyser-step {
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	height: 100%;
}

.geyser-step .num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.8125rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	margin-bottom: 1rem;
}

.geyser-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--forest-deep);
}

.geyser-step p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ── Contact ── */
.geyser-contact-aside {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: var(--forest-deep);
	color: var(--white);
	height: 100%;
}

.geyser-contact-aside h2,
.geyser-contact-aside .geyser-label {
	color: var(--white) !important;
}

.geyser-contact-aside h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.geyser-contact-aside p {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.geyser-contact-meta {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

.geyser-contact-meta > * {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	text-align: left;
}

.geyser-contact-meta .k {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 0.25rem;
}

.geyser-contact-meta .v {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--white);
}

.geyser-contact-meta a {
	color: var(--white);
}

.geyser-contact-meta a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.geyser-form-wrap {
	padding: 1.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.geyser-form-note {
	margin: 0 0 1.5rem;
	padding: 0.875rem 1rem;
	border-radius: var(--radius-sm);
	background: var(--wash);
	font-size: 0.8125rem;
	color: var(--muted);
	line-height: 1.5;
}

.geyser-form-note code {
	font-size: 0.75rem;
	background: rgba(26, 67, 52, 0.08);
	padding: 0.125rem 0.375rem;
	border-radius: 4px;
	color: var(--forest);
}

/* ── Fluent Forms — custom premium skin (scoped to the contact card) ──
   FF renders <form class="frm-fluent-form ...">. Spacing uses ONE mechanism:
   the form is a flex column with a single gap and every internal group margin
   is zeroed — so the vertical rhythm is identical between every field
   (the name row no longer double-spaces). */
.geyser-form-wrap .frm-fluent-form,
.geyser-form-wrap .frm-fluent-form .ff-step-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.geyser-form-wrap .frm-fluent-form .ff-el-group,
.geyser-form-wrap .frm-fluent-form .ff-t-container,
.geyser-form-wrap .frm-fluent-form .ff-el-input--content,
.geyser-form-wrap .frm-fluent-form .ff-el-input--label {
	margin: 0 !important;
}

/* Name row (First / Last): 50/50, wraps to full width on narrow screens.
   FF renders .ff-t-container > .ff-t-cell. */
.geyser-form-wrap .frm-fluent-form .ff-t-container {
	display: flex;
	flex-wrap: wrap;
	/* row-gap matches the 1rem field rhythm (used when the cells stack on
	   mobile); column-gap is the tighter 0.75rem between First/Last on desktop. */
	gap: 1rem 0.75rem;
}

.geyser-form-wrap .frm-fluent-form .ff-t-container .ff-t-cell {
	flex: 1 1 150px;
	min-width: 0;
	padding: 0;
}

/* Labels — compact 11px micro-labels: quiet tone, clear hierarchy under the
   15px input value. */
.geyser-form-wrap .frm-fluent-form .ff-el-input--label label {
	display: block;
	margin-bottom: 0.4375rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--body);
	line-height: 1.3;
}

/* Required asterisk in brand accent (FF places it after the label text). */
.geyser-form-wrap .frm-fluent-form .ff-el-is-required.asterisk-right label:after,
.geyser-form-wrap .frm-fluent-form .ff-el-is-required label .ff-el-is-required {
	color: var(--accent);
}

/* Controls — calm surface, compact height, crisp focus ring, 15px value. */
.geyser-form-wrap .frm-fluent-form input.ff-el-form-control,
.geyser-form-wrap .frm-fluent-form textarea.ff-el-form-control,
.geyser-form-wrap .frm-fluent-form select.ff-el-form-control {
	width: 100%;
	min-height: 46px;
	padding: 0.625rem 0.875rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--wash);
	font: inherit;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--ink);
	box-shadow: none;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.geyser-form-wrap .frm-fluent-form textarea.ff-el-form-control {
	min-height: 84px;
	padding-top: 0.6875rem;
	resize: vertical;
}

/* Placeholder — a touch smaller than the typed value for typographic balance. */
.geyser-form-wrap .frm-fluent-form .ff-el-form-control::placeholder {
	color: var(--muted);
	opacity: 1;
	font-size: 0.875rem;
}

.geyser-form-wrap .frm-fluent-form .ff-el-form-control:hover {
	border-color: rgba(20, 22, 20, 0.18);
}

.geyser-form-wrap .frm-fluent-form .ff-el-form-control:focus {
	border-color: var(--forest-muted);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(26, 67, 52, 0.1);
	outline: none;
}

/* Native dropdown — themed chevron; placeholder tone until an option is picked. */
.geyser-form-wrap .frm-fluent-form select.ff-el-form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b736c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.875rem center;
	padding-right: 2.5rem;
}

.geyser-form-wrap .frm-fluent-form select.ff-el-form-control:has(option[value=""]:checked) {
	color: var(--muted);
}

/* Submit — full-width brand pill with hover lift (matches site buttons). */
.geyser-form-wrap .frm-fluent-form .ff-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	margin-top: 0.875rem;
	padding: 0 1.5rem;
	border-radius: 999px;
	background: var(--forest);
	color: var(--white);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	border: 0;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(18, 46, 36, 0.16);
	transition: background 0.2s var(--ease), transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.geyser-form-wrap .frm-fluent-form .ff-btn-submit:hover {
	background: var(--forest-deep);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(18, 46, 36, 0.22);
}

.geyser-form-wrap .frm-fluent-form .ff-btn-submit:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(18, 46, 36, 0.18);
}

/* Validation + success states. */
.geyser-form-wrap .frm-fluent-form .ff-el-is-error .ff-el-form-control,
.geyser-form-wrap .frm-fluent-form .has-error .ff-el-form-control {
	border-color: #c0492f;
	background: rgba(192, 73, 47, 0.04);
}

.geyser-form-wrap .frm-fluent-form .error,
.geyser-form-wrap .frm-fluent-form .text-danger {
	color: #c0492f;
	font-size: 0.8125rem;
	margin-top: 0.4375rem;
}

.geyser-form-wrap .ff-message-success {
	padding: 1rem 1.125rem;
	border-radius: var(--radius-sm);
	background: rgba(26, 67, 52, 0.08);
	border: 1px solid rgba(26, 67, 52, 0.12);
	color: var(--forest-deep);
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* ── Immunity to has-global-padding ──
   WP stamps `.has-global-padding` on constrained inner groups whenever
   useRootPaddingAwareAlignments resolves to "on" (it can linger in a cached
   global-styles transient even after theme.json sets it false). That class
   forces inline padding to 0 and would flatten these cards. Re-assert each
   component's own padding with !important so it is robust to that cache. */
.geyser-service-body {
	padding: 1.5rem 1.375rem 1.625rem !important;
}

.geyser-step {
	padding: 1.5rem !important;
}

.geyser-contact-aside {
	padding: 2rem !important;
}

.geyser-form-wrap {
	padding: 1.75rem !important;
}

.geyser-point {
	padding: 0 0 0 1rem !important;
}

/* ── Footer ── */
.site-footer {
	padding-block: 2rem;
	padding-inline: 0;
	border-top: 1px solid var(--line);
	background: var(--wash);
}

/* Footer inner content uses the same container gutter as the sections. */
.site-footer > * {
	width: var(--container);
	margin-inline: auto;
}

.site-footer .brand {
	font-size: 0.9375rem;
	font-weight: 650;
	color: var(--forest-deep);
	letter-spacing: -0.02em;
}

.site-footer,
.site-footer p {
	font-size: 0.8125rem;
	color: var(--muted);
}

/* ── Mobile navigation overlay ── */
.site-header .wp-block-navigation__responsive-container-open,
.site-header .wp-block-navigation__responsive-container-close {
	color: var(--ink);
}

.site-header .wp-block-navigation__responsive-container-open svg,
.site-header .wp-block-navigation__responsive-container-close svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

/* The open overlay: solid glass panel, comfortable gutters. */
.site-header .wp-block-navigation__responsive-container.is-menu-open {
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	padding: 1.5rem;
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	width: 100%;
	padding-top: 3.5rem;
}

/* Stack items as full-width rows with dividers. */
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	border-bottom: 1px solid var(--line);
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	display: block;
	width: 100%;
	padding: 0.9375rem 0.25rem;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--ink);
}

/* CTA row: no divider, becomes a proper full-width pill button (not a giant capsule). */
.site-header .wp-block-navigation__responsive-container.is-menu-open .nav-cta {
	border-bottom: 0;
	margin-top: 1.25rem;
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .nav-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0 1.25rem;
	border-radius: 999px;
	background: var(--forest);
	color: var(--white);
	font-weight: 600;
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .nav-cta a:hover {
	background: var(--forest-deep);
}

/* ── Responsive ── */
@media (min-width: 782px) {
	.site-header .wp-block-navigation__responsive-container-open {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
