/**
 * Auditajus — Inner About Pages CSS
 *
 * Styles for founder bio, methodology audience, methodology contrast,
 * and hero brand accent. Follows the homepage design system.
 *
 * @package Auditajus
 */


/* ============================================================
   1. FOUNDER SECTION — Bio + Manifesto 2-column layout
   ============================================================ */

.founder-section {
	padding: clamp(5rem, 8vw, 8rem) 0;
	background: var(--bone, #F6F2EA);
}

.founder-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* --- Bio column (left) --- */

.founder-section__bio h2 {
	font-family: var(--serif, 'Fraunces', 'Times New Roman', Georgia, serif);
	font-weight: 300;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink, #0B0A08);
	margin-bottom: 1.5rem;
}

.founder-section__bio .lead {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.7;
	color: var(--ink-soft, #2A2622);
	margin-bottom: 1.25rem;
}

.founder-section__bio > p {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--ink-soft, #2A2622);
	margin-bottom: 1rem;
}

/* Credentials tags */

.founder-section__credentials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.founder-cred {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brass, #D4A84B);
	border: 1px solid var(--brass, #D4A84B);
	border-radius: 3px;
	padding: 0.2em 0.6em;
	line-height: 1.6;
	white-space: nowrap;
}

/* LinkedIn link */

.founder-section__linkedin {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--brass, #D4A84B);
	text-decoration: none;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.founder-section__linkedin:hover,
.founder-section__linkedin:focus-visible {
	text-decoration: underline;
	text-decoration-color: var(--brass, #D4A84B);
	text-underline-offset: 0.2em;
}

/* --- Manifesto column (right) --- */

.founder-section__manifesto {
	position: sticky;
	top: 6rem;
}

.founder-manifesto {
	border-left: 3px solid var(--oxblood, #6B0F1A);
	padding-left: 1.5rem;
	margin: 0;
}

.founder-manifesto p {
	font-family: var(--serif, 'Fraunces', 'Times New Roman', Georgia, serif);
	font-style: italic;
	font-weight: 300;
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--ink-soft, #2A2622);
	margin-bottom: 0.75rem;
}

.founder-manifesto p:last-of-type {
	margin-bottom: 0;
}

.founder-manifesto footer {
	color: var(--brass, #D4A84B);
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.85rem;
	font-weight: 500;
	font-style: normal;
	margin-top: 1rem;
}


/* ============================================================
   2. METOD-AUDIENCE — "Para quem é" dark section
   ============================================================ */

.metod-audience {
	background: var(--ink, #0B0A08);
	color: #fff;
	padding: 6rem 0;
}

.metod-audience .eyebrow {
	color: var(--brass, #D4A84B);
}

.metod-audience .eyebrow::before {
	background: #fff;
}

.metod-audience h2 {
	color: #fff;
	font-family: var(--serif, 'Fraunces', 'Times New Roman', Georgia, serif);
	font-weight: 300;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 3rem;
}

.metod-audience__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.metod-audience__card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	padding: 2rem;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.metod-audience__card:hover {
	border-color: var(--brass, #D4A84B);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(201, 162, 103, 0.12);
}

.metod-audience__num {
	font-family: var(--serif, 'Fraunces', 'Times New Roman', Georgia, serif);
	font-weight: 300;
	font-size: 2rem;
	line-height: 1;
	color: var(--brass, #D4A84B);
	margin-bottom: 0.75rem;
	letter-spacing: -0.03em;
}

.metod-audience__card h3 {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.metod-audience__card p {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}


/* ============================================================
   3. METOD-CONTRAST — "O que não é" cards on bone-warm
   ============================================================ */

.metod-contrast {
	background: var(--bone-warm, #EFE9DC);
	padding: clamp(5rem, 8vw, 8rem) 0;
}

.metod-contrast h2 {
	font-family: var(--serif, 'Fraunces', 'Times New Roman', Georgia, serif);
	font-weight: 300;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink, #0B0A08);
	margin-bottom: 3rem;
}

.metod-contrast h2 em {
	font-style: italic;
	color: var(--brass, #D4A84B);
}

.metod-contrast__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.metod-contrast__card {
	background: #fff;
	border: 1px solid var(--rule, #D8D0BF);
	border-radius: 3px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.metod-contrast__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--brass, #D4A84B);
}

.metod-contrast__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(11, 10, 8, 0.1);
}

/* "Yes" variant — Auditajus way */

.metod-contrast__card--yes {
	border-color: var(--brass, #D4A84B);
	box-shadow: 0 4px 16px rgba(201, 162, 103, 0.12);
}

.metod-contrast__card--yes:hover {
	box-shadow: 0 8px 28px rgba(201, 162, 103, 0.18);
}

/* Icon */

.metod-contrast__icon {
	display: block;
	font-size: 1.5rem;
	color: var(--ink-mute, #6B645B);
	margin-bottom: 0.75rem;
	line-height: 1;
}

.metod-contrast__icon--yes {
	color: var(--moss, #4A6B3F);
}

/* Card label & text */

.metod-contrast__card-label {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 1rem;
	font-weight: 500;
	color: var(--ink, #0B0A08);
	margin-bottom: 0.4rem;
	line-height: 1.3;
}

.metod-contrast__card-text {
	font-family: var(--sans, 'Inter', sans-serif);
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--ink-mute, #6B645B);
	margin: 0;
}


/* ============================================================
   4. HERO BRAND ACCENT — em inside hero h1
   ============================================================ */

.hero-brand {
	color: var(--brass, #D4A84B);
	font-weight: 200;
	font-style: normal;
}


/* ============================================================
   5. RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {

	/* Founder: keep 2-col but reduce gap */
	.founder-section__grid {
		gap: 2.5rem;
	}

	.founder-section__manifesto {
		position: static;
	}

	/* Audience: 2 columns */
	.metod-audience__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Contrast: 2 columns */
	.metod-contrast__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ============================================================
   6. RESPONSIVE — Mobile (max-width: 680px)
   ============================================================ */

@media (max-width: 680px) {

	/* Founder: single column */
	.founder-section {
		padding: clamp(3rem, 6vw, 5rem) 0;
	}

	.founder-section__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.founder-section__bio h2 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.founder-manifesto {
		padding-left: 1.25rem;
	}

	.founder-manifesto p {
		font-size: 1.05rem;
	}

	/* Audience: single column, reduce padding */
	.metod-audience {
		padding: 4rem 0;
	}

	.metod-audience__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.metod-audience__card {
		padding: 1.5rem;
	}

	.metod-audience h2 {
		margin-bottom: 2rem;
	}

	/* Contrast: single column, reduce padding */
	.metod-contrast {
		padding: clamp(3rem, 6vw, 5rem) 0;
	}

	.metod-contrast__cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.metod-contrast h2 {
		margin-bottom: 2rem;
	}
}
