/*
 * Geboorteposter Landing Page Styles
 * Depends on: main-v2.css (tokens, base, nav, footer)
 * Light hero page. Nav starts solid (light-hero body class).
 * Mobile-first. 390px base.
 */

/* ============================================================
   HERO (LIGHT / PAPER)
   ============================================================ */
.pg-gb-hero {
	position: relative;
	background: linear-gradient(180deg, #F3ECDD, #FBF8F1 70%);
	overflow: hidden;
	padding: clamp(120px, 15vw, 150px) 0 clamp(64px, 8vw, 96px);
	color: var(--pg-ink);
}

/* Immersive warm blush + topographic contour rings */
.pg-gb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(125% 120% at 18% -6%, rgba(193, 142, 120, 0.28), rgba(193, 142, 120, 0.08) 42%, transparent 70%);
}
.pg-gb-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		repeating-radial-gradient(circle at 16% 22%, transparent 0 18px, rgba(176, 135, 91, 0.16) 18px 19.5px);
	-webkit-mask-image: radial-gradient(140% 130% at 14% 4%, #000 14%, transparent 72%);
	mask-image: radial-gradient(140% 130% at 14% 4%, #000 14%, transparent 72%);
}

.pg-gb-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	pointer-events: none;
}

.pg-gb-hero__wrap {
	position: relative;
	z-index: 2;
}

.pg-gb-breadcrumb {
	font-size: 13px;
	color: var(--pg-warm-grey-text);
	margin-bottom: 22px;
}

.pg-gb-breadcrumb a {
	color: #5A554C;
	transition: color .2s ease;
}

.pg-gb-breadcrumb a:hover {
	color: var(--pg-brass);
}

.pg-gb-breadcrumb span[aria-hidden] {
	margin: 0 6px;
	opacity: .5;
}

.pg-gb-breadcrumb [aria-current] {
	color: var(--pg-brass-text);
}

.pg-gb-hero__grid {
	display: flex;
	flex-direction: column;
	gap: 52px;
	align-items: center;
}

.pg-gb-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 15px;
	border: 1px solid rgba(182,137,63,.4);
	border-radius: var(--radius-pill);
	margin-bottom: 24px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #A07A33;
	font-weight: 700;
}

.pg-gb-hero__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pg-brass);
	flex-shrink: 0;
}

.pg-gb-hero__h1 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.03;
	letter-spacing: -.01em;
	margin: 0 0 20px;
	color: var(--pg-ink);
	text-wrap: balance;
}

.pg-gb-hero__sub {
	color: #5A554C;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
	margin: 0 0 32px;
	max-width: 30em;
}

.pg-gb-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.pg-gb-hero__secondary {
	color: var(--pg-ink);
	font-size: 15.5px;
	border-bottom: 1px solid var(--pg-ink);
	padding-bottom: 3px;
	transition: border-color .25s ease, color .25s ease;
}

.pg-gb-hero__secondary:hover {
	border-color: var(--pg-brass);
	color: var(--pg-brass);
}

/* Poster visual */
.pg-gb-hero__visual {
	display: flex;
	justify-content: center;
	width: 100%;
}

.pg-gb-hero__poster-col {
	max-width: 360px;
	width: 100%;
}

.pg-gb-hero__poster-frame {
	background: var(--pg-bone);
	padding: 14px;
	border-radius: var(--radius-flat);
	box-shadow: 0 30px 70px rgba(27,26,23,.16);
	border: 1px solid rgba(27,26,23,.08);
}

.pg-gb-hero__poster-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: #FCFAF4;
	overflow: hidden;
	border: 1px solid rgba(27,26,23,.12);
}

.pg-gb-hero__poster-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
}

.pg-gb-hero__poster-pin {
	position: absolute;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--pg-brass);
	box-shadow: 0 0 0 5px rgba(182,137,63,.18);
}

.pg-gb-hero__poster-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 11% 11%;
	text-align: center;
	color: var(--pg-ink);
}

.pg-gb-hero__poster-born {
	font-size: 9px;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--pg-warm-grey);
	margin-bottom: 8px;
}

