/* ==========================================================================
   The Green Guard Turf — shared base styles (foundation)
   Loaded by every page BEFORE any page CSS (/assets/css/style.css or
   /assets/css/pages/<name>.css). Header/footer/mobile-menu styles are scoped
   under .gg-* / .gt-* so they never fight page styles.
   ========================================================================== */

/* ---------- Design tokens (from the Elementor kit) ---------- */
/* Font Awesome loads async; keep its <i> icons upright meanwhile so the italic
   face is never fetched just for them. */
i[class*="fa-"] { font-style: normal; }

:root {
	--gg-dark: #1B1B1B;          /* accent_6 — page background        */
	--gg-green: #10551F;         /* accent_2 — primary green          */
	--gg-lime: #84BD00;          /* accent_4 — lime accent            */
	--gg-cream: #F7F8ED;         /* accent_3 — cream                  */
	--gg-white: #ffffff;         /* accent_1 / accent_5               */
	--gg-border-soft: rgba(247, 248, 237, 0.30); /* #F7F8ED4D         */
	--gg-font: 'Montserrat', sans-serif;
	--gg-font-poppins: 'Poppins', sans-serif;
	--gg-font-inter: 'Inter', sans-serif;
	--gg-radius: 6px;
	--gg-radius-lg: 24px;
	--gg-site-max: 1280px;
	/* responsive type scale (kit vamtam_h3 / h4 / h6 / small)   */
	--gg-h3-size: 32px;
	--gg-h4-size: 24px;
	--gg-h6-size: 14px;
	--gg-small-size: 13px;
	--gg-header-h: 84px;
	--gg-header-h-shrunk: 68px;
}
@media (max-width: 1024px) {
	:root { --gg-h3-size: 25px; --gg-h4-size: 22px; --gg-h6-size: 12px; }
}
@media (max-width: 767px) {
	:root { --gg-h3-size: 21px; --gg-h4-size: 19px; }
}

/* ---------- Minimal reset (kept tame so page CSS stays in charge) ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	background-color: var(--gg-dark);
	font-family: var(--gg-font);
	font-size: 14px;
	line-height: 1.4;
	color: var(--gg-white);
	-webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; height: auto; }

/* ---------- Keyboard accessibility (invisible until focused) ---------- */

/* Skip-to-content link. Kept position:fixed and off-screen so it never takes
   part in layout — no page can shift because of it. It becomes visible only
   when a keyboard user tabs to it, which is the first stop on every page. */
.gg-skip {
	position: fixed;
	top: 0;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 100000;
	font-family: var(--gg-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}
.gg-skip:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	overflow: visible;
	padding: 14px 22px;
	background-color: var(--gg-green);
	color: var(--gg-white);
	border: 2px solid var(--gg-white);
	border-radius: var(--gg-radius);
	box-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}

/* The skip-link landing point must never draw a ring of its own. */
#gg-content-start:focus,
#gg-content-start:focus-visible { outline: none; }

/* Visible focus ring for keyboard users only (:focus-visible never matches a
   mouse click, so nothing changes visually for pointer users). The ring is a
   pair — light inner, dark outer — so it stays visible on this site's dark
   chrome AND on its white content sections, where a single colour would not. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--gg-white);
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--gg-green);
}

/* ---------- Shared buttons ---------- */
.gg-btn {
	display: inline-block;
	font-family: var(--gg-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.1;
	text-decoration: none;
	border: none;
	border-radius: var(--gg-radius);
	padding: 17px 28px;
	cursor: pointer;
	color: var(--gg-white);
	transition: background-color .3s ease, color .3s ease;
	white-space: nowrap;
}
.gg-btn--lime { background-color: var(--gg-lime); color: #0A0A0A; } /* dark ink on lime: 8.7:1 (white was 2.3:1) */
.gg-btn--lime:hover,
.gg-btn--lime:focus { background-color: var(--gg-green); color: var(--gg-white); }
.gg-btn--green { background-color: var(--gg-green); }
.gg-btn--green:hover,
.gg-btn--green:focus { background-color: var(--gg-lime); color: var(--gg-white); }

/* small uppercase lime label (footer "CALL US" / "ADDRESS" / hours) */
.gg-label {
	font-family: var(--gg-font);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(247, 248, 237, .78);
}





/* --- Services dropdown (desktop) ---------------------------------------
   Closed, the panel is display:none: it costs nothing in layout, so the
   header renders byte-identically to a nav without it, and it cannot be
   tabbed into. It opens on :hover for pointers and on :focus-within for the
   keyboard — focusing the "Services" link itself puts :focus-within on the
   <li>, which reveals the panel and folds its two links into the tab order;
   tabbing past the last one drops :focus-within and closes it again. The
   panel is absolutely positioned against its own <li>, so it stays anchored
   to "Services" even on the second row of the wrapped 1440px nav.
   Colours/metrics mirror the owner's live submenu styling. */


/* keyboard focus ring is the site-wide one from the :focus-visible block above */


/* spacer keeps page flow below the fixed header (hidden on the home page) */



/* ==========================================================================
   Mobile/iPad full-screen nav — identical gtBtn/gtMenu pattern & styles as
   the original site (duplicated from /assets/css/style.css so pages that do
   not load style.css still get them; rules are identical, so double-loading
   is harmless).
   ========================================================================== */

@media (max-width: 1024px) {















	/* Services sub-items. They carry .gt-link, so they inherit the reveal
	   animation, the tap-to-close handler and main.js's tabindex handling
	   for free; .gt-link--sub only steps the type down a level. Their own
	   overflow:hidden gives each one the same slide-up mask as .gt-item.
	   NOTE: 10 of the 12 pages load /assets/css/style.css AFTER this file,
	   and it re-declares `.gt-link` (font-size with !important in the two
	   narrow/short media queries below). `.gt-sublist .gt-link--sub` is one
	   class more specific than that plain `.gt-link`, so these win in both
	   load orders — do not flatten these selectors to `.gt-link--sub`. */



	/* iPad portrait + large mobile offsets (matches original style.css) */
}



/* ==========================================================================
   FOOTER — pre-footer CTA + footer inside one rounded green panel
   ========================================================================== */



/* --- row 1: CTA / logo / info --- */




.gg-callus {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.gg-callus__phone {
	font-family: var(--gg-font);
	font-size: var(--gg-h4-size);
	font-weight: 600;
	line-height: 1.2;
	color: var(--gg-white);
	text-decoration: none;
	padding-left: 10px;
	transition: color .3s ease;
}
.gg-callus__phone:hover { color: var(--gg-white); }


.gg-info .gg-label { margin-bottom: 5px; }
.gg-info p {
	font-family: var(--gg-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--gg-white);
	margin: 0;
}
.gg-info a {
	color: var(--gg-white);
	text-decoration: none;
	transition: color .3s ease;
}
.gg-info a:hover { color: var(--gg-lime); }

/* --- row 2: nav links + social icons --- */



/* --- row 3: copyright --- */

/* --- scroll-to-top ("top" text, bottom-left, like the original theme) --- */
.gg-scrolltop {
	/* sits in flow at the very end of the page, like the original theme */
	width: max-content;
	padding: 5px 10px 21px 20px;
	cursor: pointer;
}
#scroll-to-top-text {
	font-family: var(--gg-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--gg-white);
}

/* ---------------------------------------------------------------------------
   .gg-form-alt — stands in for a lead form while FORMS_ENABLED is false
   (A2P/10DLC carrier review; see src/data/site-config.js). Lives in base.css
   rather than components/form.css because that stylesheet is stripped along
   with the forms. Collects nothing: no inputs, by design.
   --------------------------------------------------------------------------- */
.gg-form-alt {
	font-family: var(--gg-font);
	color: var(--gg-cream);
	padding: 28px 26px 30px;
	border: 1px solid rgba(247, 248, 237, 0.42);
	border-radius: var(--gg-radius-lg);
	background-color: #202020;
}

.gg-form-alt__lead {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(247, 248, 237, 0.88);
}

.gg-form-alt__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
}

.gg-form-alt__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 15px 30px;
	font-size: 15px;
	font-weight: 700;
	color: var(--gg-dark); /* dark on lime = 7.6:1; white would be 2.27:1 */
	background-color: var(--gg-lime);
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 160ms ease;
}

