/* ==========================================================================
   GHG Custom Widgets - styles (mirrors the GHG website design tokens)
   ========================================================================== */
:root {
	--ghg-navy: #051C2C;
	--ghg-navy-deep: #04141f;
	--ghg-cream: #f7f6f2;
	--ghg-accent: #1C7A93;
	--ghg-foreground: #1a2730;
	--ghg-muted: #f4f5f6;
	--ghg-muted-foreground: #5b6b75;
	--ghg-border: #d6dadd;
	--ghg-white: #ffffff;
	--ghg-font-serif: "Source Serif 4", Georgia, serif;
	--ghg-font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

.ghg-widget,
.ghg-widget * {
	box-sizing: border-box;
}
.ghg-widget {
	font-family: var(--ghg-font-sans);
	color: var(--ghg-foreground);
}
.ghg-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
@media (min-width: 1024px) {
	.ghg-container { padding: 0 40px; }
}
.ghg-serif { font-family: var(--ghg-font-serif); font-weight: 400; letter-spacing: -0.015em; line-height: 1.1; }
.ghg-eyebrow {
	font-family: var(--ghg-font-sans);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ghg-accent);
}
.ghg-eyebrow-row { display: flex; align-items: center; gap: 12px; }
.ghg-eyebrow-row.is-center { justify-content: center; }
.ghg-eyebrow-rule { height: 1px; width: 40px; background: var(--ghg-accent); display: inline-block; }

/* Buttons */
.ghg-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform .2s ease, background .2s ease, color .2s ease;
	border: 0;
	cursor: pointer;
}
.ghg-btn:hover { transform: translateY(-2px); }
.ghg-btn-primary { background: var(--ghg-navy); color: var(--ghg-white); }
.ghg-btn-light { background: var(--ghg-white); color: var(--ghg-navy); }
.ghg-btn-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .875rem; font-weight: 600; color: var(--ghg-foreground);
	text-decoration: none;
}
.ghg-btn .ghg-arrow, .ghg-btn-link .ghg-arrow { transition: transform .2s ease; }
.ghg-btn:hover .ghg-arrow, .ghg-btn-link:hover .ghg-arrow { transform: translate(2px,-2px); }

/* Section Intro */
.ghg-intro { padding: 80px 0; }
.ghg-intro .ghg-heading { font-size: clamp(2rem, 4vw, 3rem); margin: 24px 0 0; }
.ghg-intro.is-center { text-align: center; }
.ghg-intro.is-center .ghg-eyebrow-row { justify-content: center; }
.ghg-intro .ghg-split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 768px) { .ghg-intro .ghg-split { grid-template-columns: 1.2fr 1fr; } }
.ghg-intro .ghg-body { color: var(--ghg-muted-foreground); font-size: 1.075rem; }