.pg-gb-hero__poster-script {
	font-size: 27px;
	color: var(--pg-brass);
	line-height: .9;
	margin-bottom: 2px;
}

.pg-gb-hero__poster-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 34px;
	line-height: 1;
}

.pg-gb-hero__poster-stats {
	font-size: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #5A554C;
	margin-top: 9px;
}

@media (min-width: 860px) {
	.pg-gb-hero__grid {
		display: grid;
		grid-template-columns: 1.04fr .96fr;
		gap: 56px;
		align-items: center;
	}
	.pg-gb-hero__visual {
		justify-content: flex-end;
	}
	.pg-gb-hero__poster-col {
		margin: 0 auto;
	}
}

/* ============================================================
   FEATURE
   ============================================================ */
.pg-gb-feature {
	padding: clamp(64px, 8vw, 96px) 0;
}

.pg-gb-feature__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	align-items: center;
}

.pg-gb-feature__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 15px;
	border: 1px solid rgba(27,26,23,.14);
	border-radius: var(--radius-pill);
	margin-bottom: 24px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pg-warm-grey-text);
	font-weight: 700;
}

.pg-gb-feature__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pg-brass);
	flex-shrink: 0;
}

.pg-gb-feature__h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.06;
	letter-spacing: -.01em;
	margin: 0;
	color: var(--pg-ink);
	text-wrap: balance;
}

.pg-gb-feature__body {
	color: #4A4742;
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
}

/* ============================================================
   SHAPES + MARKERS
   ============================================================ */
.pg-gb-options {
	padding: clamp(64px, 8vw, 96px) 0;
}

.pg-gb-options__h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.06;
	letter-spacing: -.01em;
	margin: 0 0 36px;
	color: var(--pg-ink);
	text-wrap: balance;
}

.pg-gb-options__eyebrow {
	font-size: 12.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pg-warm-grey-text);
	font-weight: 700;
	margin: 0 0 20px;
}

/* Shapes grid - same pattern as sterrenkaart */
.pg-gb-shapes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
	margin-bottom: 40px;
}

.pg-gb-shape-card {
	border: 1px solid var(--pg-hairline);
	border-radius: var(--radius-sm);
	padding: 14px;
	text-align: center;
	background: var(--pg-card);
	transition: border-color .2s ease;
}

.pg-gb-shape-card--selected,
.pg-gb-shape-card:hover {
	border-color: var(--pg-brass);
	background: rgba(176,135,91,.06);
}

.pg-gb-shape-card__preview {
	width: 52px;
	height: 52px;
	margin: 0 auto 8px;
	background: linear-gradient(160deg, #161d3e, #241a45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #E7DFFb;
	font-family: var(--font-display);
	font-size: 16px;
}

.pg-gb-shape-card__preview--circle  { clip-path: circle(50%); }
.pg-gb-shape-card__preview--heart   { clip-path: polygon(50% 88%,10% 56%,1% 35%,7% 17%,27% 11%,50% 26%,73% 11%,93% 17%,99% 35%,90% 56%); }
.pg-gb-shape-card__preview--classic { /* rect, no clip */ }
.pg-gb-shape-card__preview--square  { border-radius: 6px; }
.pg-gb-shape-card__preview--skyline { border-radius: 27px 27px 4px 4px; }
.pg-gb-shape-card__preview--hex     { clip-path: polygon(25% 5%,75% 5%,100% 50%,75% 95%,25% 95%,0 50%); }

.pg-gb-shape-card__label {
	display: block;
	font-weight: 700;
	font-size: 12.5px;
	color: var(--pg-ink);
}

/* Marker pills */
.pg-gb-markers {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.pg-gb-marker-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--pg-card);
	border: 1px solid var(--pg-hairline);
	border-radius: var(--radius-pill);
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--pg-ink);
}

.pg-gb-marker-pill__dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--pg-brass);
	flex-shrink: 0;
}

/* ============================================================
   CADEAU-MOMENT (dark)
   ============================================================ */
