/* ============================================================
   Gary O'Toole Entity Page — scoped to .got-page
   Person entity page connecting Gary O'Toole to Ratiom Agency.
   ============================================================ */

/* ── Container ── */
.got-page .got-container {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 48px;
	padding-right: 48px;
}

/* ── Sections ── */
.got-page .got-section {
	padding-top: 72px;
	padding-bottom: 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.got-page .got-section--alt {
	background: #0a0a0a;
}

/* ── Hero ── */
.got-page .got-hero {
	padding-top: 80px;
	padding-bottom: 72px;
	background: #000;
}

.got-page .got-hero-inner {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: center;
}

/* ── Founder image ── */
.got-page .got-hero-image {
	flex-shrink: 0;
}

.got-page .got-hero-image img {
	display: block;
	width: 260px;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Eyebrow ── */
.got-page .got-eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	background: rgba(196, 238, 24, 0.08);
	border: 1px solid rgba(196, 238, 24, 0.18);
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	color: #c4ee18;
	font-family: 'Inter', sans-serif;
	line-height: 1;
	margin-bottom: 20px;
}

/* ── Headings ── */
.got-page .got-h1 {
	font-family: 'Darker Grotesque', sans-serif;
	font-size: clamp(2.4rem, 5vw, 3.5rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1;
	color: #fff;
	margin: 0 0 24px;
}

.got-page .got-h2 {
	font-family: 'Darker Grotesque', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 24px;
}

.got-page .got-h3 {
	font-family: 'Darker Grotesque', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 0 8px;
}

/* ── Entity definition paragraph ── */
.got-page .got-definition {
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 28px;
}

/* ── Body copy ── */
.got-page .got-body {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 16px;
}

.got-page .got-body:last-child {
	margin-bottom: 0;
}

/* ── Quick nav ── */
.got-page .got-quicknav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	font-size: 0.875rem;
}

.got-page .got-quicknav a {
	color: #c4ee18;
	text-decoration: none;
	border-bottom: 1px solid rgba(196, 238, 24, 0.3);
	padding-bottom: 1px;
	transition: border-color 0.15s;
}

.got-page .got-quicknav a:hover {
	border-color: #c4ee18;
}

.got-page .got-quicknav span {
	color: rgba(255, 255, 255, 0.25);
}

/* ── Arrow links ── */
.got-page .got-link-arrow {
	color: #c4ee18;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.got-page .got-link-arrow:hover {
	text-decoration: underline;
}

.got-page .got-services-link {
	margin-top: 32px;
	margin-bottom: 0;
}

/* ── Experience grid ── */
.got-page .got-exp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
	margin-bottom: 8px;
}

.got-page .got-exp-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.02);
}

.got-page .got-exp-item p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ── Summary fact table ── */
.got-page .got-summary-block {
	margin-top: 8px;
}

.got-page .got-facts {
	margin: 0;
	display: grid;
	gap: 0;
}

.got-page .got-fact-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.got-page .got-fact-row:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.got-page .got-facts dt {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.35);
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding-top: 1px;
}

.got-page .got-facts dd {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.got-page .got-facts dd a {
	color: #c4ee18;
	text-decoration: none;
}

.got-page .got-facts dd a:hover {
	text-decoration: underline;
}

/* ── FAQ ── */
.got-page .got-faq-list {
	margin-top: 8px;
	display: grid;
	gap: 0;
}

.got-page .got-faq-item {
	padding: 28px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.got-page .got-faq-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.got-page .got-faq-q {
	font-family: 'Darker Grotesque', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.got-page .got-faq-a {
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 680px;
}

/* ── CTA strip ── */
.got-page .got-cta {
	padding: 64px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: #000;
}

.got-page .got-cta .got-container {
	display: flex;
	align-items: center;
	gap: 32px;
}

.got-page .got-cta-text {
	font-family: 'Darker Grotesque', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: #fff;
	margin: 0;
}

/* ── Responsive — tablet ── */
@media (max-width: 768px) {
	.got-page .got-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.got-page .got-hero {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.got-page .got-hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

	.got-page .got-hero-image {
		display: flex;
		justify-content: center;
	}

	.got-page .got-hero-image img {
		width: 200px;
		height: 200px;
	}

	.got-page .got-quicknav {
		justify-content: center;
	}

	.got-page .got-section {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.got-page .got-exp-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.got-page .got-fact-row {
		grid-template-columns: 140px 1fr;
	}

	.got-page .got-cta .got-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

/* ── Responsive — mobile ── */
@media (max-width: 480px) {
	.got-page .got-fact-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.got-page .got-facts dt {
		font-size: 0.72rem;
	}

	.got-page .got-quicknav {
		gap: 8px 8px;
	}

	.got-page .got-exp-grid {
		grid-template-columns: 1fr;
	}
}
