/* =========================================================
   Greenpass Logistics — Corporate Landing
   ========================================================= */

:root {
	--green-dark: #00552f;
	--green: #087442;
	--green-light: #38a844;
	--green-pale: #eef7f1;
	--green-soft: #f7fbf8;
	--text-dark: #17211b;
	--text-gray: #626b65;
	--border: #e4ebe6;
	--white: #ffffff;
	--shadow: 0 8px 24px rgba(0, 85, 47, 0.06);
	--shadow-hover: 0 12px 28px rgba(0, 85, 47, 0.1);
	--radius: 14px;
	--radius-btn: 9px;
	--container: 1200px;
	--header-h: 84px;
	--font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

/* ----- Base ----- */
.gp-site,
.gp-site body,
body.gp-site {
	font-family: var(--font);
	color: var(--text-dark);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.gp-site a {
	color: inherit;
	text-decoration: none;
}

.gp-outer-wrap,
.gp-wrap,
.gp-main {
	background: var(--white);
}

.gp-landing,
.gp-header,
.gp-footer,
.gp-cta {
	font-family: var(--font);
}

.gp-container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.gp-br-desktop {
	display: none;
}

@media (min-width: 768px) {
	.gp-br-desktop {
		display: inline;
	}
}

/* Hide leftover Total page chrome on front */
body.home.gp-site #sidebar,
body.home.gp-site .page-header,
body.home.gp-site .wpex-page-header,
body.front-page #sidebar {
	display: none !important;
}

body.home .gp-main,
body.front-page .gp-main {
	padding: 0 !important;
	max-width: none !important;
}

/* ----- Buttons ----- */
.gp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: var(--radius-btn);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -0.01em;
	border: 1.5px solid transparent;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
}

.gp-btn--sm {
	min-height: 42px;
	padding: 0 16px;
	font-size: 14px;
}

.gp-btn--primary,
.gp-btn--solid {
	background: var(--green-dark);
	color: var(--white) !important;
	border-color: var(--green-dark);
}

.gp-btn--primary:hover,
.gp-btn--solid:hover {
	background: var(--green);
	border-color: var(--green);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.gp-btn--ghost,
.gp-btn--outline {
	background: var(--white);
	color: var(--green-dark) !important;
	border-color: var(--green);
}

.gp-btn--ghost:hover,
.gp-btn--outline:hover {
	background: var(--green-pale);
	transform: translateY(-2px);
}

.gp-btn--light {
	background: var(--white);
	color: var(--green-dark) !important;
	border-color: var(--white);
}

.gp-btn--light:hover {
	background: var(--green-pale);
	transform: translateY(-2px);
}

.gp-btn--light-outline {
	background: transparent;
	color: var(--white) !important;
	border-color: rgba(255, 255, 255, 0.55);
}

.gp-btn--light-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

.gp-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--green) !important;
	font-weight: 700;
	font-size: 14px;
}

.gp-link:hover {
	color: var(--green-dark) !important;
}

/* ----- Header ----- */
.gp-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--border);
	backdrop-filter: saturate(1.2) blur(8px);
	transition: box-shadow .2s ease;
}

.gp-header.is-scrolled {
	box-shadow: 0 4px 18px rgba(23, 33, 27, 0.06);
}

.gp-header__inner {
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.gp-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	line-height: 0;
	position: relative;
	z-index: 2;
}

.gp-logo img {
	height: 55px;
	width: auto;
	max-width: 252px;
	object-fit: contain;
	/* Original logo has black plate — multiply clears it on white header */
	mix-blend-mode: multiply;
}

.gp-logo__text {
	font-size: 20px;
	font-weight: 800;
	color: var(--green-dark);
}

.gp-nav {
	display: none;
}

.gp-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-nav__list a {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-dark);
	padding: 8px 0;
	position: relative;
}

.gp-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.gp-nav__list a:hover::after {
	transform: scaleX(1);
}

.gp-header__cta {
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

.gp-header__cta .gp-btn {
	min-height: 42px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	border-radius: var(--radius-btn);
	white-space: nowrap;
}

.gp-burger {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	flex: 0 0 auto;
	z-index: 2;
}

.gp-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--green-dark);
	transition: transform .2s ease, opacity .2s ease;
}

.gp-header.is-open .gp-burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.gp-header.is-open .gp-burger span:nth-child(2) {
	opacity: 0;
}

.gp-header.is-open .gp-burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.gp-mobile-panel {
	border-top: 1px solid var(--border);
	background: var(--white);
	padding: 18px 20px 24px;
}

