:root {
	--page: #fbfff6;
	--page-transparent: rgba(251, 255, 246, 0.85);
	--ink: rgba(21, 23, 15, 0.933);
	--ink-muted: rgba(21, 23, 15, 0.78);
	--ink-soft: rgba(21, 23, 15, 0.55);
	--green: #3b6e00;
	--olive: #84956f;
	--olive-transparent: rgba(132, 149, 111, 0.85);
	--olive-dark: #65684d;
	--brown: #84694b;
	--specs: #e0eacf;
	--spring: #e8eed0;
	--summer: #eee6f3;
	--autumn: #f6e2cb;
	--winter: #e0e7f1;
	--block: #d8d8d8;
	--max: 1100px;
	--gap: 20px;
	--buy-bar-height: 100px;

	/* Typography */
	--font-sans: Inter, Helvetica, Arial, sans-serif;
	--font-serif: Merriweather, Georgia, serif;
	--text-xs: 0.75rem;
	--text-sm: 0.8125rem;
	--text-base: 0.9375rem;
	--text-md: 1rem;
	--heading-2: clamp(1.375rem, 2.5vw, 1.625rem);
	--heading-3: clamp(1.0625rem, 2vw, 1.25rem);
	--heading-brand: clamp(1.25rem, 4vw, 2rem);
	--leading-tight: 1.25;
	--leading-snug: 1.4;
	--leading-normal: 1.6;
	--leading-relaxed: 1.75;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--page);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: var(--text-md);
	font-weight: 400;
	line-height: var(--leading-normal);
	overflow-x: hidden;
}

h2 {
	margin: 0 0 8px;
	font-size: var(--heading-2);
	font-weight: 800;
	line-height: var(--leading-tight);
}

h3 {
	margin: 12px 0 0;
	font-family: var(--font-sans);
	font-size: var(--heading-3);
	font-weight: 700;
	line-height: var(--leading-snug);
	color: inherit;
}

main {
	overflow: visible;
}

a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease-in-out;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: #fff;
	color: inherit;
	font-family: inherit;
	font-size: var(--text-md);
	font-weight: 600;
	line-height: var(--leading-tight);
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.button-primary {
	background: #4086b1;
	color: #fff;
}
.button-primary:hover {
	background: var(--green);
}

.button-primary:disabled:hover {
	background: #4086b1;
}

.buy-bar,
.section-grid,
.image-pair,
.book-faq,
.editions,
.book-grid,
.project-inner,
.makers-inner,
.newsletter-inner,
.site-footer {
	width: calc(100% - 40px);
	max-width: var(--max);
}

/* Hero Header */
.hero {
	position: relative;
	height: calc(100svh - var(--buy-bar-height) - 140px);
	min-height: 280px;
	background: var(--block);
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}

.hero picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Hero Gallery */
.hero-gallery-link {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 40px;
	z-index: 2;
	align-items: center;
	gap: 6px;
	padding: 0;
	transform: translateX(-50%);
}

.hero-gallery-thumb,
.hero-gallery-more {
	border-bottom: none;
	color: inherit;
	text-decoration: none;
}

.hero-gallery-thumb {
	display: block;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease;
}
.hero-gallery-thumb:hover {
	border-bottom: none;
	transform: scale(1.1);
}
.hero-gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-gallery-more {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: rgba(255, 255, 255, 0.4);
	font-size: var(--text-base);
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease;
}

.hero-gallery-more:hover {
	border-bottom: none;
	transform: scale(1.1);
}

#boekbeelden,
#boekbeeld-schoot,
#boekbeeld-reid,
#boekbeeld-winter,
#boekbeeld-detail,
#over,
#faq,
#publicaties,
#makers,
#loek,
#jasper,
#newsletter {
	scroll-margin-top: calc(var(--buy-bar-height) + 12px);
}

/* Buy bar */
.buy-bar-wrap {
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--page-transparent);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.2s ease-in-out;
}
.buy-bar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0px, 1fr) auto auto;
	gap: 25px;
	align-items: center;
	max-width: var(--max);
	height: var(--buy-bar-height);
	margin: 0 auto;
	transition: all 0.2s ease-in-out;
	border-bottom: 1px solid rgba(59, 110, 0, 0.28);
}
.buy-bar.is-sticky {
	height: 70px;
}
.buy-bar p {
	max-width: 324px;
	font-family: var(--font-serif);
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
	text-align: right;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	border-bottom: none;
	color: var(--green);
}

.brand h1 {
	margin: 0;
	font-family: inherit;
	font-size: var(--heading-brand);
	font-weight: 700;
	line-height: var(--leading-tight);
	color: inherit;
}