.gg-form-alt__btn:hover { background-color: #97d400; }
.gg-form-alt__btn:focus-visible { outline: 3px solid var(--gg-white); outline-offset: 3px; }

.gg-form-alt__link {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--gg-lime);
	text-decoration: none;
	border-bottom: 1px solid rgba(132, 189, 0, 0.45);
}

.gg-form-alt__link:hover { color: #97d400; }

.gg-form-alt__note {
	margin: 20px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(247, 248, 237, 0.6);
}

@media (prefers-reduced-motion: reduce) {
	.gg-form-alt__btn { transition: none; }
}

/* ---------------------------------------------------------------------------
   .gg-legal — privacy policy / terms. Plain, readable, on-brand: dark ground,
   cream text, lime links, ~68ch measure.
   --------------------------------------------------------------------------- */
.gg-legal { background-color: var(--gg-dark); color: var(--gg-cream); font-family: var(--gg-font); }

.gg-legal__hero { max-width: 820px; margin: 0 auto; padding: 56px 24px 8px; }
.gg-legal__title { margin: 0 0 8px; font-size: clamp(30px, 5vw, 44px); font-weight: 600; line-height: 1.15; color: var(--gg-white); }
.gg-legal__meta { margin: 0; font-size: 13.5px; color: rgba(247, 248, 237, 0.6); }

.gg-legal__body { max-width: 820px; margin: 0 auto; padding: 24px 24px 80px; }
.gg-legal__lead { font-size: 17px; line-height: 1.65; color: rgba(247, 248, 237, 0.9); margin: 0 0 34px; padding-bottom: 26px; border-bottom: 1px solid rgba(247, 248, 237, 0.24); }

.gg-legal__body h2 { margin: 38px 0 12px; font-size: 21px; font-weight: 600; color: var(--gg-lime); line-height: 1.3; }
.gg-legal__body p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.7; color: rgba(247, 248, 237, 0.86); max-width: 68ch; }
.gg-legal__body ul { margin: 0 0 16px; padding-left: 22px; max-width: 68ch; }
.gg-legal__body li { margin-bottom: 8px; font-size: 15.5px; line-height: 1.65; color: rgba(247, 248, 237, 0.86); }
.gg-legal__body strong { color: var(--gg-white); font-weight: 600; }
.gg-legal__body code { font-size: 14px; padding: 2px 6px; border-radius: 4px; background-color: rgba(247, 248, 237, 0.1); }