.gp-mobile-panel[hidden] {
	display: none !important;
}

.gp-mobile-panel__nav {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.gp-mobile-panel__nav a {
	display: block;
	padding: 14px 4px;
	border-bottom: 1px solid var(--border);
	font-weight: 650;
	font-size: 19px;
}

.gp-mobile-panel__cta {
	display: grid;
	gap: 10px;
}

@media (min-width: 1024px) {
	.gp-header__inner {
		gap: 28px;
	}

	.gp-nav {
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}

	.gp-header__cta {
		display: flex;
	}

	.gp-burger,
	.gp-mobile-panel {
		display: none !important;
	}
}

/* ----- Hero ----- */
.gp-hero {
	position: relative;
	isolation: isolate;
	min-height: 650px;
	display: flex;
	align-items: center;
	background-color: #f4f8f5;
	background-image: var(--gp-hero-image);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 72% center;
	overflow: hidden;
}

.gp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.98) 0%,
		rgba(255, 255, 255, 0.94) 34%,
		rgba(255, 255, 255, 0.55) 58%,
		rgba(255, 255, 255, 0.12) 78%,
		rgba(255, 255, 255, 0) 100%
	);
}

.gp-hero__content {
	position: relative;
	z-index: 1;
	padding: 72px 0 64px;
	max-width: 620px;
	margin-left: max(20px, calc((100% - var(--container)) / 2));
	margin-right: auto;
	width: min(100% - 40px, 620px);
}

.gp-eyebrow {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--green);
}

.gp-hero__title {
	margin: 0 0 18px;
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text-dark);
}

.gp-hero__lead {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-gray);
	max-width: 34em;
}

.gp-hero__point {
	display: inline-block;
	margin-top: 6px;
	padding: 4px 10px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--green-dark);
	background: linear-gradient(180deg, rgba(56, 168, 68, 0.16) 0%, rgba(56, 168, 68, 0.08) 100%);
	border-left: 3px solid var(--green-light);
	border-radius: 4px;
}

.gp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.gp-hero__trust {
	margin: 0;
	font-size: 13px;
	color: var(--text-gray);
	font-weight: 500;
}

.gp-hero__mobile-cta {
	display: none;
}

@media (min-width: 900px) {
	.gp-hero {
		min-height: 660px;
		background-position: center right;
	}

	.gp-hero__overlay {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 255, 255, 0.93) 36%,
			rgba(255, 255, 255, 0.25) 62%,
			rgba(255, 255, 255, 0) 100%
		);
	}

	.gp-hero__content {
		padding: 90px 0 80px;
	}
}

@media (max-width: 767px) {
	.gp-hero {
		min-height: 600px;
		align-items: center;
		justify-content: center;
		background-position: 68% center;
		background-size: cover;
	}

	.gp-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.55) 0%,
				rgba(0, 0, 0, 0.48) 45%,
				rgba(0, 0, 0, 0.58) 100%
			);
	}

	.gp-hero__content {
		padding: 40px 0 48px;
		margin-left: auto;
		margin-right: auto;
		width: min(100% - 40px, 520px);
		text-align: center;
	}

	.gp-hero__mobile-cta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin: 0 0 22px;
	}

	.gp-hero__mobile-cta .gp-btn {
		min-height: 40px;
		padding: 0 10px;
		font-size: 13px;
		font-weight: 700;
		border-radius: 8px;
	}

	.gp-hero__mobile-cta .gp-btn--solid {
		background: var(--green-light);
		border-color: var(--green-light);
		color: #fff !important;
	}

	.gp-hero__mobile-cta .gp-btn--ghost {
		background: rgba(255, 255, 255, 0.1);
		color: #fff !important;
		border-color: rgba(255, 255, 255, 0.55);
	}

	.gp-eyebrow {
		color: #8fd89a;
		letter-spacing: 0.16em;
		margin-bottom: 12px;
	}

	.gp-hero__title {
		font-size: clamp(28px, 7.2vw, 36px);
		line-height: 1.28;
		color: #ffffff;
		margin-bottom: 14px;
	}

	.gp-hero__lead {
		margin: 0 auto 22px;
		font-size: 14.5px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.88);
		max-width: 22em;
	}

	.gp-hero__point {
		display: inline-block;
		margin-top: 10px;
		padding: 6px 12px;
		font-size: 15px;
		color: #ffffff;
		background: rgba(56, 168, 68, 0.28);
		border-left: 0;
		border: 1px solid rgba(143, 216, 154, 0.55);
		border-radius: 8px;
	}

	.gp-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 280px;
		margin: 0 auto 16px;
	}

	.gp-hero__actions .gp-btn {
		width: 100%;
		min-height: 48px;
		padding: 0 16px;
		font-size: 15px;
	}

	.gp-hero__actions .gp-btn--ghost {
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff !important;
		border-color: rgba(255, 255, 255, 0.55);
	}

	.gp-hero__actions .gp-btn--ghost:hover {
		background: rgba(255, 255, 255, 0.16);
	}

	.gp-hero__actions .gp-btn--primary {
		background: var(--green-light);
		border-color: var(--green-light);
	}

	.gp-hero__trust {
		font-size: 12px;
		line-height: 1.55;
		color: rgba(255, 255, 255, 0.72);
	}

	/* Quick bar shouldn't overlap messy on mobile */
	.gp-quick {
		margin-top: -20px;
	}
}