/* Hero */
.ghg-hero { position: relative; width: 100%; overflow: hidden; background: var(--ghg-navy); }
.ghg-hero.size-full { min-height: 88vh; }
.ghg-hero.size-compact { min-height: 60vh; }
.ghg-hero__img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; opacity: .55; }
.ghg-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,28,44,.7), rgba(5,28,44,.55) 50%, rgba(5,28,44,.8)); }
.ghg-hero__inner { position: relative; display: flex; align-items: flex-start; justify-content: flex-start; min-height: inherit; padding: 140px 0 80px; }
.ghg-hero__content { max-width: 760px; margin: 0; color: #fff; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.ghg-hero__eyebrow-row { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-bottom: 24px; }
.ghg-hero__eyebrow-rule { height: 1px; width: 48px; background: rgba(255,255,255,.6); }
.ghg-hero__eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.ghg-hero__title { font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.05; letter-spacing: -.02em; }
.ghg-hero__lede { margin-top: 24px; max-width: 580px; color: rgba(255,255,255,.85); font-size: 1.075rem; }
.ghg-hero__cta { margin-top: 40px; }

/* CTA Band */
.ghg-cta { background: var(--ghg-navy); color: #fff; }
.ghg-cta__inner { padding: 80px 0; }
@media (min-width: 1024px) { .ghg-cta__inner { padding: 112px 0; } }
.ghg-cta__grid { display: grid; gap: 40px; align-items: end; }
@media (min-width: 768px) { .ghg-cta__grid { grid-template-columns: 1.4fr 1fr; } }
.ghg-cta__eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.ghg-cta__eyebrow-rule { height: 1px; width: 40px; background: rgba(255,255,255,.6); }
.ghg-cta__eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.ghg-cta__title { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; }
.ghg-cta__body { margin-top: 24px; max-width: 560px; color: rgba(255,255,255,.8); }
.ghg-cta__action { text-align: left; }
@media (min-width: 768px) { .ghg-cta__action { text-align: right; } }

/* Service Pillars */
.ghg-services { padding: 80px 0; }
.ghg-services__grid { display: grid; gap: 40px; margin-top: 56px; }
@media (min-width: 768px) { .ghg-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ghg-services__grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ghg-services__grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.ghg-pillar { display: flex; flex-direction: column; border-top: 1px solid var(--ghg-border); padding-top: 32px; transition: border-color .2s ease; }
.ghg-pillar:hover { border-color: var(--ghg-accent); }
.ghg-pillar__top { display: flex; align-items: flex-start; justify-content: space-between; }
.ghg-pillar__num { font-family: var(--ghg-font-serif); font-size: 3rem; color: rgba(91,107,117,.4); }
.ghg-pillar__icon { width: 24px; height: 24px; color: var(--ghg-accent); }
.ghg-pillar__icon img { width: 24px; height: 24px; object-fit: contain; }
.ghg-pillar__title { font-family: var(--ghg-font-serif); font-size: 1.5rem; line-height: 1.3; margin-top: 32px; }
.ghg-pillar__blurb { margin-top: 12px; font-size: .875rem; color: var(--ghg-muted-foreground); }
.ghg-pillar__list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ghg-pillar__list li { display: flex; gap: 8px; font-size: .875rem; color: rgba(26,39,48,.8); }
.ghg-pillar__list li::before { content: ""; margin-top: 8px; height: 1px; width: 12px; flex: 0 0 auto; background: var(--ghg-accent); }

/* Cards (Industry + Insight) */
.ghg-cards { padding: 80px 0; }
.ghg-cards__grid { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .ghg-cards__grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .ghg-cards__grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* Industry card */
.ghg-industry { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--ghg-navy); text-decoration: none; }
.ghg-industry__img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; opacity: .7; transition: transform .7s ease, opacity .7s ease; }
.ghg-industry:hover .ghg-industry__img { transform: scale(1.05); opacity: .6; }
.ghg-industry__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ghg-navy), rgba(5,28,44,.4) 50%, transparent); }
.ghg-industry__content { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: 32px; color: #fff; }
.ghg-industry__kicker { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.7); }
.ghg-industry__name { font-family: var(--ghg-font-serif); font-size: 1.875rem; margin-top: 8px; }
.ghg-industry__blurb { margin-top: 12px; max-width: 24rem; font-size: .875rem; color: rgba(255,255,255,.8); }
.ghg-industry__more { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 600; }

/* Insight card */
.ghg-insight { display: flex; flex-direction: column; }
.ghg-insight__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ghg-muted); }
.ghg-insight__media img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.ghg-insight:hover .ghg-insight__media img { transform: scale(1.05); }
.ghg-insight__meta { margin-top: 20px; display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--ghg-muted-foreground); }
.ghg-insight__meta .tag { color: var(--ghg-accent); }
.ghg-insight__meta .sep { height: 1px; width: 16px; background: var(--ghg-border); }
.ghg-insight__title { margin-top: 12px; font-family: var(--ghg-font-serif); font-size: 1.5rem; line-height: 1.3; transition: color .2s ease; }
.ghg-insight:hover .ghg-insight__title { color: var(--ghg-accent); }
.ghg-insight__excerpt { margin-top: 12px; font-size: .875rem; color: var(--ghg-muted-foreground); }
.ghg-insight__link { margin-top: 20px; }