.logo-mark {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: url("/images/logo-groen.svg") no-repeat center center;
	background-size: contain;
}
.buy-bar .button span {
	padding-left: 6px;
}

/* Media blocks */

.media-block {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 1;
	min-height: 0;
	border-radius: 6px;
}

.block-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Sections */
section {
	padding-top: 60px;
}

section.project {
	padding-top: 0;
}

.section-grid,
.image-pair,
.editions,
.book-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
	max-width: var(--max);
	margin: 0 auto;
}
.intro {
	font-family: var(--font-serif);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
}
.intro strong {
	text-transform: uppercase;
}

/* vw min-height on grid + aspect-ratio children often sticks on resize (WebKit); size from column width instead */
.image-pair .media-block {
	min-height: min(42.2vw, 540px);
}

.book-grid > .media-block.media-large {
	min-height: 0;
}

/* Editions */
.edition-card {
	display: grid;
	grid-template-columns: 271fr 270fr;
	/* aspect-ratio: 541 / 300; */
	min-height: 0;
	color: #fff;
	overflow: hidden;
	border-radius: 6px;
}

.edition-card-special {
	background: var(--olive-dark);
}

.edition-card-standard {
	background: var(--brown);
}

.edition-card-special .button {
	color: #414425;
}

.edition-card-standard .button {
	color: #2b2212;
}

.edition-cover {
	min-height: 0;
	align-self: stretch;
	background-color: rgba(0, 0, 0, 0.18);
}

/* Edition strips are wide rectangles — do not reuse square .media-block ratio */
.edition-cover.media-block {
	display: block;
	aspect-ratio: auto;
	height: 100%;
	width: 100%;
	place-items: unset;
	overflow: hidden;
	border-radius: 0;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

.edition-cover.media-block .block-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.edition-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 20px;
}

.edition-copy h2 {
	margin: 0 0 4px;
	font-size: var(--text-md);
	font-weight: 600;
	line-height: var(--leading-tight);
}

.edition-copy ul {
	font-family: var(--font-serif);
	opacity: 0.9;
	margin-bottom: 10px;
}

.edition-copy li {
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
}

.edition-copy .button {
	align-self: flex-end;
	margin-top: auto;
}

/* Book grid */

.book-grid {
	grid-auto-rows: minmax(0, auto);
}

.nested-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gap);
	aspect-ratio: 1;
	min-height: 0;
}

.nested-grid .media-block {
	min-height: 0;
}

.publication-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	aspect-ratio: 1;
	min-height: 0;
	padding: 28px;
	border: 2px solid var(--specs);
	border-radius: 12px;
	background: #fff;
	text-align: center;
}

a.publication-block {
	color: inherit;
	transition:
		border-color 0.2s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

a.publication-block:hover {
	border-color: rgba(59, 110, 0, 0.45);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transform: scale(1.015);
}

.publication-block p {
	color: rgba(0, 0, 0, 0.45);
	font-size: var(--text-sm);
	line-height: var(--leading-tight);
}

.publication-block img {
	display: block;
	width: min(72%, 162px);
	max-height: 72%;
	object-fit: contain;
}

.specs {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 1;
	min-height: 0;
	border-radius: 6px;
	background: var(--specs);
	color: #394600;
}

.specs-image {
	display: block;
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	object-position: center;
}

.specs-copy {
	position: absolute;
	left: 23%;
	bottom: 13%;
}

.specs h2 {
	margin: 0 0 4px;
	font-size: var(--text-sm);
	font-weight: 600;
}

.specs li {
	font-size: var(--text-sm);
	line-height: var(--leading-snug);
}

.project-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding-top: 48px;
	padding-bottom: 60px;
}

.section-heading {
	margin-bottom: 25px;
}

.section-heading p {
	font-family: var(--font-serif);
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
	color: var(--ink-muted);
}

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

.season-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 6px;
	border-bottom: none;
	background: #fff;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.season-card:hover {
	border-bottom: none;
	transform: scale(1.015);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.season-card-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-width: 0;
	min-height: 100%;
	padding: 18px 20px;
	background: var(--season-bg);
	color: var(--season-color);
}

.season-logo {
	display: block;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	background-color: var(--season-color);
	mask-image: url("/images/logo-wit.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("/images/logo-wit.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}
.season-cta {
	margin-top: auto;
	padding-top: 16px;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--leading-snug);
	color: inherit;
	opacity: 0.9;
}

.season-card-media {
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.06);
}

.season-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right;
}

