/*
Theme Name: Amber Prive
Theme URI: https://amber-prive.nl/
Author: Amber Prive
Description: Speelse pastel modelpagina voor Amber Prive.
 Version: 1.5.1
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: amber-prive
*/

:root {
	--ink: #33263d;
	--muted: #715f78;
	--cream: #fffaf4;
	--paper: #fffdf9;
	--pink: #f6b6cf;
	--hot-pink: #db568c;
	--lavender: #c9b8f4;
	--lilac: #eee7ff;
	--butter: #f9dda0;
	--mint: #bfe5d1;
	--line: rgba(51, 38, 61, 0.14);
	--shadow: 0 24px 70px rgba(105, 72, 116, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(circle at 8% 5%, rgba(246, 182, 207, 0.38), transparent 28rem),
		radial-gradient(circle at 92% 24%, rgba(201, 184, 244, 0.34), transparent 26rem),
		var(--cream);
	font-family: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
	font-size: 18px;
	line-height: 1.6;
}

body::before {
	position: fixed;
	z-index: 20;
	inset: 0;
	content: "";
	pointer-events: none;
	border: 8px solid var(--paper);
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mobile-menu {
	display: none;
}

.site-shell {
	width: min(1180px, calc(100% - 36px));
	margin: 0 auto;
}

.site-header {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 0;
}

.brand {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	font-style: italic;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.04em;
}

.brand-dot {
	color: var(--hot-pink);
}

.nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav a {
	padding: 9px 14px;
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
	background: var(--lilac);
	outline: none;
}

.nav .nav-cta {
	background: var(--ink);
	color: #fff;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	align-items: center;
	gap: clamp(40px, 7vw, 100px);
	min-height: 640px;
	padding: 40px 0 70px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 14px;
	margin: 0 0 24px;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	background: var(--butter);
	border: 1px solid rgba(51, 38, 61, 0.1);
	border-radius: 999px;
	transform: rotate(-2deg);
}

.eyebrow::before {
	content: "✦";
	color: var(--hot-pink);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2 {
	font-family: Georgia, "Times New Roman", serif;
}

h1 {
	max-width: 680px;
	margin-bottom: 26px;
	font-size: clamp(3.8rem, 8vw, 7rem);
	font-weight: 500;
	line-height: 0.82;
	letter-spacing: -0.075em;
}

h1 em {
	position: relative;
	z-index: 1;
	display: inline-block;
	color: var(--hot-pink);
	font-weight: 700;
}

h1 em::after {
	position: absolute;
	z-index: -1;
	right: -0.07em;
	bottom: -0.05em;
	left: -0.05em;
	height: 0.3em;
	content: "";
	background: var(--butter);
	border-radius: 100%;
	transform: rotate(-2deg);
}

.hero-intro {
	max-width: 560px;
	margin-bottom: 34px;
	color: var(--muted);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	font-size: 0.86rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: 2px solid var(--ink);
	border-radius: 999px;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary {
	color: #fff;
	background: var(--ink);
	box-shadow: 6px 6px 0 var(--pink);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.55);
}

.button:hover,
.button:focus-visible {
	box-shadow: 3px 3px 0 var(--lavender);
	outline: none;
	transform: translate(3px, 3px);
}

.hero-visual {
	position: relative;
	z-index: 1;
	width: min(470px, 100%);
	margin-left: auto;
}

.hero-photo-wrap {
	position: relative;
	padding: 14px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 48% 48% 24px 24px;
	box-shadow: var(--shadow);
	transform: rotate(2.5deg);
}

.hero-photo {
	width: 100%;
	aspect-ratio: 4 / 5.2;
	object-fit: cover;
	object-position: center 18%;
	border-radius: 47% 47% 16px 16px;
}

.sticker {
	position: absolute;
	z-index: 3;
	display: grid;
	width: 118px;
	aspect-ratio: 1;
	place-items: center;
	padding: 18px;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: var(--mint);
	border: 2px solid var(--ink);
	border-radius: 50%;
	box-shadow: 5px 5px 0 rgba(51, 38, 61, 0.16);
	transform: rotate(-10deg);
}

.sticker-top {
	top: 4%;
	left: -48px;
}

.sticker-bottom {
	right: -34px;
	bottom: 8%;
	background: var(--butter);
	transform: rotate(8deg);
}

.spark {
	position: absolute;
	color: var(--hot-pink);
	font-size: 3.2rem;
	line-height: 1;
}

.spark-one {
	top: -38px;
	right: 12%;
}

.spark-two {
	bottom: -25px;
	left: 12%;
	color: #8f79d0;
	transform: rotate(18deg);
}

.marquee {
	overflow: hidden;
	padding: 16px 0;
	color: var(--ink);
	background: var(--pink);
	border-block: 2px solid var(--ink);
	transform: rotate(-1deg);
}

.marquee-track {
	display: flex;
	gap: 30px;
	width: max-content;
	font-size: 0.84rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	animation: amber-marquee 24s linear infinite;
}

.marquee-track span::after {
	padding-left: 30px;
	content: "✦";
}

.section {
	padding: 120px 0;
}

#nieuw,
#verhaal,
#videos,
#faq,
#amber-tipt {
	scroll-margin-top: 110px;
}

.section-heading {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: end;
	gap: 50px;
	margin-bottom: 54px;
}

.section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(3rem, 6vw, 5.4rem);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.055em;
}

.section-heading p {
	max-width: 560px;
	margin-bottom: 6px;
	color: var(--muted);
	font-size: 1.08rem;
}

.gallery-page {
	padding-bottom: 100px;
}

.gallery-page-header {
	max-width: 850px;
	padding: 70px 0 54px;
}

.gallery-page-header h1 {
	margin-bottom: 22px;
	font-size: clamp(4rem, 10vw, 8.6rem);
}

.gallery-page-header p {
	max-width: 620px;
	margin: 0;
	color: var(--muted);
	font-size: 1.12rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 84px;
	gap: 18px;
}

.gallery-card {
	position: relative;
	overflow: hidden;
	background: var(--lilac);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: 0 15px 50px rgba(83, 57, 94, 0.1);
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:hover img {
	transform: scale(1.035);
}

.gallery-card:nth-child(6n + 1) {
	grid-column: span 7;
	grid-row: span 6;
}

.gallery-card:nth-child(6n + 2) {
	grid-column: span 5;
	grid-row: span 4;
}

.gallery-card:nth-child(6n + 3) {
	grid-column: span 5;
	grid-row: span 5;
}

.gallery-card:nth-child(6n + 4) {
	grid-column: span 7;
	grid-row: span 5;
}

.gallery-card:nth-child(6n + 5) {
	grid-column: span 5;
	grid-row: span 5;
}

.gallery-card:nth-child(6n + 6) {
	grid-column: span 7;
	grid-row: span 5;
}

.gallery-card:nth-child(6n + 2) img {
	object-position: center 18%;
}

.gallery-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding-top: 48px;
}

.gallery-pagination a,
.gallery-pagination span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	font-size: 0.86rem;
	font-weight: 900;
	text-decoration: none;
	border: 2px solid var(--ink);
	border-radius: 50%;
}