.gg-legal__body a { color: var(--gg-lime); text-decoration: none; border-bottom: 1px solid rgba(132, 189, 0, 0.45); }
.gg-legal__body a:hover { color: #97d400; }

.gg-legal__callout {
	margin: 20px 0 14px !important;
	padding: 18px 20px;
	border-left: 3px solid var(--gg-lime);
	border-radius: var(--gg-radius);
	background-color: rgba(132, 189, 0, 0.09);
}

@media (max-width: 600px) {
	.gg-legal__hero { padding: 40px 20px 8px; }
	.gg-legal__body { padding: 20px 20px 60px; }
}

/* Footer "Areas we serve" row — sits between the menu row and the copyright bar.
   White on the footer green, same as the menu links beside it. */

/* ===========================================================================
   Footer — editorial grid on the brand-green panel.
   Contrast on #10551F: #FFFFFF 9.6:1, cream .78 ≈ 7:1, cream .75 ≈ 6.7:1.
   Lime (#84BD00) is 3.9:1 on the panel, so it is used only for decorative
   markers, borders and the button fill — never for small text.
   =========================================================================== */
.gg-footer { padding: 0 50px; margin-bottom: 40px; }
.gg-footer__panel {
	position: relative;
	background-color: var(--gg-green);
	background-image:
		radial-gradient(120% 90% at 100% 0%, rgba(132, 189, 0, .18), transparent 55%),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .16) 100%);
	border-radius: var(--gg-radius-lg);
	padding: 56px 48px 26px;
	overflow: hidden;
}
.gg-footer__in { max-width: var(--gg-site-max); margin: 0 auto; }

/* CTA band */
.gg-footer__cta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--gg-border-soft);
}
.gg-footer__eyebrow {
	margin: 0 0 10px;
	font-family: var(--gg-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(247, 248, 237, .78);
}
.gg-footer__eyebrow::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 2px;
	margin-right: 10px;
	vertical-align: middle;
	background: var(--gg-lime);
}
.gg-footer__heading {
	margin: 0;
	font-family: var(--gg-font);
	font-size: clamp(26px, 2.6vw, 38px);
	font-weight: 600;
	line-height: 1.15;
	color: var(--gg-white);
	max-width: 16ch;
}
.gg-footer__actions { display: flex; align-items: center; gap: 28px; flex: none; }
.gg-footer__actions .gg-btn { padding: 16px 28px; }
.gg-footer__actions .gg-callus__phone { padding-left: 0; }

/* Grid */
.gg-footer__grid {
	display: grid;
	grid-template-columns: 1fr .7fr 1.55fr 1.15fr;
	gap: 40px;
	padding: 44px 0 40px;
	border-bottom: 1px solid var(--gg-border-soft);
}
.gg-footer__brand > a { display: inline-block; line-height: 0; }
.gg-footer__brand img { width: 112px; height: auto; display: block; }
.gg-footer__brand p {
	margin: 18px 0 0;
	font-family: var(--gg-font);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(247, 248, 237, .85);
	max-width: 30ch;
}
.gg-footer__social { display: flex; gap: 8px; margin-top: 22px; }
.gg-footer__social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--gg-border-soft);
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.gg-footer__social svg { width: 15px; height: 15px; fill: var(--gg-cream); transition: fill .2s ease; }
.gg-footer__social a:hover,
.gg-footer__social a:focus-visible { border-color: var(--gg-lime); background: rgba(132, 189, 0, .14); transform: translateY(-1px); }
.gg-footer__social a:hover svg { fill: var(--gg-lime); }

.gg-footer__title {
	margin: 0 0 16px;
	font-family: var(--gg-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gg-cream);
}
.gg-footer__title::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 2px;
	margin-right: 10px;
	vertical-align: middle;
	background: var(--gg-lime);
}
.gg-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.gg-footer__links a {
	display: inline-block;
	font-family: var(--gg-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--gg-white);
	text-decoration: none;
	text-underline-offset: 4px;
	transition: color .2s ease;
}
.gg-footer__links a:hover,
.gg-footer__links a:focus-visible { color: var(--gg-cream); text-decoration: underline; text-decoration-color: var(--gg-lime); }

/* Areas we serve — note (chips use the shared .gg-chip styles) */
.gg-footer__note {
	margin: -4px 0 14px;
	font-family: var(--gg-font);
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(247, 248, 237, .8);
	max-width: 34ch;
}
.gg-footer .gg-chip { background: rgba(0, 0, 0, .22); border-color: rgba(247, 248, 237, .22); }

/* Contact column reuses .gg-info / .gg-label */
.gg-footer__contact .gg-info + .gg-info { margin-top: 16px; }

/* Legal bar */
.gg-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px 24px;
	flex-wrap: wrap;
	padding-top: 22px;
}
.gg-footer__bottom p {
	margin: 0;
	font-family: var(--gg-font);
	font-size: var(--gg-small-size);
	line-height: 1.5;
	color: rgba(247, 248, 237, .75);
}
.gg-footer__bottom p a { color: var(--gg-cream); text-decoration: none; }
.gg-footer__credit { font-size: 13px; }
.gg-footer__bottom p a:hover { text-decoration: underline; text-decoration-color: var(--gg-lime); text-underline-offset: 3px; }
.gg-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.gg-footer__legal a {
	font-family: var(--gg-font);
	font-size: 13px;
	font-weight: 600;
	color: rgba(247, 248, 237, .85);
	text-decoration: none;
	text-underline-offset: 4px;
}
.gg-footer__legal a:hover,
.gg-footer__legal a:focus-visible { color: var(--gg-cream); text-decoration: underline; text-decoration-color: var(--gg-lime); }

@media (max-width: 1024px) {
	.gg-footer { padding: 0 30px; }
	.gg-footer__panel { padding: 48px 32px 24px; }
	.gg-footer__grid { grid-template-columns: 1.1fr .8fr 1.1fr; grid-auto-flow: dense; gap: 36px 32px; }
	.gg-footer__areas { grid-column: 1 / -1; }
	.gg-footer__note { max-width: none; }
}
@media (max-width: 767px) {
	.gg-footer { padding: 0 20px; }
	.gg-footer__panel { padding: 40px 22px 22px; }
	.gg-footer__cta { flex-direction: column; align-items: flex-start; gap: 22px; padding-bottom: 30px; }
	.gg-footer__heading { max-width: none; }
	.gg-footer__actions { flex-wrap: wrap; gap: 18px; }
	.gg-footer__grid { grid-template-columns: 1fr; gap: 30px; padding: 34px 0 30px; }
	.gg-footer__areas { grid-column: auto; }
	.gg-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
	.gg-footer__chips a, .gg-footer__social a, .gg-footer__links a { transition: none; }
	.gg-footer__chips a:hover, .gg-footer__social a:hover { transform: none; }
}

