/* ═══════════════════════════════════════════════════════════
   ABOUT — BRAND & LOGO GUIDELINE  (lg-*)
   2026 design: bento layout, soft-shadow pillow cards,
   gradient-mesh accent, large editorial typography
   ═══════════════════════════════════════════════════════════ */

.lg-section {
	padding: 3.5rem 0;
}

.lg-intro {
	padding: 3rem 0 1.5rem;
}

.lg-intro-text {
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--gray-700);
	margin: 0;
}

.lg-bento-section {
	padding: 1.5rem 0 5rem;
	background: #f9faf9;
	position: relative;
	overflow: hidden;
}

.lg-bento-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(47,125,77,.10) 0%, transparent 42%),
		radial-gradient(circle at 88% 82%, rgba(237,221,83,.12) 0%, transparent 42%);
	pointer-events: none;
}

.lg-bento-section > .container {
	position: relative;
}

/* ── Bento grid ─────────────────────────────────────────── */
.lg-bento {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 1.75rem;
	align-items: stretch;
}

/* ── Main (left) column ─────────────────────────────────── */
.lg-bento-main {
	background: #ffffff;
	border-radius: 28px;
	border: 1.5px solid rgba(0,0,0,.05);
	box-shadow:
		0 1px 0 rgba(255,255,255,.8) inset,
		0 22px 48px -20px rgba(23,68,41,.15),
		0 8px 20px -8px rgba(15,23,42,.08);
	padding: 2.5rem 2.25rem 2.75rem;
}

.lg-heading-wrap {
	margin-bottom: 2rem;
}

.lg-eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--green-600);
	padding: .4rem .75rem;
	border-radius: 999px;
	background: var(--green-100);
	margin-bottom: 1rem;
}

.lg-heading {
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.025em;
	color: var(--green-900);
	margin: 0 0 .75rem;
}

.lg-heading-accent {
	background: linear-gradient(120deg, var(--green-600) 0%, var(--green-500) 60%, #5fa873 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.lg-heading-sub {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--gray-700);
	margin: 0;
}

/* ── Logo grid (2x2) ────────────────────────────────────── */
.lg-logo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

/* ── Individual logo card ───────────────────────────────── */
.lg-logo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fafaf7;
	border: 1.5px solid rgba(0,0,0,.05);
	border-radius: 20px;
	padding: 1.25rem 1.25rem 1.35rem;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .25s ease;
	overflow: hidden;
}

.lg-logo-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 58px;
	height: 8px;
	background: var(--accent);
	border-radius: 0 0 0 8px;
	opacity: .85;
	transition: width .35s ease;
}

.lg-logo-card:hover {
	transform: translateY(-6px);
	border-color: rgba(47,125,77,.25);
	box-shadow:
		0 28px 48px -22px rgba(23,68,41,.35),
		0 14px 28px -14px rgba(15,23,42,.12);
}

.lg-logo-card:hover::before {
	width: 96px;
}

.lg-logo-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at 50% 40%, #ffffff 0%, #f3f5f2 100%);
	border-radius: 14px;
	padding: 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(0,0,0,.04);
}

.lg-logo-preview img {
	max-width: 88%;
	max-height: 100%;
	object-fit: contain;
	display: block;
	transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.lg-logo-card:hover .lg-logo-preview img {
	transform: scale(1.04);
}

.lg-logo-meta {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	margin-bottom: 1rem;
	min-height: 3rem;
}

.lg-logo-name {
	font-size: .95rem;
	font-weight: 700;
	color: var(--gray-900);
	line-height: 1.35;
	margin: 0;
	letter-spacing: -.005em;
}

.lg-logo-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--green-600);
	padding: .2rem .5rem;
	background: rgba(47,125,77,.08);
	border-radius: 6px;
}