.gallery-pagination .is-current {
	color: #fff;
	background: var(--ink);
	box-shadow: 4px 4px 0 var(--pink);
}

.video-section {
	padding-top: 20px;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.video-card {
	overflow: hidden;
	margin: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.video-card video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--ink);
}

.video-card h3 {
	margin: 0;
	padding: 18px 22px 22px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	font-style: italic;
	line-height: 1.15;
}

.about {
	position: relative;
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: clamp(45px, 8vw, 110px);
	align-items: center;
	padding: clamp(45px, 7vw, 88px);
	background: var(--lilac);
	border: 1px solid var(--line);
	border-radius: 44px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.about::before,
.about::after {
	position: absolute;
	content: "";
	border: 2px solid rgba(51, 38, 61, 0.12);
	border-radius: 50%;
}

.about::before {
	top: -90px;
	right: -75px;
	width: 230px;
	height: 230px;
	background: var(--butter);
}

.about::after {
	bottom: -65px;
	left: 30%;
	width: 150px;
	height: 150px;
	background: var(--mint);
}

.about-kicker {
	position: relative;
	z-index: 1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.4rem, 7vw, 6.7rem);
	font-style: italic;
	line-height: 0.88;
	letter-spacing: -0.06em;
}

.about-copy {
	position: relative;
	z-index: 1;
}

.about-copy h2 {
	margin-bottom: 22px;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	line-height: 0.95;
	letter-spacing: -0.045em;
}

.about-copy p {
	color: var(--muted);
	font-size: 1.13rem;
}

.about-copy p:last-of-type {
	margin-bottom: 32px;
}