@media (max-width: 420px) {
	.gp-hero {
		min-height: 580px;
	}

	.gp-hero__content {
		padding: 36px 0 44px;
	}

	.gp-hero__mobile-cta {
		grid-template-columns: 1fr;
		max-width: 240px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ----- Quick bar ----- */
.gp-quick {
	position: relative;
	z-index: 2;
	margin-top: -36px;
	padding-bottom: 20px;
}

.gp-quick__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.gp-quick__item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 20px 20px;
	box-shadow: var(--shadow);
	position: relative;
}

.gp-quick__num {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.gp-quick__icon {
	display: inline-flex;
	width: 36px;
	height: 36px;
	color: var(--green-dark);
	margin-bottom: 10px;
}

.gp-quick__icon svg {
	width: 100%;
	height: 100%;
}

.gp-quick__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gp-quick__item p {
	margin: 0;
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
}

@media (min-width: 768px) {
	.gp-quick__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.gp-quick {
		margin-top: -48px;
	}

	.gp-quick__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}
}

/* ----- Sections ----- */
.gp-section {
	padding: 72px 0;
}

.gp-section--pale {
	background: var(--green-pale);
}

.gp-section--soft {
	background: var(--green-soft);
}

.gp-section__head {
	max-width: 720px;
	margin-bottom: 40px;
}

.gp-section__title {
	margin: 0 0 14px;
	font-size: clamp(26px, 3.2vw, 36px);
	line-height: 1.3;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--text-dark);
}

.gp-section__desc {
	margin: 0;
	font-size: 16px;
	color: var(--text-gray);
	line-height: 1.75;
}

.gp-section__cta {
	margin-top: 36px;
	text-align: center;
}

@media (min-width: 900px) {
	.gp-section {
		padding: 110px 0;
	}
}

/* ----- Service cards ----- */
.gp-service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.gp-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	box-shadow: 0 2px 10px rgba(0, 85, 47, 0.03);
	transition: transform .2s ease, box-shadow .2s ease;
}

.gp-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.gp-card__eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--green);
}

.gp-card__title {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gp-card__text {
	margin: 0 0 16px;
	color: var(--text-gray);
	font-size: 15px;
}

.gp-card__meta {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.gp-card__meta li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--text-dark);
}

.gp-card__meta li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--green-light);
}

@media (min-width: 900px) {
	.gp-service-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

/* ----- Process ----- */
.gp-process {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	counter-reset: none;
}

.gp-process li {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px dashed rgba(0, 85, 47, 0.18);
	position: relative;
}

.gp-process li:last-child {
	border-bottom: 0;
}

.gp-process span {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: var(--green-dark);
	font-size: 14px;
}

.gp-process strong {
	font-size: 17px;
	font-weight: 750;
	letter-spacing: -0.02em;
}

@media (min-width: 1000px) {
	.gp-process {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 12px;
	}

	.gp-process li {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 0;
		border: 0;
		position: relative;
	}

	.gp-process li:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 25px;
		left: 60px;
		right: -8px;
		height: 1px;
		background: linear-gradient(90deg, rgba(0, 85, 47, 0.25), rgba(0, 85, 47, 0.05));
	}

	.gp-process strong {
		font-size: 15px;
		line-height: 1.45;
	}
}

/* ----- Why ----- */
.gp-why {
	display: grid;
	gap: 36px;
}

.gp-why__lead {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.65;
	color: var(--text-dark);
}

.gp-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.gp-why__list li {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 22px;
	box-shadow: 0 2px 10px rgba(0, 85, 47, 0.03);
}