/* ===========================================================================
   HEADER — desktop (>1024px). Slim fixed bar, transparent over the hero,
   frosted dark once scrolled, shrinks after 80px. Text is white on either a
   dark scrim (hero overlays are >=60% black) or the frosted bar (#1B1B1B .86).
   =========================================================================== */
.gg-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 990;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.gg-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: rgba(27, 27, 27, .86);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	opacity: 0;
	transition: opacity .25s ease;
}
.gg-header.is-stuck::before { opacity: 1; }
.gg-header.is-stuck { border-bottom-color: rgba(132, 189, 0, .28); }
.gg-header__inner {
	max-width: 1400px;
	margin: 0 auto;
	height: var(--gg-header-h);
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0 32px;
	transition: height .25s ease;
}
.gg-header.is-shrunk .gg-header__inner { height: var(--gg-header-h-shrunk); }
.gg-header__logo a { display: block; line-height: 0; }
.gg-header__logo img { height: 70px; width: auto; display: block; transition: height .25s ease; }
.gg-header.is-shrunk .gg-header__logo img { height: 54px; }
.gg-header__nav { flex: 1 1 auto; display: flex; justify-content: center; }
.gg-nav { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.gg-nav__item { position: relative; }
.gg-nav a,
.gg-nav__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border: 0;
	background: none;
	cursor: pointer;
	font-family: var(--gg-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--gg-white);
	text-decoration: none;
	position: relative;
	transition: color .2s ease;
}
.gg-nav a::after,
.gg-nav__toggle::after {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 6px;
	height: 2px;
	background: var(--gg-lime);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s cubic-bezier(.2, .7, .2, 1);
}
.gg-nav a:hover::after, .gg-nav__toggle:hover::after,
.gg-nav a.active::after, .gg-nav__toggle.active::after,
.gg-nav__toggle[aria-expanded="true"]::after,
.gg-nav__item:hover > .gg-nav__toggle::after { transform: scaleX(1); }
.gg-nav a:hover, .gg-nav__toggle:hover { color: var(--gg-cream); }
.gg-nav__caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .8; }