.finale {
	position: relative;
	padding: 130px 0 120px;
	text-align: center;
}

.finale::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(820px, 90vw);
	height: 360px;
	content: "";
	background: var(--pink);
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.3;
	transform: translate(-50%, -50%);
}

.finale-inner {
	position: relative;
	z-index: 1;
}

	.finale h2 {
	max-width: 850px;
	margin: 0 auto 26px;
	font-size: clamp(3.5rem, 7vw, 6.4rem);
	font-weight: 500;
	line-height: 0.86;
	letter-spacing: -0.07em;
}

.finale p {
	max-width: 580px;
	margin: 0 auto 34px;
	color: var(--muted);
	font-size: 1.12rem;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 0 38px;
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-top: 1px solid var(--line);
}

.site-footer p {
	margin: 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 16px;
}

.footer-links a {
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--hot-pink);
}

@keyframes amber-marquee {
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 35px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-intro {
		margin-inline: auto;
	}

	.button-row {
		justify-content: center;
	}

	.hero-visual {
		width: min(520px, calc(100% - 40px));
		margin: 15px auto 0;
	}

	.section-heading,
	.about {
		grid-template-columns: 1fr;
	}

	.section-heading {
		gap: 24px;
	}

	.gallery-grid {
		grid-auto-rows: 70px;
	}

	.about-kicker {
		max-width: 520px;
	}
}

@media (max-width: 640px) {
	body::before {
		border-width: 5px;
	}

	.site-shell {
		width: min(100% - 24px, 1180px);
	}

	.site-header {
		padding: 20px 4px;
	}

	.nav {
		display: none;
	}

	.mobile-menu {
		position: relative;
		display: block;
	}

	.mobile-menu summary {
		padding: 10px 16px;
		font-size: 0.72rem;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		cursor: pointer;
		border: 1px solid var(--ink);
		border-radius: 999px;
		list-style: none;
	}

	.mobile-menu summary::-webkit-details-marker {
		display: none;
	}

	.mobile-menu[open] nav {
		position: absolute;
		z-index: 30;
		top: calc(100% + 8px);
		right: 0;
		display: grid;
		width: min(280px, calc(100vw - 24px));
		padding: 12px;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: 18px;
		box-shadow: var(--shadow);
	}

	.mobile-menu nav a {
		padding: 10px 12px;
		font-size: 0.78rem;
		font-weight: 900;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		border-radius: 10px;
	}

	.mobile-menu nav a:hover,
	.mobile-menu nav a:focus-visible {
		background: var(--lilac);
	}

	.hero {
		gap: 38px;
		padding: 38px 8px 70px;
	}

	h1 {
		font-size: clamp(3.2rem, 18vw, 5.2rem);
	}

	.section-heading h2,
	.finale h2 {
		font-size: clamp(2.8rem, 15vw, 4.5rem);
	}

	.hero-visual {
		width: calc(100% - 20px);
	}

	.sticker {
		width: 92px;
		padding: 10px;
		font-size: 0.63rem;
	}

	.sticker-top {
		left: -10px;
	}

	.sticker-bottom {
		right: -8px;
	}

	.section {
		padding: 70px 0;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 230px;
		gap: 10px;
	}

	.gallery-card:nth-child(n) {
		grid-column: span 1;
		grid-row: span 1;
		border-radius: 16px;
	}

	.gallery-card:first-child,
	.gallery-card:nth-child(6) {
		grid-column: span 2;
	}

	.about {
		padding: 44px 26px;
		border-radius: 28px;
	}

	.finale {
		padding-block: 95px;
	}

	.site-footer {
		flex-direction: column;
		text-align: center;
	}

	.video-grid {
		grid-template-columns: 1fr;
	}

	.footer-links {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.marquee-track {
		animation: none;
	}

	.gallery-card img,
	.button {
		transition: none;
	}
}

/* Version 1.3: commercial profile, weekly update and curated traffic hub. */
.hero-meta {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.weekly-section {
	padding-top: 100px;
}

.weekly-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
	padding: clamp(24px, 4vw, 52px);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 40px;
	box-shadow: var(--shadow);
}

.weekly-photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--lilac);
	border-radius: 28px;
}

.weekly-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.new-badge {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	padding: 9px 13px;
	color: var(--ink);
	font-size: 0.68rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: var(--butter);
	border: 2px solid var(--ink);
	border-radius: 999px;
	box-shadow: 4px 4px 0 var(--pink);
}

