/* pagehero.css — the compact hero every interior page opens with.

   REBUILT 2026-09-09. Two changes worth naming:

   The eyebrow was set uppercase with 0.08em tracking. A tracked-out all-caps label
   above every heading is one of the most reliable tells of a generated page, and it
   appeared on all fourteen interior pages. It is now sentence case at weight 600,
   sitting beside a brass rule, which encodes the same information — where you are —
   without the costume.

   The old version was a flat navy block with the display type scale, which made an
   interior page shout as loudly as the homepage. This is deliberately quieter: the
   h1 drops to the h1 scale rather than display, and the ground is the deep navy so
   it reads as a header rather than as a hero competing with the page. */

.gnt-pagehero {
	position: relative;
	background-color: var(--navy-700);
	color: var(--color-text-inverse);
	overflow: hidden;
}

/* A single brass hairline along the foot, the only ornament on the block. It ties
   the fourteen interior pages together as a set. */
.gnt-pagehero::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: var(--border-width-thick);
	background: linear-gradient(
		90deg,
		var(--color-accent-rule) 0%,
		var(--color-accent-rule) 18%,
		rgba(176, 138, 74, 0) 60%
	);
}

.gnt-pagehero__inner {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding: var(--space-20) var(--container-gutter) var(--space-16);
	text-align: left;
}

.gnt-pagehero__eyebrow {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin: 0 0 var(--space-5);
	font-size: var(--text-overline);
	line-height: 1.4;
	font-weight: var(--font-weight-semibold);
	letter-spacing: normal;
	text-transform: none;
	color: var(--brass-100);
}

.gnt-pagehero__eyebrow::before {
	content: "";
	flex: 0 0 auto;
	width: var(--accent-bar-width);
	height: var(--accent-bar-height);
	background-color: var(--color-accent-rule);
}

.gnt-pagehero__title {
	margin: 0;
	max-width: 26ch;
	font-size: var(--text-h1);
	line-height: var(--text-h1-lh);
	letter-spacing: var(--text-h1-ls);
	font-weight: var(--font-weight-bold);
	color: var(--color-text-inverse);
}

.gnt-pagehero__lead {
	margin: var(--space-5) 0 0;
	font-size: var(--text-lead);
	line-height: var(--text-lead-lh);
	color: var(--color-text-on-dark-muted);
}

.gnt-pagehero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-4);
	margin-top: var(--space-8);
}

/* Measure, at 0,3,0 — a bare wrapper class does not hold against Elementor's own
   width handling on .elementor-element, and the lead ran the full container width. */
.gnt-pagehero .elementor-element.gnt-pagehero__title { max-width: 26ch; }
.gnt-pagehero .elementor-element.gnt-pagehero__lead  { max-width: 58ch; }

@media (max-width: 1024px) {
	.gnt-pagehero__inner { padding-block: var(--space-16) var(--space-12); }
	.gnt-pagehero__title { max-width: none; }
}

@media (max-width: 767px) {
	.gnt-pagehero__inner { padding-block: var(--space-12) var(--space-10); }

	.gnt-pagehero .elementor-element.gnt-pagehero__title,
	.gnt-pagehero .elementor-element.gnt-pagehero__lead { max-width: none; }
}

@media (max-width: 479px) {
	.gnt-pagehero__actions {
		flex-direction: column;
		align-items: stretch;
	}
}