/* Featured insight */
.ghg-featured { padding: 80px 0; }
.ghg-featured__grid { display: grid; gap: 40px; align-items: center; margin-top: 40px; }
@media (min-width: 768px) { .ghg-featured__grid { grid-template-columns: repeat(2, 1fr); } }
.ghg-featured__media { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.ghg-featured__media img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform .7s ease; }
.ghg-featured__media:hover img { transform: scale(1.05); }
.ghg-featured__meta { display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--ghg-muted-foreground); }
.ghg-featured__meta .tag { color: var(--ghg-accent); }
.ghg-featured__meta .sep { height: 1px; width: 16px; background: var(--ghg-border); }
.ghg-featured__title { margin-top: 16px; font-family: var(--ghg-font-serif); font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.15; }
.ghg-featured__excerpt { margin-top: 24px; color: var(--ghg-muted-foreground); font-size: 1.075rem; }
.ghg-featured__link { margin-top: 32px; }

/* Trust strip */
.ghg-trust { background: var(--ghg-cream); }
.ghg-trust__inner { padding: 64px 0; }
.ghg-trust__group { display: grid; gap: 32px; align-items: center; padding: 32px 0; }
@media (min-width: 768px) { .ghg-trust__group { grid-template-columns: 220px 1fr; } }
.ghg-trust__group + .ghg-trust__group { border-top: 1px solid var(--ghg-border); }
.ghg-trust__label { font-size: 0.7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,39,48,.6); }
.ghg-trust__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 40px; }
.ghg-trust__logos.is-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (min-width: 768px) { .ghg-trust__logos.is-grid { grid-template-columns: repeat(5, 1fr); } }
.ghg-trust__logos img { height: 56px; width: auto; object-fit: contain; }
.ghg-trust__logos.is-grid img { height: 72px; }

/* Offices */
.ghg-offices { background: var(--ghg-muted); }
.ghg-offices__inner { padding: 80px 0; }
.ghg-offices__head { text-align: center; }
.ghg-offices__title { margin-top: 16px; font-family: var(--ghg-font-serif); font-size: clamp(1.875rem,4vw,2.25rem); }
.ghg-offices__grid { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 768px) { .ghg-offices__grid { grid-template-columns: repeat(3, 1fr); } }
.ghg-office { display: flex; flex-direction: column; gap: 16px; }
.ghg-office__head { display: flex; align-items: flex-start; gap: 12px; }
.ghg-office__pin { margin-top: 4px; width: 20px; height: 20px; flex: 0 0 auto; color: var(--ghg-accent); }
.ghg-office__name { font-family: var(--ghg-font-serif); font-weight: 600; font-size: 1rem; line-height: 1.3; letter-spacing: -0.015em; }
.ghg-office__addr { margin-top: 4px; font-size: .875rem; line-height: 1.6; color: var(--ghg-muted-foreground); }
.ghg-office__map { aspect-ratio: 4/3; width: 100%; overflow: hidden; border-radius: 8px; border: 1px solid var(--ghg-border); }
.ghg-office__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Contact info */
.ghg-contact { padding: 40px 0; }
.ghg-contact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.ghg-contact__item { display: flex; align-items: flex-start; gap: 12px; font-size: .875rem; }
.ghg-contact__icon { margin-top: 2px; width: 20px; height: 20px; flex: 0 0 auto; color: var(--ghg-accent); }
.ghg-contact__label { font-weight: 600; color: var(--ghg-foreground); }
.ghg-contact__value { color: var(--ghg-muted-foreground); text-decoration: none; }
.ghg-contact__value:hover { color: var(--ghg-accent); }