.weekly-copy h2 {
	margin-bottom: 24px;
	font-size: clamp(2.8rem, 6vw, 5.8rem);
	line-height: 0.92;
	letter-spacing: -0.055em;
}

.weekly-copy > p {
	max-width: 650px;
	color: var(--muted);
	font-size: 1.08rem;
}

.weekly-note {
	padding: 15px 18px;
	background: var(--lilac);
	border-left: 4px solid var(--hot-pink);
	border-radius: 0 14px 14px 0;
}

.amber-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	margin: 28px 0 34px;
	list-style: none;
}

.amber-facts li {
	padding: 16px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid var(--line);
	border-radius: 16px;
}

.amber-facts strong,
.amber-facts span {
	display: block;
}

.amber-facts strong {
	margin-bottom: 4px;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.amber-facts span {
	color: var(--muted);
	font-size: 0.85rem;
	line-height: 1.35;
}

.journal-section {
	padding-top: 40px;
}

.journal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.journal-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(26px, 3vw, 40px);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: 0 16px 45px rgba(83, 57, 94, 0.09);
}

.journal-card-featured {
	background: var(--butter);
	transform: rotate(-1deg);
}

.card-label {
	margin-bottom: 16px;
	color: var(--hot-pink);
	font-size: 0.69rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.journal-card h3 {
	margin-bottom: 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.035em;
}

.journal-card > p:not(.card-label) {
	color: var(--muted);
	font-size: 0.94rem;
}

.journal-card a {
	margin-top: auto;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	text-underline-offset: 5px;
}

.faq-section {
	padding-top: 40px;
}

.faq-list {
	display: grid;
	gap: 14px;
	max-width: 920px;
	margin: 0 auto;
}

.faq-item {
	padding: 0 26px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(83, 57, 94, 0.08);
}

.faq-item summary {
	padding: 22px 36px 22px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.faq-item p {
	max-width: 760px;
	margin: -4px 0 24px;
	color: var(--muted);
}

.partner-section {
	padding: 110px 0;
	background: var(--lilac);
	border-block: 1px solid var(--line);
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.partner-card {
	display: flex;
	grid-column: span 2;
	flex-direction: column;
	min-height: 270px;
	padding: 28px;
	text-decoration: none;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: 0 15px 45px rgba(83, 57, 94, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card:nth-child(4),
.partner-card:nth-child(5) {
	grid-column: span 3;
}

.partner-card:hover,
.partner-card:focus-visible {
	outline: none;
	box-shadow: 0 22px 55px rgba(83, 57, 94, 0.16);
	transform: translateY(-5px);
}

.partner-card-featured {
	background: var(--pink);
}

.partner-card strong {
	margin-bottom: 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.65rem, 2.7vw, 2.45rem);
	font-style: italic;
	line-height: 1;
}

.partner-card > span:not(.card-label) {
	color: var(--muted);
	font-size: 0.94rem;
}

.partner-card em {
	margin-top: auto;
	padding-top: 24px;
	font-size: 0.74rem;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.button-row-centered {
	justify-content: center;
}

.collection-tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 34px;
}

.collection-tabs a {
	padding: 18px 20px;
	text-decoration: none;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 18px;
}

.collection-tabs a:hover,
.collection-tabs a:focus-visible,
.collection-tabs .is-current {
	outline: none;
	background: var(--lilac);
	border-color: var(--ink);
	box-shadow: 4px 4px 0 var(--pink);
}

.collection-tabs span,
.collection-tabs strong {
	display: block;
}

.collection-tabs span {
	margin-bottom: 3px;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.collection-tabs strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.28rem;
	font-style: italic;
}

.gallery-pagination a,
.gallery-pagination span {
	width: auto;
	height: auto;
	min-height: 46px;
	padding: 10px 18px;
	border-radius: 999px;
}

.footer-brand,
.footer-meta {
	max-width: 50%;
}

.footer-meta {
	text-align: right;
}

.adult-badge {
	display: inline-grid;
	width: 30px;
	height: 30px;
	margin-left: 6px;
	place-items: center;
	color: #fff;
	background: var(--ink);
	border-radius: 50%;
}

.footer-note {
	margin-top: 8px !important;
	color: var(--muted);
	font-size: 0.67rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.footer-details {
	margin-top: 12px;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.footer-details summary {
	cursor: pointer;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-details p {
	max-width: 600px;
	margin: 10px 0 0 auto;
}

/* Version 1.4: mobile flow, lightbox and clearer traffic-hub conversion. */
.start-here {
	margin-top: -42px;
	margin-bottom: 48px;
	padding: 18px 20px;
	background: rgba(255, 253, 249, 0.94);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shadow);
}

.start-here > p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.start-here > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.start-here a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 18px;
	text-decoration: none;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 14px;
	transition: transform 180ms ease, background 180ms ease;
}

.start-here a:hover,
.start-here a:focus-visible {
	background: var(--lilac);
	transform: translateY(-2px);
}

.start-here span {
	color: var(--hot-pink);
	font-size: 0.7rem;
	font-weight: 900;
}

.start-here strong {
	font-size: 0.86rem;
}

.partner-disclosure {
	max-width: 760px;
	margin: 28px auto 0;
	color: var(--muted);
	font-size: 0.78rem;
	text-align: center;
}

.gallery-lightbox-trigger {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	cursor: zoom-in;
	background: transparent;
	border: 0;
}

.gallery-lightbox-trigger img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-lightbox {
	width: min(94vw, 1100px);
	max-width: none;
	height: min(92vh, 900px);
	max-height: none;
	padding: 18px;
	overflow: hidden;
	color: var(--ink);
	background: var(--paper);
	border: 0;
	border-radius: 24px;
	box-shadow: 0 30px 100px rgba(30, 20, 35, 0.4);
}

.gallery-lightbox::backdrop {
	background: rgba(25, 17, 30, 0.82);
	backdrop-filter: blur(6px);
}

.gallery-lightbox figure {
	display: grid;
	height: 100%;
	margin: 0;
	place-items: center;
}

.gallery-lightbox img {
	width: auto;
	max-width: 100%;
	height: calc(100% - 48px);
	object-fit: contain;
	border-radius: 14px;
}

.gallery-lightbox figcaption {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 56px 0;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
	position: absolute;
	z-index: 2;
	color: #fff;
	cursor: pointer;
	background: var(--ink);
	border: 0;
	box-shadow: 0 8px 24px rgba(30, 20, 35, 0.22);
}

.lightbox-close {
	top: 14px;
	right: 14px;
	padding: 10px 14px;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 999px;
}

.lightbox-nav {
	top: 50%;
	width: 44px;
	height: 44px;
	font-size: 1.3rem;
	border-radius: 50%;
	transform: translateY(-50%);
}

.lightbox-prev {
	left: 18px;
}

.lightbox-next {
	right: 18px;
}

.footer-details {
	font-size: 0.74rem;
}

@media (max-width: 980px) {
	.nav {
		gap: 2px;
	}

	.nav a {
		padding-inline: 9px;
		font-size: 0.7rem;
	}

	.weekly-card {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.amber-facts,
	.journal-grid {
		grid-template-columns: 1fr;
	}

	.partner-card,
	.partner-card:nth-child(4),
	.partner-card:nth-child(5) {
		grid-column: span 3;
	}
}

@media (max-width: 700px) {
	.start-here {
		margin-top: -28px;
		margin-bottom: 34px;
	}

	.start-here > div {
		grid-template-columns: 1fr;
	}

	.weekly-card {
		grid-template-columns: 1fr;
		padding: 18px;
		border-radius: 28px;
	}

	.weekly-photo {
		max-height: 620px;
	}

	.collection-tabs {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.collection-tabs a {
		flex: 0 0 82%;
		scroll-snap-align: start;
	}

	.partner-grid {
		grid-template-columns: 1fr;
	}

	.partner-card,
	.partner-card:nth-child(4),
	.partner-card:nth-child(5) {
		grid-column: auto;
		min-height: 235px;
	}

	.gallery-pagination {
		flex-direction: column;
		align-items: stretch;
	}

	.gallery-pagination a,
	.gallery-pagination span {
		text-align: center;
	}

	.site-footer {
		align-items: stretch;
	}

	.footer-brand,
	.footer-meta {
		max-width: none;
		text-align: center;
	}

	.footer-details p {
		margin-inline: auto;
	}

	.gallery-lightbox {
		width: calc(100vw - 16px);
		height: calc(100vh - 16px);
		padding: 10px;
		border-radius: 18px;
	}

	.gallery-lightbox figcaption {
		padding-inline: 8px;
	}

	.lightbox-nav {
		top: auto;
		bottom: 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.partner-card {
		transition: none;
	}
}