.pg-gb-cadeau {
	position: relative;
	background: var(--pg-midnight-deep, #141A2E);
	padding: clamp(64px, 8vw, 96px) 0;
	overflow: hidden;
	color: var(--pg-bone);
}

.pg-gb-cadeau__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .4;
	pointer-events: none;
}

.pg-gb-cadeau__wrap {
	position: relative;
	z-index: 1;
}

.pg-gb-cadeau__body {
	max-width: 32em;
}

.pg-gb-cadeau__script {
	font-size: 30px;
	color: var(--pg-brass-glow);
	margin-bottom: 8px;
}

.pg-gb-cadeau__h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.06;
	letter-spacing: -.01em;
	margin: 0;
	color: var(--pg-bone);
	text-wrap: balance;
}

.pg-gb-cadeau__sub {
	color: rgba(244,239,230,.7);
	font-size: 17px;
	line-height: 1.7;
	margin: 22px 0 0;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */
.pg-gb-cta {
	position: relative;
	background: radial-gradient(120% 100% at 50% 0%, #1B2647, #161D36 50%, #0E1426);
	padding: clamp(80px, 10vw, 108px) 0;
	overflow: hidden;
	text-align: center;
}

.pg-gb-cta__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .55;
	pointer-events: none;
}

.pg-gb-cta__wrap {
	position: relative;
	z-index: 1;
}

.pg-gb-cta__script {
	font-size: 32px;
	color: var(--pg-brass-glow);
	margin-bottom: 6px;
}

.pg-gb-cta__h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(28px, 3.8vw, 52px);
	line-height: 1.05;
	color: var(--pg-bone);
	margin: 0 auto 28px;
	max-width: 15em;
	text-wrap: balance;
}

/* ============================================================
   SOLID NAV OVERRIDE (light-hero body class)
   When body has .light-hero the header stays solid/scrolled
   from page load. header.php checks is_page_template() for this.
   The styles here are just for belt-and-suspenders on the body class.
   ============================================================ */
.light-hero .pg-site-header {
	/* Ensure the header doesn't appear transparent on this page */
	background: rgba(251,248,241,.95) !important;
	backdrop-filter: saturate(150%) blur(18px) !important;
}

.light-hero .pg-site-header .pg-nav a,
.light-hero .pg-site-header .pg-logo,
.light-hero .pg-site-header .pg-cart-btn,
.light-hero .pg-site-header .pg-hamburger__line {
	color: var(--pg-ink) !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.pg-gb-faq {
	background: var(--pg-bone);
	padding: clamp(64px, 8vw, 104px) 0;
}

.pg-gb-faq__inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 40px);
}

.pg-gb-faq__header {
	text-align: center;
	margin-bottom: 44px;
}

.pg-gb-faq__script {
	font-size: 30px;
	color: var(--pg-brass);
	line-height: .9;
	margin-bottom: 6px;
}

.pg-gb-faq__h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.06;
	letter-spacing: -.01em;
	color: var(--pg-ink);
	margin: 0;
	text-wrap: balance;
}

.pg-gb-faq__list {
	border-top: 1px solid rgba(27,26,23,.1);
}

.pg-gb-faq__list details {
	border-bottom: 1px solid rgba(27,26,23,.1);
}

.pg-gb-faq__list details summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 22px 4px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(17px, 2vw, 21px);
	color: var(--pg-ink);
}

.pg-gb-faq__list details summary:hover {
	color: var(--pg-brass);
}

.pg-gb-faq__list details summary span:first-child {
	flex: 1 1 auto;
}

.pg-gb-faq__list details p {
	margin: 0;
	padding: 0 4px 24px;
	color: #5A554C;
	font-size: 15.5px;
	line-height: 1.72;
	max-width: 62em;
}

.pg-gb-faq__more {
	text-align: center;
	margin-top: 40px;
}

.pg-gb-faq__more a {
	display: inline-block;
	font-weight: 600;
	font-size: 15px;
	color: var(--pg-ink);
	border-bottom: 1px solid rgba(27,26,23,.25);
	padding-bottom: 3px;
	transition: color .2s ease, border-color .2s ease;
}

.pg-gb-faq__more a:hover {
	color: var(--pg-brass);
	border-color: var(--pg-brass);
}