.gp-why__list strong {
	display: block;
	font-size: 16px;
	font-weight: 750;
	letter-spacing: -0.01em;
	padding-left: 28px;
	position: relative;
}

.gp-why__list strong::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 14px;
	height: 14px;
	border: 2px solid var(--green);
	border-radius: 4px;
	background:
		linear-gradient(var(--green), var(--green)) center/8px 2px no-repeat,
		linear-gradient(var(--green), var(--green)) center/2px 8px no-repeat;
}

@media (min-width: 960px) {
	.gp-why {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 56px;
		align-items: center;
	}

	.gp-why__list {
		grid-template-columns: 1fr 1fr;
	}
}

/* ----- Blog cards ----- */
.gp-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.gp-post-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
}

.gp-post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.gp-post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--green-pale);
}

.gp-post-card__media img,
.gp-post-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gp-post-card__placeholder {
	background: linear-gradient(135deg, #d9ebe0, #eef7f1);
}

.gp-post-card__body {
	padding: 18px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.gp-post-card__cat {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--green);
}

.gp-post-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gp-post-card__title a:hover {
	color: var(--green);
}

.gp-post-card__excerpt {
	margin: 0;
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gp-post-card__meta {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 13px;
	color: var(--text-gray);
}

@media (min-width: 900px) {
	.gp-blog-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

/* ----- Contact CTA ----- */
.gp-cta {
	background: linear-gradient(135deg, #003d22 0%, var(--green-dark) 48%, #0a6a3c 100%);
	color: var(--white);
	padding: 80px 0;
}

.gp-cta__inner {
	max-width: 760px;
	text-align: center;
}

.gp-cta__title {
	margin: 0 0 16px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--white);
}

.gp-cta__text {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
}

.gp-cta__actions {
	display: grid;
	gap: 10px;
	justify-content: center;
}

.gp-cta__note {
	margin: 18px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.gp-cta__note strong {
	color: var(--white);
	font-weight: 700;
}

@media (min-width: 700px) {
	.gp-cta {
		padding: 100px 0;
	}

	.gp-cta__actions {
		display: flex;
		flex-wrap: wrap;
	}
}

/* ----- Footer ----- */
.gp-footer {
	background: #003826;
	color: rgba(255, 255, 255, 0.85);
	padding-top: 56px;
}

.gp-footer__grid {
	display: grid;
	gap: 28px;
	padding-bottom: 36px;
}

.gp-footer__logo img {
	height: 42px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
	/* Black plate → white mark on deep green footer */
	filter: brightness(0) invert(1);
	opacity: 0.95;
	mix-blend-mode: normal;
}

.gp-footer__brand p {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.gp-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}

.gp-footer__nav a {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

.gp-footer__nav a:hover {
	color: #fff;
}

.gp-footer__contact p {
	margin: 0 0 8px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

.gp-footer__contact span {
	display: inline-block;
	min-width: 42px;
	margin-right: 6px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}

.gp-footer__contact .gp-footer__id {
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.gp-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px 0 22px;
}

.gp-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
	.gp-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		align-items: start;
		gap: 40px;
	}
}

/* ----- Inner pages (blog) tweaks ----- */
body:not(.home) .gp-main {
	padding-top: 24px;
	padding-bottom: 48px;
}

body.blog .gp-main #content-wrap,
body.archive .gp-main #content-wrap,
body.single .gp-main #content-wrap,
body.search .gp-main #content-wrap,
body.blog .gp-main #content,
body.archive .gp-main #content,
body.single .gp-main #content,
body.search .gp-main #content {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

/* Soften oversized blog entry media on posts page */
body.blog .blog-entry-media img,
body.archive .blog-entry-media img {
	max-height: 280px;
	width: 100%;
	object-fit: cover;
}

body.blog #sidebar,
body.single #sidebar,
body.archive #sidebar,
body.search #sidebar {
	font-family: var(--font);
}

/* Hide leftover blog meta / comments UI */
body.blog .blog-entry-meta,
body.archive .blog-entry-meta,
body.single .meta,
body.single .blog-single-meta,
body.single #comments,
body.single .comments-area,
body.single .comment-respond,
.meta-date,
.meta-category,
.meta-comments,
.meta-author {
	display: none !important;
}

/* ----- Reveal animation (subtle) ----- */
.gp-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .55s ease, transform .55s ease;
}

.gp-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.gp-reveal,
	.gp-btn,
	.gp-card,
	.gp-post-card {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