.season-spring {
	--season-bg: #E8EED0;
	--season-color: #5D7A42;
}

.season-summer {
	--season-bg: #EEE6F3;
	--season-color: #FF2336;
}

.season-autumn {
	--season-bg: #F6E2CB;
	--season-color: #A25129;
}

.season-winter {
	--season-bg: #E0E7F1;
	--season-color: #3A94D2;
}

.media-heading {
	margin-top: 94px;
}

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

.media-card {
	display: block;
	border-bottom: none;
}

.media-card .media-block {
	aspect-ratio: 354 / 221;
	min-height: 0;
	margin-bottom: 10px;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.media-card:hover {
	border-bottom: none;
}

.media-card:hover .media-block {
	transform: scale(1.015);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.media-card p {
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
}

/* FAQ (onder boekfoto’s) */
.book-faq {
	max-width: 840px;
	margin: 0 auto 60px auto;
}

.book-faq h2 {
	color: var(--ink);
}

.book-faq-lead {
	margin: 0 0 28px;
	max-width: 42em;
	font-family: var(--font-serif);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	color: var(--ink-muted);
}

.book-faq-list {
	border-top: 1px solid rgba(59, 110, 0, 0.18);
}

.book-faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 18px 0;
	list-style: none;
	cursor: pointer;
	font-size: var(--text-md);
	font-weight: 600;
	line-height: var(--leading-snug);
	text-align: left;
	color: var(--ink);
	border-bottom: 1px solid rgba(59, 110, 0, 0.15);
	transition: color 0.15s ease;
}

.book-faq-item summary::-webkit-details-marker {
	display: none;
}

.book-faq-item summary:hover {
	color: var(--green);
}

.book-faq-item summary::after {
	content: "";
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: rgba(59, 110, 0, 0.08);
	background-image:
		linear-gradient(var(--green), var(--green)),
		linear-gradient(var(--green), var(--green));
	background-size: 0.75rem 2px, 2px 0.75rem;
	background-position: center;
	background-repeat: no-repeat;
}

.book-faq-item[open] summary::after {
	background-image: linear-gradient(var(--green), var(--green));
	background-size: 0.75rem 2px;
}

.book-faq-item > p {
	margin: 0;
	padding: 20px 40px 20px 0;
	font-family: var(--font-serif);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	color: var(--ink-muted);
}

.book-faq-item > p a {
	border-bottom-color: rgba(59, 110, 0, 0.25);
	color: var(--green);
}

.book-faq-item > p a:hover {
	border-bottom-color: var(--green);
}

/* Over de makers (na project / media) */
.makers {
	padding-top: 60px;
	background: var(--page);
	color: var(--ink);
}

.makers-inner {
	max-width: var(--max);
	margin: 0 auto;
}

.makers-inner h2 {
	margin: 0 0 28px;
	color: var(--ink);
}

.makers-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	align-items: center;
}

.makers-text {
	min-width: 0;
}

.makers-bio + .makers-bio {
	margin-top: 28px;
}

.makers-bio p {
	margin: 0 0 0.85em;
	font-family: var(--font-serif);
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	color: rgba(21, 23, 15, 0.88);
}

.makers-bio p:last-child {
	margin-bottom: 0;
}

.makers-bio strong {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: var(--text-base);
	color: var(--ink);
}

.makers-site {
	margin: 10px 0 0 !important;
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--leading-normal);
}

.makers-site a {
	border-bottom-color: rgba(59, 110, 0, 0.25);
	color: var(--green);
}

.makers-site a:hover {
	border-bottom-color: var(--green);
}

.makers-photo {
	margin: 0;
}

.makers-photo.media-block {
	display: block;
	aspect-ratio: 1;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.makers-photo.media-block .block-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 32%;
}

/* Nieuwsbrief (Mailchimp-stijl) */
.newsletter-boek {
	padding-top: 60px;
	color: var(--ink);
}

.newsletter-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	align-items: center;
	max-width: var(--max);
	margin: 0 auto;
}

.newsletter-copy {
	min-width: 0;
}

.newsletter-photo {
	margin: 0;
}

.newsletter-photo.media-block {
	display: block;
	aspect-ratio: 1;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.newsletter-photo.media-block .block-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
}

.newsletter-copy h2 {
	margin: 0 0 10px;
}

.newsletter-lead {
	margin: 0 0 22px;
	max-width: 36em;
	font-family: var(--font-serif);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	color: var(--ink-muted);
}

.newsletter-copy .newsletter-note {
	margin-top: 14px;
}

.newsletter-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