/* Background helpers */
.ghg-bg-white { background: var(--ghg-white); }
.ghg-bg-cream { background: var(--ghg-cream); }
.ghg-bg-muted { background: var(--ghg-muted); }
.ghg-bg-navy { background: var(--ghg-navy); color: #fff; }
.ghg-border-top { border-top: 1px solid var(--ghg-border); }
.ghg-border-bottom { border-bottom: 1px solid var(--ghg-border); }

/* ===== Header ===== */
.ghg-header { background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ghg-border); }
.ghg-header.is-sticky { position: sticky; top: 0; z-index: 50; }
.ghg-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; }
@media (min-width:1024px){ .ghg-header__bar { padding: 16px 40px; } }
.ghg-header__brand img { height: 40px; width: auto; display: block; }
.ghg-header__nav { display: none; align-items: center; gap: 32px; }
@media (min-width:1024px){ .ghg-header__nav { display: flex; } }
.ghg-header__link { font-size: .875rem; font-weight: 500; color: rgba(26,39,48,.8); text-decoration: none; }
.ghg-header__link:hover { color: var(--ghg-accent); }
.ghg-header__cta { display: none; align-items: center; gap: 8px; border: 1px solid var(--ghg-foreground); padding: 8px 16px; font-size: .875rem; font-weight: 500; color: var(--ghg-foreground); text-decoration: none; }
@media (min-width:1024px){ .ghg-header__cta { display: inline-flex; } }
.ghg-header__cta:hover { background: var(--ghg-foreground); color:#fff; }
.ghg-header__toggle { display: inline-flex; background: none; border: 0; cursor: pointer; color: var(--ghg-foreground); }
@media (min-width:1024px){ .ghg-header__toggle { display: none; } }
.ghg-header__mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 16px; border-top: 1px solid var(--ghg-border); }
.ghg-header__mobile.is-open { display: flex; }
.ghg-header__mobile .ghg-header__link { padding: 8px 0; }