/* Panels */
.gg-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	display: none;
	min-width: 300px;
	padding: 20px 22px 22px;
	background: #121212;
	border: 1px solid #262626;
	border-top: 2px solid var(--gg-lime);
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
	z-index: 5;
}
.gg-nav__item:hover > .gg-panel,
.gg-nav__item:focus-within > .gg-panel,
.gg-nav__toggle[aria-expanded="true"] + .gg-panel { display: block; }
.gg-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; } /* hover bridge */
.gg-panel--services { display: none; width: 560px; }
.gg-nav__item:hover > .gg-panel--services,
.gg-nav__item:focus-within > .gg-panel--services,
.gg-nav__toggle[aria-expanded="true"] + .gg-panel--services { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; }
.gg-panel--areas { width: 440px; }
.gg-panel__all { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--gg-font); font-size: 13px; font-weight: 700; color: #8EE000; text-decoration: none; }
.gg-panel__all:hover, .gg-panel__all:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.gg-chip--all { border-color: rgba(132, 189, 0, .5); }
.gg-chip--all::before { display: none; }
.gg-panel__title { margin: 0 0 12px; font-family: var(--gg-font); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9AA0A6; }
.gg-panel__list, .gg-panel__links { list-style: none; margin: 0; padding: 0; }
.gg-panel__list li + li { margin-top: 2px; }
.gg-panel__list a { display: block; padding: 9px 10px; border-radius: 8px; text-decoration: none; transition: background-color .18s ease; }
.gg-panel__list a:hover, .gg-panel__list a:focus-visible { background: #1b1b1b; }
.gg-panel__name { display: block; font-family: var(--gg-font); font-size: 14px; font-weight: 700; color: #fff; }
.gg-panel__desc { display: block; margin-top: 2px; font-family: var(--gg-font); font-size: 12.5px; color: #9AA0A6; }
.gg-panel__col--aside { border-left: 1px solid #262626; padding-left: 22px; }
.gg-panel__links li + li { margin-top: 8px; }
.gg-panel__links a { font-family: var(--gg-font); font-size: 14px; font-weight: 600; color: #C9CFD5; text-decoration: none; }
.gg-panel__links a:hover, .gg-panel__links a:focus-visible { color: #8EE000; }

/* Chips (shared by header panel, mobile menu and footer) */
.gg-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.gg-chip {
	display: inline-flex; align-items: center; gap: 8px;
	min-height: 36px; padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(247, 248, 237, .2);
	font-family: var(--gg-font); font-size: 13px; font-weight: 600;
	color: #fff; text-decoration: none;
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.gg-chip::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--gg-lime); flex: none; }
.gg-chip:hover, .gg-chip:focus-visible { border-color: var(--gg-lime); background: rgba(132, 189, 0, .16); transform: translateY(-1px); }
.gg-chip[aria-current="page"] { border-color: var(--gg-lime); background: rgba(132, 189, 0, .24); }

/* Right side: phone text link + one button */
.gg-header__cta { display: flex; align-items: center; gap: 22px; flex: none; }
.gg-header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--gg-font); font-size: 14px; font-weight: 700; color: var(--gg-white); text-decoration: none; transition: color .2s ease; }
.gg-header__phone svg { width: 16px; height: 16px; fill: var(--gg-lime); }
.gg-header__phone:hover, .gg-header__phone:focus-visible { color: var(--gg-cream); }
.gg-header__cta .gg-btn { padding: 13px 22px; }
.gg-header-spacer { height: var(--gg-header-h); }

/* ===========================================================================
   HEADER — mobile / tablet (<=1024px)
   =========================================================================== */
.gg-mobilebar, .gt-overlay { display: none; }
@media (max-width: 1024px) {
	.gg-header { display: none; }
	.gg-header-spacer { height: 68px; }
	.gg-mobilebar, .gt-overlay { -webkit-tap-highlight-color: transparent; }
	/* The bar sits ABOVE the drawer (1010 > 1000) on purpose: the toggle is the
	   close button while the menu is open, so it must never be covered. */
	.gg-mobilebar { display: block; position: fixed; top: 0; left: 0; right: 0; z-index: 1010; padding-top: env(safe-area-inset-top); border-bottom: 1px solid rgba(132, 189, 0, .22); }
	.gg-mobilebar::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(27, 27, 27, .92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
	.gg-mobilebar__inner { min-height: 68px; display: flex; align-items: center; gap: 12px; padding: 0 16px 0 18px; }
	.gg-mobilebar__logo { display: block; line-height: 0; margin-right: auto; }
	.gg-mobilebar__logo img { height: 50px; width: auto; display: block; }
	.gg-mobilebar__phone { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(247, 248, 237, .22); -webkit-tap-highlight-color: transparent; }
	.gg-mobilebar__phone svg { width: 18px; height: 18px; fill: var(--gg-lime); }

	/* Toggle: lime circle with three bars; turns into a cream circle with an X. */
	.gt-toggle { position: relative; display: grid; place-items: center; width: 44px; height: 44px; margin: 0; padding: 0; border: 0; border-radius: 999px; background: var(--gg-lime); color: #0A0A0A; cursor: pointer; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; appearance: none; transition: background-color .3s ease, transform .2s ease; }
	.gt-toggle:active { transform: scale(.94); }
	.gt-toggle.active { background: var(--gg-cream); }
	.gt-toggle__icon { position: relative; display: block; width: 18px; height: 14px; }
	.gt-bar { position: absolute; left: 0; top: 50%; width: 18px; height: 0; margin-top: -1px; border-top: 2px solid currentColor; border-radius: 2px; transition: transform .3s cubic-bezier(.2, .8, .2, 1), opacity .2s ease; }
	.gt-bar:nth-child(1) { transform: translateY(-6px); }
	.gt-bar:nth-child(3) { transform: translateY(6px); }
	.gt-toggle.active .gt-bar:nth-child(1) { transform: rotate(45deg); }
	.gt-toggle.active .gt-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
	.gt-toggle.active .gt-bar:nth-child(3) { transform: rotate(-45deg); }

	/* Overlay = scrim + drawer. Closed: hidden after the slide-out finishes. */
	.gt-overlay { display: block; position: fixed; inset: 0; z-index: 1000; visibility: hidden; transition: visibility 0s linear .38s; }
	.gt-overlay.open { visibility: visible; transition-delay: 0s; }
	.gt-scrim { position: absolute; inset: 0; touch-action: none; background: rgba(0, 0, 0, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity .32s ease; }
	.gt-overlay.open .gt-scrim { opacity: 1; }
	.gt-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 400px); display: flex; flex-direction: column; padding-top: calc(68px + env(safe-area-inset-top)); background-color: #121412; background-image: radial-gradient(120% 55% at 100% 0%, rgba(132, 189, 0, .14), transparent 62%); border-left: 1px solid rgba(132, 189, 0, .18); box-shadow: -24px 0 60px rgba(0, 0, 0, .5); transform: translateX(100%); transition: transform .38s cubic-bezier(.2, .8, .2, 1); overscroll-behavior: contain; }
	.gt-overlay.open .gt-drawer { transform: none; }
	.gt-drawer__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding: 6px 22px 12px; }

	/* Rows: big primary links; Services and Areas are accordions (+ turns into x). */
	.gt-list { list-style: none; margin: 0; padding: 0; }
	.gt-item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
	.gt-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; min-height: 60px; margin: 0; padding: 15px 0; border: 0; background: none; text-align: left; font-family: var(--gg-font); font-size: 21px; font-weight: 700; line-height: 1.15; color: #fff; text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; appearance: none; }
	.gt-row.active { color: #8EE000; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
	.gt-plus { position: relative; flex: none; width: 30px; height: 30px; border-radius: 999px; border: 1px solid rgba(247, 248, 237, .22); transition: transform .32s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, background-color .2s ease; }
	.gt-plus::before, .gt-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 0; margin: -1px 0 0 -6px; border-top: 2px solid var(--gg-lime); border-radius: 2px; }
	.gt-plus::after { transform: rotate(90deg); }
	.gt-acc[aria-expanded="true"] .gt-plus { transform: rotate(45deg); border-color: var(--gg-lime); background: rgba(132, 189, 0, .14); }
	.gt-acc__panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .32s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .32s; }
	.gt-acc[aria-expanded="true"] + .gt-acc__panel { grid-template-rows: 1fr; visibility: visible; transition-delay: 0s; }
	.gt-acc__inner { overflow: hidden; min-height: 0; }
	.gt-sublist { list-style: none; margin: 0 0 0 2px; padding: 2px 0 16px 16px; border-left: 2px solid rgba(132, 189, 0, .35); }
	.gt-sub { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 46px; padding: 10px 0; font-family: var(--gg-font); font-size: 16px; font-weight: 600; color: #D9DDD9; text-decoration: none; -webkit-tap-highlight-color: transparent; }
	.gt-sub.active { color: #8EE000; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
	/* Inside the clipped accordion box the ring is drawn inward so it is never cut. */
	.gt-acc__panel a:focus-visible { outline-offset: -3px; box-shadow: none; }
	.gt-sub--all { color: #fff; }
	.gt-arrow { font-size: 18px; line-height: 1; color: #8EE000; }
	.gt-chips { padding: 6px 0 4px; gap: 6px; }
	.gt-allareas { margin: 0; padding: 0 0 12px; }
	.gt-chips .gg-chip { padding: 0 14px; }

	/* Foot: hours + the two actions, pinned under the scrolling list. */
	.gt-drawer__foot { position: relative; flex: none; display: grid; gap: 10px; padding: 12px 22px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255, 255, 255, .08); background: rgba(18, 20, 18, .92); }
	/* Soft fade above the foot: a cue that the list continues underneath. */
	.gt-drawer__foot::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 28px; margin-bottom: 1px; background: linear-gradient(to bottom, rgba(18, 20, 18, 0), rgba(18, 20, 18, .96)); pointer-events: none; }
	.gt-hours { margin: 0 0 2px; font-family: var(--gg-font); font-size: 12.5px; line-height: 1.4; letter-spacing: .01em; color: #9AA0A6; }
	.gt-cta { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; font-size: 15px; }
	.gt-call { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; border-radius: var(--gg-radius); border: 1px solid rgba(247, 248, 237, .22); font-family: var(--gg-font); font-size: 15px; font-weight: 700; color: #fff; text-decoration: none; -webkit-tap-highlight-color: transparent; }
	.gt-call svg { width: 16px; height: 16px; fill: var(--gg-lime); }

	/* Staggered reveal on open; everything simply appears with reduced motion. */
	.gt-item, .gt-drawer__foot > * { opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .34s cubic-bezier(.2, .8, .2, 1); }
	.gt-overlay.open .gt-item, .gt-overlay.open .gt-drawer__foot > * { opacity: 1; transform: none; }
	.gt-overlay.open .gt-item:nth-child(1) { transition-delay: .06s; }
	.gt-overlay.open .gt-item:nth-child(2) { transition-delay: .09s; }
	.gt-overlay.open .gt-item:nth-child(3) { transition-delay: .12s; }
	.gt-overlay.open .gt-item:nth-child(4) { transition-delay: .15s; }
	.gt-overlay.open .gt-item:nth-child(5) { transition-delay: .18s; }
	.gt-overlay.open .gt-item:nth-child(6) { transition-delay: .21s; }
	.gt-overlay.open .gt-item:nth-child(7) { transition-delay: .24s; }
	.gt-overlay.open .gt-drawer__foot > :nth-child(1) { transition-delay: .22s; }
	.gt-overlay.open .gt-drawer__foot > :nth-child(2) { transition-delay: .25s; }
	.gt-overlay.open .gt-drawer__foot > :nth-child(3) { transition-delay: .28s; }

	/* Page behind the menu: frozen in place (main.js stores the scroll offset in
	   `top` and restores it on close), chat bubble out of the way. */
	html.gg-menu-open { scroll-behavior: auto !important; overflow: hidden; overscroll-behavior: none; }
	body.gg-menu-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; overscroll-behavior: none; }
	body.gg-menu-open .gg-mobilebar, .gt-drawer__foot { touch-action: none; }
	body.gg-menu-open chat-widget { display: none !important; }

	@media (forced-colors: active) {
		.gt-toggle, .gt-cta, .gt-call, .gt-plus, .gg-chip, .gg-mobilebar__phone { border: 1px solid ButtonText; }
		.gg-chip::before { forced-color-adjust: none; }
	}

	/* Short viewports (landscape phones): tighter rows, actions side by side. */
	@media (max-height: 520px) {
		.gt-row { min-height: 50px; padding: 10px 0; font-size: 18px; }
		.gt-drawer__foot { grid-template-columns: 1fr 1fr; padding-top: 10px; }
		.gt-hours { grid-column: 1 / -1; }
		.gt-cta, .gt-call { min-height: 44px; font-size: 14px; }
	}
}
@media (prefers-reduced-motion: reduce) {
	.gg-header, .gg-header__inner, .gg-header__logo img, .gg-nav a::after, .gg-nav__toggle::after, .gg-chip, .gt-overlay, .gt-scrim, .gt-drawer, .gt-item, .gt-drawer__foot > *, .gt-bar, .gt-toggle, .gt-plus, .gt-acc__panel { transition: none; }
}

/* ===========================================================================
   MOBILE POLISH (audit 2026-09-04)
   Touch targets >= 44px where a link stands alone; inline links inside
   sentences are left to their line height (WCAG 2.5.8 exception).
   =========================================================================== */
@media (max-width: 1024px), (pointer: coarse) {
	.gg-footer__links { gap: 0; }
	.gg-footer__links a { display: block; padding: 11px 0; }
	.gg-info a { display: inline-block; padding: 8px 0; margin: -8px 0; }
	.gg-callus__phone { display: inline-block; padding: 8px 0; }
	.gg-footer__legal { gap: 6px 22px; }
	.gg-footer__legal a, .gg-footer__bottom p a { display: inline-block; padding: 10px 0; }
	.cy-link, .tr-link, .cm-link, .mr-link, .co-link, .cy-inline, .tr-inline, .cm-inline, .mr-inline, .co-inline { display: inline-flex; align-items: center; min-height: 44px; }
	.cy-lede .cy-inline, .tr-lede .tr-inline, .cm-lede .cm-inline, .mr-lede .mr-inline, .co-lede .co-inline, .faq-body a, .cy-source .cy-inline { display: inline; min-height: 0; }
	.banner-btn, .view-btn, .pt-btn, .pg-btn, .gg-pbtn, .gg-welcome__btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }
	.text-turf-green.font-semibold { display: inline-block; padding: 10px 0; }
	.gg-panel__title { font-size: 12px; }
}
@media (max-width: 767px) {
	.banner-btn { font-size: 14px; padding: 12px 20px; }
	.panel-content p { font-size: 13px; }
	.client-info .title { font-size: 13px; }
	.text-\[10px\] { font-size: 12.5px !important; line-height: 1.5 !important; }
	.text-xs { font-size: 13px !important; }
	.about-text { text-align: left; }
}
/* Motion is a flourish, never a requirement: with reduced motion everything is simply visible */
@media (prefers-reduced-motion: reduce) {
	[data-gg-anim] { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* mobile polish, round two: rules that must beat page-local legacy styles */
@media (max-width: 1024px), (pointer: coarse) {
	.gg-chip { min-height: 44px; padding: 0 16px; }
	.gg-callus__phone { display: inline-flex; align-items: center; min-height: 44px; padding: 0; }
}
@media (max-width: 767px) {
	.gg-hero__btns .banner-btn, a.banner-btn { font-size: 14px !important; min-height: 44px !important; padding: 12px 20px !important; }
	.image-showcase .panel-content p, .panel-content p { font-size: 13px !important; line-height: 1.5 !important; }
	.client-info .title, .client-info p.title { font-size: 13px !important; }
}

/* mobile polish, round three */
@media (max-width: 1024px), (pointer: coarse) {
	.gg-footer__legal a, .gg-footer__bottom p a { padding: 12px 0; }
	.ggt-info-detail { display: inline-block; padding: 10px 0; }
}
@media (max-width: 767px) {
	body .image-showcase .showcase-panel .panel-content p { font-size: 13px !important; line-height: 1.5 !important; }
	.gg-hero__btns { flex-direction: column; align-items: stretch; gap: 12px; max-width: 320px; }
	.gg-hero__btns .banner-btn { width: 100%; justify-content: center; text-align: center; }
	.gg-hero__btns .banner-btn:not(.banner-btn--lime) { background: rgba(0, 0, 0, .28); border: 1.5px solid rgba(247, 248, 237, .85); color: #fff; }
}
/* homepage blog cards: the text link had no colour of its own and fell back to browser blue */
.team-block .view-btn, .card .view-btn { color: #8EE000; text-decoration: underline; text-underline-offset: 4px; }
.team-block .view-btn:hover, .card .view-btn:hover { color: #fff; text-decoration-color: #8EE000; }

/* ===========================================================================
   FOOTER — phone (<=767px), redesign 2026-09-07.
   One column with a strict rhythm: the CTA, then four bands (brand, Explore,
   Areas, Contact) each 26px deep under a hairline, then a centred legal bar.
   Brand is logo + copy side by side, Explore runs in two columns, Contact is
   label/value rows, the call action is a bordered row that taps as one.
   Desktop (>1024px) and tablet (768–1024px) rules above are untouched.
   =========================================================================== */
@media (max-width: 767px) {
	.gg-footer { padding: 0 14px; margin-bottom: 14px; }
	.gg-footer__panel {
		padding: 34px 22px 20px;
		border-radius: 20px;
		background-image:
			radial-gradient(140% 50% at 100% 0%, rgba(132, 189, 0, .22), transparent 60%),
			linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .22) 100%);
	}
	/* gilt edge: a thin lime highlight along the top of the panel */
	.gg-footer__panel::before { content: ""; position: absolute; left: 10%; right: 10%; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(142, 224, 0, .75), transparent); }

	/* CTA */
	.gg-footer__cta { gap: 22px; padding-bottom: 28px; border-bottom-color: rgba(247, 248, 237, .16); }
	.gg-footer__eyebrow { margin-bottom: 8px; font-size: 12px; letter-spacing: .14em; }
	.gg-footer__heading { font-size: 26px; line-height: 1.12; letter-spacing: -.01em; max-width: none; }
	.gg-footer__actions { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; }
	.gg-footer__actions .gg-btn { display: flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 20px; font-size: 15px; }
	.gg-footer__actions .gg-callus { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; padding: 0 18px; border: 1px solid rgba(247, 248, 237, .3); border-radius: var(--gg-radius); }
	.gg-footer__actions .gg-callus .gg-label { margin: 0; font-size: 12px; letter-spacing: .12em; color: rgba(247, 248, 237, .75); }
	.gg-footer__actions .gg-callus__phone { display: inline-flex; align-items: center; min-height: 0; padding: 0; font-family: var(--gg-font); font-size: 17px; font-weight: 700; letter-spacing: .01em; color: var(--gg-white); text-decoration: none; }
	.gg-footer__actions .gg-callus__phone::after { content: ""; position: absolute; inset: 0; border-radius: inherit; } /* the whole row taps */
	/* keyboard focus outlines the whole row, not just the number */
	.gg-footer__actions .gg-callus__phone:focus-visible { outline: none; box-shadow: none; }
	.gg-footer__actions .gg-callus:focus-within { outline: 2px solid var(--gg-white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--gg-green); }

	/* Bands */
	.gg-footer__grid { display: block; padding: 0; border-bottom: 0; }
	.gg-footer__grid > * { padding: 26px 0; border-bottom: 1px solid rgba(247, 248, 237, .14); }
	.gg-footer__title { margin: 0 0 14px; font-size: 12px; letter-spacing: .14em; }

	/* Brand: logo beside the copy, social icons under the copy */
	.gg-footer__brand { display: grid; grid-template-columns: 62px 1fr; column-gap: 16px; align-items: center; }
	.gg-footer__brand > a { grid-row: 1 / 3; align-self: start; }
	.gg-footer__brand img { width: 62px; }
	.gg-footer__brand p { margin: 0; font-size: 13.5px; line-height: 1.55; max-width: none; color: rgba(247, 248, 237, .88); }
	.gg-footer__social { grid-column: 2; margin-top: 12px; gap: 8px; }
	.gg-footer__social a { width: 44px; height: 44px; }

	/* Explore: two columns of 44px rows */
	.gg-footer__links { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, auto); grid-auto-flow: column; gap: 0 16px; } /* reads down the first column, then the second */
	.gg-footer__links a { display: block; min-height: 44px; padding: 13px 0; font-size: 15px; }

	/* Areas */
	.gg-footer__note { margin: -2px 0 14px; font-size: 13.5px; line-height: 1.5; max-width: none; }
	.gg-footer__chips { gap: 6px; }
	.gg-footer__chips .gg-chip { padding: 0 14px; }

	/* Contact: label | value rows */
	.gg-footer__contact .gg-info { display: grid; grid-template-columns: 80px 1fr; gap: 0 12px; align-items: start; padding: 11px 0; margin: 0; border-top: 1px solid rgba(247, 248, 237, .1); }
	.gg-footer__contact .gg-info:first-of-type { padding-top: 0; border-top: 0; }
	.gg-footer__contact .gg-info + .gg-info { margin-top: 0; }
	.gg-footer__contact .gg-info .gg-label { margin: 0; padding-top: 3px; font-size: 12px; letter-spacing: .12em; line-height: 1.5; }
	.gg-footer__contact .gg-info p { margin: 0; font-size: 14px; line-height: 1.5; text-wrap: balance; overflow-wrap: anywhere; }

	/* Legal: centred and quiet */
	.gg-footer__bottom { align-items: center; text-align: center; gap: 4px; padding-top: 20px; }
	.gg-footer__bottom p { font-size: 12.5px; line-height: 1.55; color: rgba(247, 248, 237, .7); max-width: 34ch; }
	.gg-footer__legal { order: 2; justify-content: center; gap: 4px 12px; }
	.gg-footer__credit { order: 3; margin-top: 2px; font-size: 12.5px; }
	.gg-footer__legal a { display: inline-block; padding: 13px 6px; }
	.gg-footer__bottom p a { display: inline-block; padding: 13px 0; }

	/* "top" link under the card: centred, quiet, 44px tall */
	.gg-scrolltop { display: block; width: auto; margin: 0 auto; padding: 12px 16px 22px; text-align: center; }
	#scroll-to-top-text { display: inline-block; padding: 8px 0; font-family: var(--gg-font); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(247, 248, 237, .6); }
	#scroll-to-top-text::before { content: "\2191"; margin-right: 8px; color: var(--gg-lime); }
}
/* Narrow phones: contact rows stack label over value so long values never clip */
@media (max-width: 374px) {
	.gg-footer__contact .gg-info { grid-template-columns: 1fr; gap: 3px 0; }
	.gg-footer__contact .gg-info .gg-label { padding-top: 0; }
}

/* ===========================================================================
   Blog: "Related guides" block at the end of every post (posts used to have a
   single inbound link each, from the index). Dark card, lime rule, 44px rows.
   =========================================================================== */
.blog-post-content .blog-related { max-width: 820px; margin: 44px auto 0; padding: 24px 28px 18px; background: #121212; border: 1px solid #262626; border-left: 4px solid #84BD00; border-radius: 14px; }
.blog-post-content .blog-related h2 { margin: 0 0 8px; padding: 0; border: 0; font-family: var(--gg-font); font-size: 12.5px; font-weight: 700; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; color: #9AA0A6; }
.blog-post-content .blog-related ul { list-style: none; margin: 0; padding: 0; }
.blog-post-content .blog-related li { list-style: none; margin: 0; padding: 0; }
.blog-post-content .blog-related a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-family: var(--gg-font); font-size: 16px; font-weight: 600; line-height: 1.35; color: #fff; text-decoration: none; }
.blog-post-content .blog-related a::before { content: "\2192"; color: #8EE000; flex: none; }
.blog-post-content .blog-related a:hover, .blog-post-content .blog-related a:focus-visible { color: #8EE000; text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 760px) { .blog-post-content .blog-related { padding: 20px 20px 14px; } }

/* Blog tables (comparison guides): dark rows, lime header, scrolls on narrow phones */
.blog-post-content table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: .95rem; line-height: 1.45; }
.blog-post-content th, .blog-post-content td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid #2a2a2a; }
.blog-post-content th { color: #8EE000; font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.blog-post-content tbody tr:last-child td { border-bottom: 0; border-top: 1px solid #84BD00; }
@media (max-width: 640px) {
	/* Stack each row as a card: the column header becomes a small label above each cell. */
	.blog-post-content table, .blog-post-content tbody, .blog-post-content tr, .blog-post-content td { display: block; }
	.blog-post-content thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.blog-post-content tr { padding: 6px 0 10px; border-bottom: 1px solid #2a2a2a; }
	.blog-post-content tbody tr:last-child { border-bottom: 0; border-top: 1px solid #84BD00; }
	.blog-post-content tbody tr td { padding: 6px 0; border: 0; }
	.blog-post-content tbody tr:last-child td { border-top: 0; }
	.blog-post-content td::before { content: attr(data-label); display: block; margin-bottom: 2px; color: #8EE000; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
	.blog-post-content td[data-label="Line"] { font-weight: 700; color: #fff; }
	.blog-post-content td[data-label="Line"]::before { display: none; }
}