.newsletter-form {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 8px;
	max-width: 32rem;
}

.newsletter-boek #mc_embed_shell,
.newsletter-boek #mc_embed_signup {
	width: 100%;
}

.newsletter-boek #mc_embed_signup {
	clear: none;
	background: transparent;
	font: inherit;
}

.newsletter-boek .mc-field-group {
	flex: 1 1 12rem;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.newsletter-boek .mc-field-group .newsletter-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.newsletter-boek #mce-responses {
	flex: 1 1 100%;
	margin: 0;
}

.newsletter-boek #mce-error-response,
.newsletter-boek #mce-success-response,
.newsletter-boek div.mce_inline_error {
	font-size: var(--text-sm);
	line-height: var(--leading-snug);
}

.newsletter-boek #mce-error-response,
.newsletter-boek div.mce_inline_error {
	color: #9b2c2c;
}

.newsletter-boek #mce-success-response {
	color: var(--green);
}

.newsletter-input {
	flex: 1 1 12rem;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid rgba(59, 110, 0, 0.35);
	border-radius: 6px;
	background: #fff;
	font-family: inherit;
	font-size: var(--text-base);
	color: var(--ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-input:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(59, 110, 0, 0.15);
}

.newsletter-submit {
	flex: 0 0 auto;
	margin: 0;
	border: none;
	cursor: pointer;
}

.newsletter-note {
	margin: 0;
	font-family: var(--font-serif);
	font-size: var(--text-xs);
	line-height: var(--leading-normal);
	color: var(--ink-soft);
}

/* Footer */
.site-footer {
	max-width: var(--max);
	margin: 0 auto;
	padding: 40px 0 52px;
	text-align: center;
	font-family: var(--font-serif);
	font-size: var(--text-sm);
	line-height: var(--leading-normal);
	color: var(--ink-soft);
	transition: opacity 0.15s ease;
}

.site-footer:hover {
	color: rgba(21, 23, 15, 0.75);
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	border-bottom-color: rgba(21, 23, 15, 0.2);
}

@media (max-width: 960px) {
	
	.buy-bar {
		height: 80px;
	}
	
	.media-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.edition-card {
		grid-template-columns: 1fr;
		aspect-ratio: auto;
		height: auto;
	}

	.edition-cover.media-block {
		aspect-ratio: 3 / 2;
		height: auto;
		min-height: 0;
		width: 100%;
		border-top-left-radius: 6px;
		border-top-right-radius: 6px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.edition-copy {
		padding: 14px;
	}

	.edition-copy ul {
		font-size: 0;
		line-height: var(--leading-relaxed);
	}

	.edition-copy li {
		display: inline;
		font-size: var(--text-sm);
	}

	.edition-copy li:not(:last-child)::after {
		content: ",\00a0";
		font-size: var(--text-sm);
	}
}

@media (max-width: 768px) {
	:root {
		--gap: 14px;
	}

	.buy-bar,
	.intro-pre-order,
	.section-grid,
	.image-pair,
	.book-faq,
	.editions,
	.book-grid,
	.project-inner,
	.makers-inner,
	.newsletter-inner,
	.site-footer {
		/* width: calc(100% - 40px); */
		max-width: var(--max);
	}

	.hero-gallery-link {
		display: flex;
	}

	/* Buy bar */
	.buy-bar {
		gap: 0;
	}
	.buy-bar p {
		display: none;
	}

	.newsletter-form {
		flex-direction: column;
		align-items: stretch;
	}

	.newsletter-boek .mc-field-group {
		flex: 1 1 100%;
		width: 100%;
	}

	.newsletter-submit {
		width: 100%;
	}
	.season-title {
		font-size: 1.6rem;
	}
	.section-grid {
		grid-template-columns: 1fr;
	}
	.intro-pre-order {
		text-align: left;
	}
	.intro {
		padding-top: 42px;
	}

	.book-faq-item summary {
		padding: 16px 0;
	}

	.publication-block {
		padding: 0;
	}
	.publication-block p {
		display: none;
	}
	.publication-block img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.specs-copy {
		bottom: 8%;
	}

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

	/* bottom of page */
	.makers-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.makers-photo {
		order: -1;
	}
	
	.newsletter-inner {
		grid-template-columns: 1fr;
		gap: 20px;
		align-items: start;
	}

	.makers-text {
		max-width: none;
	}

	.makers-photo.media-block {
		aspect-ratio: 1;
		/* width: min(440px, 100%); */
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	.newsletter-photo.media-block {
		aspect-ratio: 1;
		/* width: min(440px, 100%); */
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	.newsletter-form {
		max-width: none;
	}
}

@media (max-width: 480px) {
	:root {
		--gap: 12px;
	}

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

	.edition-copy .button {
		align-self: stretch;
		justify-content: center;
		width: 100%;
		margin-top: 14px;
	}

	/* Buy bar */
	.buy-bar {
		height: 80px;
		padding:0;
	}
	.buy-bar.is-sticky {
		height: 60px;
	}
	.buy-bar .brand {
		gap: 6px;
	}
	.buy-bar .logo-mark {
		width: 26px;
		height: 26px;
	}
	.buy-bar p {
		display: none;
	}
	.buy-bar .button {
		font-size: var(--text-sm);
		padding: 10px 16px;
	}

	.book-grid > :nth-child(2),
	.book-grid > :nth-child(3),
	.book-grid > .nested-grid,
	.book-grid .specs,
	.book-grid > .book-quote-tile,
	.book-grid > .book-winter-spread-tile {
		grid-column: 1 / -1;
		width: 100%;
	}

	.season-title {
		font-size: 1.2rem;
	}
	.season-card-copy {
		padding: 16px 18px;
		gap: 8px;
	}

	.season-logo {
		width: 28px;
		height: 28px;
	}

	.season-title {
		margin-top: 10px;
	}

	/* Content */

	.image-pair {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 360px) {
	.buy-bar .logo-mark {
		display: none;
	}
	.buy-bar .button span {
		display: none;
	}
}

/* Book preview image viewer */

figure.media-block {
	margin: 0;
}

.book-preview-photo {
	cursor: zoom-in;
}

.book-preview-photo figcaption {
	display: none;
}

dialog {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	width: 100vw;
	max-width: 100vw;
	height: 100dvh;
	max-height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	background-color: rgba(0, 0, 0, 0.85);
	z-index: 100;
	border: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

dialog.open {
	opacity: 1;
}

dialog .carousel {
	--viewer-safe-x: 80px;
	--viewer-safe-y: 72px;
}

dialog .carousel-item figure,
dialog .carousel-item figure.media-block {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	aspect-ratio: auto;
	border-radius: 0;
	overflow: visible;
}

dialog .carousel-item figure img,
dialog .carousel-item figure img.block-image {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	max-width: calc(100% - (var(--viewer-safe-x) * 2));
	max-height: calc(100% - (var(--viewer-safe-y) * 2));
	object-fit: contain;
	object-position: center;
	transform: translate(-50%, -50%);
	cursor: zoom-in;
}

dialog figure.large img,
dialog figure.large img.block-image {
	scale: none;
	transform: translate(-50%, -50%);
	cursor: zoom-out;
}

dialog figcaption {
	opacity: 1;
	display: block;
	bottom: 20px;
	left: 20px;
	top: unset;
	right: 20px;
	position: absolute;
	font-size: 0.85em;
	color: #fff;
	z-index: 1;
	pointer-events: none;
}

dialog figure.large figcaption {
	display: none;
}

dialog figcaption.dark {
	color: #fff;
}

dialog figure figcaption {
	display: block;
}

dialog .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	padding: 0;
	box-sizing: border-box;
	z-index: 1;
	background-color: rgba(100, 100, 100, 0.25);
	border-radius: 8px;
	transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: center;
	border: none;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	white-space: normal;
	color: transparent;
}

dialog .button:hover {
	background-color: rgba(100, 100, 100, 0.65);
	transform: scale(1.05);
}

dialog .button:focus-visible {
	outline: none;
	border: 1px solid #ffffff70;
}

dialog .button span {
	display: none;
}

dialog .close {
	position: absolute;
	top: 20px;
	right: 20px;
	background-image: url("/images/icon-close.svg");
	background-size: 24px;
}

dialog .previous,
dialog .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-size: 14px 18px;
}

dialog .previous:hover,
dialog .next:hover {
	transform: translateY(-50%) scale(1.05);
}

dialog .previous {
	left: 20px;
	background-image: url("/images/icon-previous.svg");
}

dialog .next {
	right: 20px;
	background-image: url("/images/icon-arrow.svg");
}

.carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: hidden;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	display: flex;
	flex-direction: row;
	scroll-behavior: auto;
}

.carousel::-webkit-scrollbar {
	display: none;
}

.carousel-item {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-height: 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	overflow: hidden;
}

@media (max-width: 480px) {
	dialog .carousel {
		--viewer-safe-x: 24px;
		--viewer-safe-y: 64px;
	}

	dialog .previous,
	dialog .next {
		display: none;
	}
}