/* ── Download button (neo-brutalist accent) ─────────────── */
.lg-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	padding: .8rem 1rem;
	font-size: .85rem;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
	background: var(--green-700);
	border: 2px solid var(--green-900);
	border-radius: 12px;
	box-shadow: 3px 3px 0 0 var(--green-900);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	margin-top: auto;
}

.lg-download-btn svg {
	flex-shrink: 0;
	stroke-width: 2.25;
}

.lg-download-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 5px 5px 0 0 var(--green-900);
	background: var(--green-600);
	color: #ffffff;
}

.lg-download-btn:active {
	transform: translate(1px, 1px);
	box-shadow: 1px 1px 0 0 var(--green-900);
}

/* ── Aside (right) column ───────────────────────────────── */
.lg-bento-aside {
	position: relative;
	background: linear-gradient(165deg, #e8efe6 0%, #dfe9dc 55%, #d4e3d2 100%);
	border-radius: 28px;
	box-shadow:
		0 1px 0 rgba(255,255,255,.8) inset,
		0 22px 48px -20px rgba(23,68,41,.18);
	overflow: hidden;
}

.lg-aside-mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 0%, rgba(237,221,83,.35) 0%, transparent 45%),
		radial-gradient(circle at 100% 100%, rgba(47,125,77,.30) 0%, transparent 55%),
		radial-gradient(circle at 0% 100%, rgba(255,255,255,.55) 0%, transparent 50%);
	pointer-events: none;
	filter: blur(10px);
}

.lg-aside-inner {
	position: relative;
	padding: 2.5rem 2.25rem 2.75rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.lg-aside-eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--green-700);
	padding: .4rem .75rem;
	border-radius: 999px;
	background: rgba(255,255,255,.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	margin-bottom: 1rem;
	align-self: flex-start;
}

.lg-aside-title {
	font-size: clamp(1.75rem, 2.6vw, 2.3rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.022em;
	color: var(--green-900);
	margin: 0 0 1.5rem;
}

.lg-aside-body {
	font-size: .95rem;
	line-height: 1.75;
	color: #2c3e33;
}

.lg-aside-body p {
	margin: 0 0 .85rem;
}

.lg-aside-callout {
	font-weight: 600;
	color: var(--green-900) !important;
	padding-top: .6rem;
	border-top: 1px dashed rgba(23,68,41,.2);
	margin-top: .75rem !important;
}

.lg-aside-contact {
	margin-top: auto;
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.lg-contact-label {
	font-size: .8rem;
	color: var(--gray-700);
	font-weight: 500;
}

.lg-contact-email {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--green-900);
	text-decoration: none;
	padding: .85rem 1.1rem;
	background: rgba(255,255,255,.75);
	border: 1.5px solid rgba(23,68,41,.12);
	border-radius: 14px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform .25s ease, background .25s ease, border-color .25s ease;
	align-self: flex-start;
	max-width: 100%;
	word-break: break-all;
}

.lg-contact-email:hover {
	transform: translateY(-2px);
	background: #ffffff;
	border-color: var(--green-600);
	color: var(--green-700);
}

.lg-contact-email svg {
	flex-shrink: 0;
	color: var(--green-600);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
	.lg-bento {
		grid-template-columns: 1fr;
	}
	.lg-bento-aside {
		order: -1;
	}
}

@media (max-width: 720px) {
	.lg-section {
		padding: 2.5rem 0;
	}
	.lg-bento-section {
		padding: 1rem 0 3rem;
	}
	.lg-bento-main,
	.lg-aside-inner {
		padding: 1.75rem 1.35rem 2rem;
	}
	.lg-bento-main {
		border-radius: 22px;
	}
	.lg-bento-aside {
		border-radius: 22px;
	}
	.lg-logo-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.lg-logo-preview {
		aspect-ratio: 16 / 10;
	}
	.lg-heading {
		font-size: 1.9rem;
	}
	.lg-aside-title {
		font-size: 1.55rem;
	}
	.lg-contact-email {
		font-size: .9rem;
		padding: .75rem .9rem;
	}
}