/* ===== Footer ===== */
.ghg-footer { background: var(--ghg-navy); color:#fff; }
.ghg-footer__inner { padding: 64px 0; }
.ghg-footer__grid { display: grid; gap: 48px; }
@media (min-width:768px){ .ghg-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.ghg-footer__kicker { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.ghg-footer__statement { margin: 16px 0 0; max-width: 28rem; font-size: 1.5rem; color:#fff; }
.ghg-footer__cta { display: inline-block; margin-top: 24px; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; font-size: .875rem; font-weight: 500; color:#fff; text-decoration: none; }
.ghg-footer__links { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ghg-footer__links a { font-size: .875rem; color: rgba(255,255,255,.8); text-decoration: none; }
.ghg-footer__links a:hover { color:#fff; }
.ghg-footer__contact { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.ghg-footer__contact li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.8); }
.ghg-footer__contact a { color: rgba(255,255,255,.8); text-decoration: none; }
.ghg-footer__contact a:hover { color:#fff; }
.ghg-footer__ico { margin-top: 2px; width: 16px; height: 16px; flex: 0 0 auto; }
.ghg-footer__office { color:#fff; font-weight: 500; }
.ghg-footer__bar { margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; gap: 12px; font-size: .75rem; color: rgba(255,255,255,.6); }
@media (min-width:768px){ .ghg-footer__bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.ghg-footer__legal { display: flex; gap: 24px; }
.ghg-footer__legal a { color: rgba(255,255,255,.6); text-decoration: none; }

/* ===== Recognition Strip ===== */
.ghg-recognition { padding: 48px 0; }
.ghg-recognition__title { text-align: center; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ghg-muted-foreground); }
.ghg-recognition__grid { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; justify-items: center; }
@media (min-width:640px){ .ghg-recognition__grid { grid-template-columns: repeat(3,1fr); } }
.ghg-recognition__grid img { height: 96px; width: auto; object-fit: contain; }
@media (min-width:768px){ .ghg-recognition__grid img { height: 112px; } }

/* ===== Values Grid ===== */
.ghg-values { padding: 80px 0; }
.ghg-values__heading { margin: 24px 0 0; max-width: 40rem; font-size: clamp(2rem,4vw,3rem); }
.ghg-values__grid { margin-top: 56px; display: grid; gap: 40px; }
@media (min-width:768px){ .ghg-values__grid.cols-2 { grid-template-columns: repeat(2,1fr); } .ghg-values__grid.cols-3 { grid-template-columns: repeat(2,1fr); } .ghg-values__grid.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .ghg-values__grid.cols-3 { grid-template-columns: repeat(3,1fr); } .ghg-values__grid.cols-4 { grid-template-columns: repeat(4,1fr); } }
.ghg-value { border-top: 1px solid var(--ghg-border); padding-top: 24px; }
.ghg-value__icon { display: inline-flex; color: var(--ghg-accent); font-size: 24px; }
.ghg-value__icon svg, .ghg-value__icon i { width: 24px; height: 24px; }
.ghg-value__title { margin: 16px 0 0; font-size: 1.5rem; }
.ghg-value__body { margin: 12px 0 0; font-size: .875rem; color: var(--ghg-muted-foreground); }

/* ===== Stats ===== */
.ghg-stats { padding: 80px 0; }
.ghg-stats__grid { display: grid; gap: 40px; }
@media (min-width:768px){ .ghg-stats__grid.cols-2 { grid-template-columns: repeat(2,1fr); } .ghg-stats__grid.cols-3 { grid-template-columns: repeat(3,1fr); } .ghg-stats__grid.cols-4 { grid-template-columns: repeat(4,1fr); } }
.ghg-stat { border-top: 1px solid var(--ghg-border); padding-top: 32px; }
.ghg-stat__num { font-size: clamp(3rem,6vw,3.75rem); color: var(--ghg-foreground); line-height: 1; }
.ghg-stat__label { margin-top: 16px; max-width: 18rem; font-size: .875rem; color: var(--ghg-muted-foreground); }

/* ===== Detail rows (Service + Industry) ===== */
.ghg-detail { padding: 80px 0; }
@media (min-width:1024px){ .ghg-detail { padding: 112px 0; } }
.ghg-detail__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width:768px){ .ghg-detail__grid { grid-template-columns: repeat(2,1fr); } }
.ghg-detail__media { aspect-ratio: 4/3; overflow: hidden; }
.ghg-detail__media img { height: 100%; width: 100%; object-fit: cover; }
@media (min-width:768px){ .ghg-detail__media.is-right { order: 2; } }
.ghg-detail__top { display: flex; align-items: center; gap: 16px; }
.ghg-detail__num { font-family: var(--ghg-font-serif); font-size: 3.75rem; color: rgba(91,107,117,.4); }
.ghg-detail__icon { color: var(--ghg-accent); font-size: 28px; }
.ghg-detail__icon svg, .ghg-detail__icon i { width: 28px; height: 28px; }
.ghg-detail__title { margin: 24px 0 0; font-size: clamp(1.875rem,4vw,2.5rem); }
.ghg-detail__blurb { margin: 20px 0 0; font-size: 1.075rem; color: var(--ghg-muted-foreground); }
.ghg-detail__list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 12px; }
@media (min-width:640px){ .ghg-detail__list { grid-template-columns: repeat(2,1fr); } .ghg-detail__list--stack { grid-template-columns: 1fr; } }
.ghg-detail__list li { display: flex; gap: 8px; border-top: 1px solid var(--ghg-border); padding-top: 12px; font-size: .875rem; color: rgba(26,39,48,.8); }
.ghg-detail__list li::before { content:""; margin-top: 8px; height: 1px; width: 12px; flex: 0 0 auto; background: var(--ghg-accent); }

/* ===== Contact Form ===== */
.ghg-contactform { padding: 80px 0; }
.ghg-contactform__grid { display: grid; gap: 64px; }
@media (min-width:768px){ .ghg-contactform__grid { grid-template-columns: 1fr 1.4fr; } }
.ghg-contactform__heading { margin: 24px 0 0; font-size: clamp(1.875rem,3vw,2.25rem); }
.ghg-contactform__form { display: grid; gap: 24px; border-top: 1px solid var(--ghg-border); padding-top: 40px; }
.ghg-field-row { display: grid; gap: 24px; }
@media (min-width:640px){ .ghg-field-row { grid-template-columns: repeat(2,1fr); } }
.ghg-field__label { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(26,39,48,.6); font-weight: 600; }
.ghg-req { color: var(--ghg-accent); }
.ghg-field__input { margin-top: 12px; width: 100%; border: 0; border-bottom: 1px solid var(--ghg-border); background: transparent; padding: 8px 0; font: inherit; color: var(--ghg-foreground); outline: none; }
.ghg-field__input:focus { border-color: var(--ghg-accent); }
.ghg-contactform__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ghg-contactform__consent { font-size: .75rem; color: var(--ghg-muted-foreground); }
.ghg-contactform__success { font-size: .875rem; color: var(--ghg-accent); }

/* Cards head */
.ghg-cards__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---- Additional structural classes for v1.1 widgets ---- */
.ghg-contactform__info { max-width: 32rem; }
.ghg-field { display: block; }
.ghg-detail__body { display: block; }
.ghg-footer__brand { } /* md:col-span-2 handled by grid */
@media (min-width:768px){ .ghg-footer__brand { grid-column: span 2; } }
.ghg-footer__col { display: block; }
.ghg-footer__addr { color: rgba(255,255,255,.8); }

/* ==========================================================================
   Mobile responsiveness (v1.7) — gutters, scaling, full-bleed images
   ========================================================================== */

/* Never let any widget cause horizontal overflow / stick to the screen edge */
.ghg-widget { max-width: 100%; overflow-wrap: break-word; }
.ghg-widget img { max-width: 100%; }
.ghg-hero,
.ghg-cta,
.ghg-intro,
.ghg-services,
.ghg-cards,
.ghg-featured,
.ghg-trust,
.ghg-offices,
.ghg-values,
.ghg-stats,
.ghg-detail,
.ghg-contactform,
.ghg-recognition,
.ghg-footer { overflow-x: clip; }

/* Side gutters must survive theme / Elementor resets. High specificity +
   !important so content never touches the screen edge. */
.ghg-widget .ghg-container,
.elementor .ghg-widget .ghg-container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
}
@media (min-width: 1024px) {
	.ghg-widget .ghg-container,
	.elementor .ghg-widget .ghg-container {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

/* Background / cover images must always fill their box regardless of the
   uploaded image's intrinsic size or aspect ratio. !important + the
   .elementor prefix beat Elementor's own ".elementor img { height:auto }"
   reset and any theme img rules. */
.ghg-hero__img,
.elementor .ghg-hero__img,
.ghg-industry__img,
.elementor .ghg-industry__img,
.ghg-insight__media img,
.elementor .ghg-insight__media img,
.ghg-featured__media img,
.elementor .ghg-featured__media img,
.ghg-detail__media img,
.elementor .ghg-detail__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
	border-radius: 0 !important;
}
.ghg-hero__img,
.elementor .ghg-hero__img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
}

/* Logo strips: keep logos contained, never wider than the screen */
.ghg-trust__logos img,
.ghg-recognition__grid img {
	max-width: 100% !important;
	width: auto;
	object-fit: contain;
}

/* Tablet and below */
@media (max-width: 1023px) {
	.ghg-widget .ghg-container,
	.elementor .ghg-widget .ghg-container { padding-left: 24px !important; padding-right: 24px !important; }
}

/* Phones */
@media (max-width: 767px) {
	/* Comfortable side gutters so content never touches the edge */
	.ghg-widget .ghg-container,
	.elementor .ghg-widget .ghg-container { padding-left: 20px !important; padding-right: 20px !important; }

	/* Reduce big vertical rhythm so sections aren't enormous on phones */
	.ghg-intro,
	.ghg-services,
	.ghg-cards,
	.ghg-featured,
	.ghg-values,
	.ghg-stats,
	.ghg-detail,
	.ghg-contactform,
	.ghg-recognition { padding-top: 56px; padding-bottom: 56px; }

	.ghg-cta__inner { padding-top: 56px; padding-bottom: 56px; }
	.ghg-footer__inner { padding-top: 48px; padding-bottom: 48px; }

	/* Hero: smaller height + tighter top padding (clears fixed header) */
	.ghg-hero.size-full { min-height: 80vh; }
	.ghg-hero.size-compact { min-height: 56vh; }
	.ghg-hero__inner { padding: 110px 0 56px; }
	.ghg-hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }
	.ghg-hero__lede { font-size: 1rem; }

	/* Stack any two-column layouts already handled by grid defaults; ensure
	   media keeps a sensible height when stacked */
	.ghg-detail__media,
	.ghg-featured__media { aspect-ratio: 4 / 3; }

	/* Cards head / footer bars wrap cleanly */
	.ghg-cards__head { gap: 16px; }
	.ghg-footer__statement { font-size: 1.25rem; }

	/* Buttons should be easy to tap and not overflow */
	.ghg-btn { width: auto; max-width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
	.ghg-widget .ghg-container,
	.elementor .ghg-widget .ghg-container { padding-left: 16px !important; padding-right: 16px !important; }
	.ghg-widget .ghg-header__bar { padding-left: 16px !important; padding-right: 16px !important; }
}
