/* ============================================================
   ENROUTE EDITIONS — main.css
   Mobile-first, BEM naming
   ============================================================ */

/* --- Custom Properties --- */
:root {
	/* exact Figma values */
	--color-cream: #F6F1EA;
	--color-cream-light: #F6F1EA;
	--color-dark: #2B211B;
	--color-dark-soft: #2B211B;
	--color-white: #FFFFFF;
	--color-green: #7A8471;
	--color-green-hover: #68705F;
	--color-green-muted: #8E9785;
	--color-gray: #BFAC96;
	--color-gray-light: #D9CCBD;
	--color-border: #D9CCBD;
	--color-label: #7A8471;
	/* Issue 01 / label color */

	--font-serif: 'Fraunces', Georgia, serif;
	--font-sans: 'Inter', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	--header-h: 68px;
	--container-w: 1280px;
	--container-pad: 24px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--color-dark);
	background-color: var(--color-cream-light);
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}

ul,
ol {
	list-style: none;
}

/* --- Utility --- */
.container {
	width: 100%;
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.section-label {
	display: block;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.84px;
	text-transform: uppercase;
	color: var(--color-dark);
	white-space: nowrap;
	flex-shrink: 0;
}

.site-main {
	overflow: clip;
}

.section-label {
	position: relative;
	width: fit-content;
}

.section-label::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(100% + 24px);
	width: 100vw;
	height: 1px;
	background-color: var(--color-border);
}

.section-label::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 24px);
	width: 100vw;
	height: 1px;
	background-color: var(--color-border);
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-sans);
	font-size: 16px;
	/* Inter Regular 16px from Figma */
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 12px 24px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, gap 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

/* Primary button — solid green, states from Figma (node 136-327) */
.btn--primary {
	background-color: var(--color-green);
	color: var(--color-white);
	gap: 8px;
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background-color: var(--color-green-muted);
	gap: 12px;
}

.btn--primary:active {
	background-color: var(--color-green-muted);
	gap: 8px;
}

.btn--primary:disabled,
.btn--primary.is-disabled {
	background-color: var(--color-green-muted);
	opacity: 0.5;
	pointer-events: none;
}

/* Secondary button — underlined text link, states from Figma (node 136-327) */
.btn--secondary {
	color: var(--color-green);
	border-bottom: 1px solid currentColor;
	gap: 8px;
	transition: color 0.2s ease, gap 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
	color: var(--color-green-muted);
	gap: 12px;
}

.btn--secondary:active {
	color: var(--color-green-muted);
	gap: 8px;
}

.btn--secondary:disabled,
.btn--secondary.is-disabled {
	color: var(--color-green-muted);
	opacity: 0.5;
	pointer-events: none;
}

.btn--outline-white {
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: var(--color-white);
}

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

.btn--full {
	width: 100%;
	justify-content: center;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-h);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--transparent {
	background-color: transparent;
}

.site-header--blur {
	background: rgba(255, 255, 255, 0.60);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.guide-detail__info .buy .btn {
	width: 100%;
}

.site-header--solid,
.site-header--scrolled {
	background: rgba(255, 255, 255, 0.60);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	gap: 16px;
}

.site-header__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	gap: 2px;
	overflow: hidden;
	max-width: 200px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity 0.45s ease, transform 0.45s ease, max-width 0.5s ease;
}

@media (min-width: 1024px) {
	.page--home .site-header--transparent .site-header__logo {
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
		max-width: 0;
	}

	.page--home .site-header--transparent .site-header__inner {
		justify-content: center;
	}
}

/* Fraunces Light 24px, letter-spacing 12% from Figma */
.site-header__logo-text {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-white);
	transition: color 0.3s ease;
}

.site-header--solid .site-header__logo-text,
.site-header--scrolled .site-header__logo-text {
	color: var(--color-dark);
}

/* Fraunces Light ~7px, letter-spacing 12% from Figma */
.site-header__logo-sub {
	font-family: var(--font-serif);
	font-size: 7px;
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.3s ease;
}

.site-header--solid .site-header__logo-sub,
.site-header--scrolled .site-header__logo-sub {
	color: var(--color-gray);
}

/* Burger */
.site-header__burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* gap: 5px; */
	width: 28px;
	height: 18px;
	padding: 0;
	z-index: 10;
}

#nav-toggle.is-open {
	justify-content: center;
}

#nav-toggle.is-open .site-header__burger-line.center {
	display: none;
}

.site-header__burger-line {
	display: block;
	height: 2px;
	border-radius: 1px;
	background-color: var(--color-white);
	transition: background-color 0.3s ease, transform 0.25s ease, opacity 0.25s ease;
	transform-origin: center;
}

.site-header--solid .site-header__burger-line,
.site-header--scrolled .site-header__burger-line {
	background-color: var(--color-dark);
}

.site-header__burger.is-open .site-header__burger-line:first-child {
	transform: translateY(1px) rotate(45deg);
}

.site-header__burger.is-open .site-header__burger-line:last-child {
	transform: translateY(-1px) rotate(-45deg);
}

/* Nav */
.site-header__nav {
	display: none;
	position: fixed;
	inset: 0;
	background-color: var(--color-cream-light);
	align-items: center;
	justify-content: center;
	z-index: 9;
}

.site-header__nav.is-open {
	display: flex;
}

.site-header__menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.site-header__menu li a {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-dark);
	transition: color 0.2s ease;
}

.site-header__menu li a:hover {
	text-decoration: underline;
}

@media (min-width: 1024px) {
	.site-header__burger {
		display: none;
	}

	.site-header__nav {
		display: flex;
		position: static;
		background: transparent;
	}

	.site-header__menu {
		flex-direction: row;
		gap: 40px;
	}

	.site-header__menu li a {
		font-size: 14px;
		color: var(--color-white);
	}

	.site-header--solid .site-header__menu li a,
	.site-header--scrolled .site-header__menu li a {
		color: var(--color-dark);
	}

	.site-header--solid .site-header__menu li a:hover,
	.site-header--scrolled .site-header__menu li a:hover {
		text-decoration: underline;
	}
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-dark-soft);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
	.hero__video {
		display: none;
	}
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--color-white);
	padding-inline: var(--container-pad);
}

.hero__title {
	font-family: var(--font-serif);
	font-size: clamp(48px, 6.2vw + 33px, 123px);
	/* 57px @ 390px, 122.5px @ 1440px, from Figma */
	font-weight: 300;
	letter-spacing: 0.12em;
	/* 12% from Figma */
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-cream);
	margin-bottom: 12px;
}

/* Thin decorative rule between ENROUTE and EDITIONS */
.hero__rule {
	display: block;
	width: clamp(150px, 19.9vw + 105px, 392px);
	/* 182.7px @ 390px, 392px @ 1440px, from Figma */
	height: 2px;
	background-color: var(--color-cream);
	margin: 0 auto 24px;
}

.hero__sub {
	font-family: var(--font-sans);
	font-size: clamp(14px, 1.87vw + 9.8px, 37px);
	/* 17.1px @ 390px, 36.8px @ 1440px, from Figma */
	font-weight: 300;
	letter-spacing: 0.12em;
	/* 12% from Figma */
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 20px;
}

.hero__tagline {
	font-family: var(--font-sans);
	font-style: italic;
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.06em;
	/* 6% from Figma */
}

/* ============================================================
   GUIDES SECTION
   ============================================================ */

.guides {
	background-color: var(--color-cream-light);
}

.guides__header {
	padding: 72px var(--container-pad) 0;
	max-width: var(--container-w);
	margin-inline: auto;
}

/* Guide Card */
.guide-card {
	display: flex;
	flex-direction: column;
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 40px var(--container-pad);
	gap: 32px;
}

.guide-card__image-link {
	display: block;
}

.guide-card__image {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	background-color: var(--color-cream);
}

.guide-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.guide-card__image-link:hover .guide-card__image img {
	transform: scale(1.04);
}

.guide-card__image--placeholder {
	background-color: var(--color-cream);
}

.guide-card__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.guide-card__label {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-label);
	line-height: 1.2;
}

.guide-card__label-sep {
	font-family: var(--font-mono);
	font-weight: 400;
	letter-spacing: 1px;
}

.guide-card__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.5vw, 32px);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: 0.08em;
	/* 8% from Figma */
	text-transform: uppercase;
	color: var(--color-dark);
}

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

.guide-card__desc {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.01em;
	color: #3a2e27;
	max-width: 360px;
}

.guide-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.guide-card__price {
	font-family: var(--font-serif);
	font-size: 42px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.guide-card__btn {
	padding: 8px 16px;
}

@media (min-width: 768px) {
	.guide-card {
		flex-direction: row;
		align-items: flex-start;
		/* text aligned to top of image */
		gap: 0;
		padding: 60px var(--container-pad);
	}

	.guide-card--reverse {
		flex-direction: row-reverse;
	}

	.guide-card__image-link {
		flex: 0 0 56%;
		max-width: 56%;
	}

	/* Keep aspect-ratio portrait on desktop */
	.guide-card__image {
		aspect-ratio: 3/4;
	}

	.guide-card--normal .guide-card__body {
		padding-left: 60px;
	}

	.guide-card--reverse .guide-card__body {
		padding-right: 60px;
	}

	.guide-card__body {
		gap: 24px;
		position: sticky;
		top: var(--header-h);
	}
}

@media (min-width: 1024px) {
	.guide-card {
		padding: 72px var(--container-pad);
	}

	.guide-card__image-link {
		flex-basis: 55%;
		max-width: 55%;
	}

	.guide-card--normal .guide-card__body {
		padding-left: 80px;
	}

	.guide-card--reverse .guide-card__body {
		padding-right: 80px;
	}
}

/* ============================================================
   COMING SOON — marquee
   ============================================================ */

.coming-soon {
	background-color: #EFE7DC;
	overflow: hidden;
}


.coming-soon__inner {
	display: flex;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	padding: 100px 0;
	/* rail holds two tracks side by side for seamless loop */
}

.coming-soon__inner.is-dragging {
	cursor: grabbing;
	user-select: none;
}

/* Rail is JS-transformed (drag or auto-scroll); tracks stay static */
.coming-soon__rail {
	display: flex;
	flex-shrink: 0;
	will-change: transform;
}

/* Both tracks (original + JS clone) sit side by side inside the rail */
.coming-soon__track {
	display: flex;
	flex-shrink: 0;
	gap: 12px;
	padding-left: 12px;
}

.coming-soon__item {
	flex: 0 0 auto;
	width: 234px;
	/* proportional to design: 312px scaled */
	display: flex;
	flex-direction: column;
	gap: 0;
}

.coming-soon__item-img {
	width: 100%;
	aspect-ratio: 312 / 412;
	overflow: hidden;
	background-color: var(--color-cream);
}

.coming-soon__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.coming-soon__item:hover .coming-soon__item-img img {
	transform: scale(1.04);
}

.coming-soon__item-img--empty {
	background-color: var(--color-gray-light);
}

.coming-soon__item-footer {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 14px;
}

.coming-soon__item-badge {
	color: #7A8471;
	font-size: 12px;
	font-family: Inter;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 14.40px;
	letter-spacing: 3px;
	word-wrap: break-word
}

/* Fraunces 24px as in Figma */
.coming-soon__item-name {
	color: #2B211B;
	font-size: 24px;
	font-family: Fraunces;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1.92px;
	word-wrap: break-word
}

@media (min-width: 768px) {
	.coming-soon__item {
		width: 280px;
	}

	.coming-soon__track {
		gap: 16px;
		padding-left: 16px;
	}
}

@media (min-width: 1280px) {
	.coming-soon__item {
		width: 312px;
	}
}

/* ============================================================
   EDITOR'S NOTES
   ============================================================ */

.notes {
	background-color: var(--color-cream-light);
}

.notes__header {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 72px var(--container-pad) 40px;
}

.notes__header .section-header {
	margin-bottom: 10px;
}

.notes__subtitle {
	color: #BFAC96;
	font-size: 16px;
	font-family: Inter;
	font-style: italic;
	font-weight: 300;
	line-height: 22.40px;
	letter-spacing: 0.16px;
	word-wrap: break-word
}

.notes__grid {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 0 var(--container-pad) 80px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

/* Note Card */
.note-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.note-card__image-link {
	display: block;
	overflow: hidden;
}

.note-card__image {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.note-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.note-card__image-link:hover .note-card__image img {
	transform: scale(1.04);
}

.note-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.note-card__label {
	color: #7A8471;
	font-size: 12px;
	font-family: Inter;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 14.40px;
	letter-spacing: 3px;
	word-wrap: break-word
}

/* Fraunces for note titles */
.note-card__title {
	color: #2B211B;
	font-size: 24px;
	font-family: Fraunces;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1.92px;
	word-wrap: break-word
}

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

.note-card__read-more {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 6px;
	/* 6% from Figma */
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-top: 4px;
}

.note-card__read-more--disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.notes__stack .note-card+.note-card {
	margin-top: 48px;
}

@media (min-width: 640px) {
	.notes__grid {
		display: flex;
		gap: 32px;
		align-items: flex-start;
	}

	.note-card--large {
		flex: 0 0 calc(50% - 16px);
		position: sticky;
		top: var(--header-h);
	}

	.note-card--large .note-card__image {
		aspect-ratio: 3/4;
	}

	.notes__stack {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
}

@media (min-width: 1024px) {
	.notes__grid {
		gap: 40px;
	}
}

/* ============================================================
   SUBSCRIBE SECTION (replaces cta-banner)
   ============================================================ */

.subscribe {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.footer__overlay {
	position: absolute;
	inset: 0;
	background: #3a2e27;
	mix-blend-mode: multiply;
	opacity: 0.16;
}

.subscribe__content {
	position: relative;
	z-index: 1;
	padding: 115px var(--container-pad) 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 90px;
	width: 100%;
}

.subscribe__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.subscribe__label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #efe7dc;
}

.subscribe__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f6f1ea;
}

.subscribe__title em {
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0.01em;
	text-transform: none;
}

.subscribe__desc {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.01em;
	color: #f6f1ea;
	line-height: 1.4;
	max-width: 480px;
}

.subscribe__form {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 528px;
	transition: opacity 0.2s ease;
}

.subscribe__form.is-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.subscribe__form.has-error {
	align-items: flex-start;
}

.subscribe__field {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 6px;
}

.subscribe__input {
	width: 100%;
	height: 36px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #cfc0ae;
	padding: 6px 32px 6px 12px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	color: #d9ccbd;
	letter-spacing: 1.28px;
	outline: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.subscribe__input::placeholder {
	color: #d9ccbd;
}

.subscribe__input:focus {
	border-color: #f6f1ea;
	color: #f6f1ea;
}

.subscribe__field.has-success .subscribe__input,
.subscribe__field.has-error .subscribe__input {
	border-color: #f6f1ea;
	color: #f6f1ea;
}

.subscribe__icon {
	display: none;
	position: absolute;
	right: 8px;
	top: 6px;
	width: 24px;
	height: 24px;
	pointer-events: none;
}

.subscribe__icon--success {
	color: #f6f1ea;
}

.subscribe__icon--error {
	color: #b76e6f;
}

.subscribe__field.has-success .subscribe__icon--success,
.subscribe__field.has-error .subscribe__icon--error {
	display: block;
}

.subscribe__error {
	display: none;
	font-family: var(--font-sans);
	font-size: 12px;
	letter-spacing: 0.96px;
	color: #b76e6f;
}

.subscribe__field.has-error .subscribe__error {
	display: block;
}

.subscribe__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 36px;
	padding: 6px 0;
	background: none;
	border: none;
	border-bottom: 1px solid #cfc0ae;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.28px;
	text-transform: uppercase;
	color: #cfc0ae;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.subscribe__form:focus-within .subscribe__btn,
.subscribe__form.has-success .subscribe__btn,
.subscribe__form.has-error .subscribe__btn {
	color: #f6f1ea;
	border-color: #f6f1ea;
	gap: 12px;
}

@media (max-width: 1023px) {
	.site-header__logo {
		visibility: hidden;
	}

	.site-header--blur .site-header__logo,
	.site-header--scrolled .site-header__logo {
		visibility: visible;
	}

	.site-header__nav {
		background: rgba(255, 255, 255, 0.60);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}

	.site-header.is-open.site-header--scrolled .site-header__inner {
		position: relative;
	}

	.site-header.is-open.site-header--scrolled .site-header__inner::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 1px;
		top: 100%;
		left: 0;
		background-color: #fff;
		z-index: 99;
	}

	.site-header__menu li a {
		text-decoration: underline;
	}

	.site-header--scrolled .site-header__menu li a {
		color: var(--color-dark);
	}

	.site-header.is-open.site-header--blur,
	.site-header.is-open.site-header--scrolled {
		background-color: unset;
		backdrop-filter: unset;
		-webkit-backdrop-filter: unset;
	}

	.site-header--blur .site-header__logo,
	.site-header--scrolled .site-header__logo {
		z-index: 99;
	}

	.section-label::before {
		right: calc(100% + 8px);
	}

	.section-label::after {
		left: calc(100% + 8px);
	}


}

@media(max-width: 767px) {
	img.site-footer__bg {
		max-width: unset;
		height: 100%;
		width: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.site-footer__inner {
		gap: 58px !important;
	}

	.subscribe__content {
		padding: 115px var(--container-pad) 30px !important;
	}
}

@media (max-width: 480px) {
	.subscribe__form {
		flex-direction: column;
		max-width: 100%;
	}

	.subscribe__input {
		width: 100%;
	}
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
	background-color: var(--color-dark-soft);
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.site-footer__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	transition: transform 4s ease;
	will-change: transform;
}

.site-footer--in-view .site-footer__bg {
	top: unset;
	bottom: 0;
}

.site-footer__inner {
	max-width: var(--container-w);
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 127px;
	padding: 28px;
	z-index: 9;
	position: relative;
}

.btn__desrc {
	color: #F6F1EA;
	font-size: 16px;
	font-family: Inter;
	font-style: italic;
	font-weight: 300;
	line-height: 22.40px;
	letter-spacing: 0.16px;
	word-wrap: break-word;
	margin-top: 8px;
}

.btn {
	justify-content: center;
}

.buy .btn {
	min-width: 333px;

}

.guide-detail__info .btn__desrc {
	color: #BFAC96;
}

.site-footer__bottom {
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 14px;
}

.site-footer__legal {
	display: flex;
	gap: 16px;
}

.site-footer__legal-link {
	color: #F6F1EA;
	font-size: 14px;
	font-family: Inter;
	font-weight: 500;
	line-height: 16.80px;
	word-wrap: break-word
}

.site-footer__legal-link:hover {
	color: var(--color-white);
}

@media (min-width: 640px) {
	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.site-footer__social {
	display: flex;
	gap: 22px;
}

.site-footer__social-link {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__social-icon {
	position: absolute;
	inset: 0;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer__social-icon--filled {
	opacity: 0;
}

.site-footer__social-link:hover .site-footer__social-icon--outline,
.site-footer__social-link:focus-visible .site-footer__social-icon--outline {
	opacity: 0;
}

.site-footer__social-link:hover .site-footer__social-icon--filled,
.site-footer__social-link:focus-visible .site-footer__social-icon--filled {
	opacity: 1;
	color: var(--color-white);
}

/* Inter Light 14px from Figma */
.site-footer__copy {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0;
	color: rgba(246, 241, 234, 0.55);
	/* cream at 55% on dark bg */
}

/* ============================================================
   GUIDE DETAIL PAGE (single-guide.php)
   ============================================================ */

.guide-page {
	padding-top: var(--header-h);
}

/* Breadcrumb */
.breadcrumb {
	background-color: var(--color-cream-light);
}

.breadcrumb__inner {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 24px var(--container-pad);
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.72px;
	text-transform: uppercase;
	color: var(--color-gray);
}

.breadcrumb__link {
	color: var(--color-gray);
	transition: color 0.2s ease;
}

.breadcrumb__link:hover {
	color: var(--color-dark);
}

.breadcrumb__sep {
	color: var(--color-gray-light);
}

.breadcrumb__current {
	color: var(--color-dark);
}

/* Guide Detail */
.guide-detail {
	background-color: var(--color-cream-light);
	padding: 48px 0 0;
}

.guide-detail__inner {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 0 var(--container-pad) 80px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.guide-detail__image-wrap {
	width: 100%;
}

.guide-detail__image {
	width: 100%;
	/* aspect-ratio: 4/3; */
	object-fit: cover;
}

.guide-detail__image-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background-color: var(--color-cream);
}

.guide-detail__info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.guide-detail__label {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-label);
	line-height: 1.2;
}

.guide-detail__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.5vw, 32px);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.guide-detail__desc {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.01em;
	color: #3a2e27;
}

.guide-detail__features {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 4px;
}

.guide-detail__feature-item {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.01em;
	color: #3a2e27;
	line-height: 1.4;
}

.guide-detail__price {
	font-family: var(--font-serif);
	font-size: 42px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.guide-detail__buy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.guide-detail__delivery {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.01em;
	color: #bfac96;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.guide-detail__inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 80px;
		padding-bottom: 100px;
	}

	.guide-detail__image-wrap {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.guide-detail__image,
	.guide-detail__image-placeholder {
		aspect-ratio: 3/4;
	}

	.guide-detail__info {
		flex: 1;
		position: sticky;
		top: var(--header-h);
	}
}

/* Guide Preview (Demo) */
.guide-preview {
	background-color: var(--color-cream-light);
	padding: 0 0 64px 0;
}

.guide-preview__inner {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 0 var(--container-pad);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.guide-preview__header {
	width: 100%;
	display: flex;
	justify-content: center;
}

.guide-preview__subtitle {
	margin-top: 4px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.4;
	letter-spacing: 0.16px;
	color: #bfac96;
}

.guide-preview__content {
	width: 100%;
	max-width: 600px;
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.guide-preview__slider {
	position: relative;
	width: 100%;
	max-width: 600px;
	border: 1px solid var(--color-cream-dark, #e5dcc9);
	overflow: hidden;
}

.guide-preview__track {
	display: flex;
	width: 100%;
	transition: transform 0.35s ease;
}

.guide-preview__slide {
	flex: 0 0 100%;
	max-width: 100%;
}

.guide-preview__page {
	display: block;
	width: 100%;
	max-width: 100%;
}

.guide-preview__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-cream-dark, #e5dcc9);
	border-radius: 50%;
	background-color: var(--color-cream-light);
	color: #bfac96;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.guide-preview__arrow:hover:not(:disabled) {
	color: #a8916f;
	background-color: #fff;
}

.guide-preview__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.guide-preview__arrow--prev {
	left: 8px;
}

.guide-preview__arrow--next {
	right: 8px;
}

.guide-preview__dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.guide-preview__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: rgba(191, 172, 150, 0.4);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.guide-preview__dot--active,
.guide-preview__dot:hover {
	background-color: #bfac96;
}

@media (min-width: 768px) {
	.guide-preview__arrow {
		width: 44px;
		height: 44px;
	}

	.guide-preview__arrow--prev {
		left: 16px;
	}

	.guide-preview__arrow--next {
		right: 16px;
	}
}

.guide-preview__buy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.guide-preview__delivery {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.01em;
	color: #bfac96;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.guide-preview {
		padding: 0 0 100px 0;
	}

	.guide-preview__content {
		margin-top: 64px;
	}
}

/* ============================================================
   LEGAL / TECHNICAL PAGES (page-legal.php)
   ============================================================ */

.legal-page,
.note-page {
	padding-top: var(--header-h);
	background-color: var(--color-cream-light);
}

.legal-page__wrapp {
	max-width: var(--container-w);
	margin-inline: auto;
}

.legal-page__inner {
	max-width: 720px;
	padding: 48px var(--container-pad) 80px;
}

.legal-page__header {
	padding-bottom: 32px;
}

.legal-page__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.legal-page__updated {
	margin-top: 16px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.01em;
	color: var(--color-green);
}

.legal-content {
	font-family: var(--font-sans);
	color: #3a2e27;
}

.legal-content>*:first-child {
	margin-top: 0;
}

.legal-content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.01em;
	margin: 0 0 16px;
}

.legal-content h2 {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 32px 0 16px;
}

.legal-content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
}

.legal-content li {
	position: relative;
	padding-left: 32px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4;
}

.legal-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	background-color: var(--color-green);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.legal-content a {
	color: var(--color-green);
	text-decoration: underline;
}

.legal-content strong,
.legal-content b {
	font-weight: 500;
}

.legal-page__note {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.01em;
	color: #899280;
}

@media (min-width: 768px) {
	.legal-page__inner {
		padding: 72px var(--container-pad) 100px;
	}

	.legal-page__header {
		padding-bottom: 40px;
	}
}

/* Guide CTA */
.guide-cta {
	position: relative;
	overflow: hidden;
	min-height: 580px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--color-dark-soft);
}

.guide-cta__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.guide-cta__overlay {
	position: absolute;
	inset: 0;
	background: #3a2e27;
	mix-blend-mode: multiply;
	opacity: 0.16;
}

.guide-cta__content {
	position: relative;
	z-index: 1;
	flex: 1;
	text-align: center;
	color: #f6f1ea;
	padding: 115px var(--container-pad) 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	width: 100%;
}

.guide-cta__eyebrow {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #efe7dc;
}

.guide-cta__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.1;
	color: #f6f1ea;
}

.guide-cta__title em {
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0.01em;
	text-transform: none;
}

.guide-cta__price {
	font-family: var(--font-serif);
	font-size: 42px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f6f1ea;
}

.guide-cta__buy {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	max-width: 333px;
}

.guide-cta__delivery {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.01em;
	color: #f6f1ea;
	line-height: 1.4;
	text-align: center;
}

.guide-cta__footer {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px var(--container-pad);
	border-top: 1px solid rgba(239, 231, 220, 0.2);
	margin-top: auto;
}

.guide-cta__social {
	display: flex;
	gap: 16px;
}

.guide-cta__social-link {
	color: #efe7dc;
	transition: opacity 0.2s;
}

.guide-cta__social-link:hover {
	opacity: 0.7;
}

.guide-cta__copy {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.72px;
	text-transform: uppercase;
	color: rgba(239, 231, 220, 0.6);
}

/* ============================================================
   PAYMENT PAGE
   ============================================================ */

.payment-page {
	padding-top: var(--header-h);
	background-color: var(--color-cream-light);
	min-height: 100vh;
}

.payment-page__inner {
	max-width: 1100px;
	margin-inline: auto;
	padding: 56px var(--container-pad) 80px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.payment-page__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.payment-page__subtitle {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	color: var(--color-gray);
	margin-bottom: 40px;
}

/* Payment Form */
.payment-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.payment-form__fieldset {
	border: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.payment-form__legend {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-gray);
	margin-bottom: 16px;
	padding: 0;
	width: 100%;
}

.payment-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.payment-form__label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	color: var(--color-dark);
	letter-spacing: 0.04em;
}

.payment-form__input {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	color: var(--color-dark);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 14px 16px;
	outline: none;
	transition: border-color 0.2s ease;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

.payment-form__input:focus {
	border-color: var(--color-dark);
}

.payment-form__input::placeholder {
	color: var(--color-gray-light);
}

.payment-form__card-wrap {
	position: relative;
}

.payment-form__input--card {
	padding-right: 56px;
}

.payment-form__card-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.payment-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.payment-form__hint {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 300;
	color: var(--color-gray);
	letter-spacing: 0.02em;
}

.payment-form__submit-wrap {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.payment-form__submit {
	font-size: 12px;
	padding: 16px 24px;
}

.payment-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.payment-form__secure {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 300;
	color: var(--color-gray);
	justify-content: center;
}

/* Order Summary */
.order-summary {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: fit-content;
}

.order-summary__title {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--color-dark);
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-border);
}

.order-summary__guide {
	display: flex;
	gap: 16px;
}

.order-summary__guide-img {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	overflow: hidden;
}

.order-summary__guide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.order-summary__guide-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.order-summary__guide-label {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-gray);
}

.order-summary__guide-name {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--color-dark);
}

.order-summary__guide-desc {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 300;
	color: var(--color-gray);
	line-height: 1.5;
}

.order-summary__features {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 4px;
}

.order-summary__features li {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 300;
	color: var(--color-dark);
	padding-left: 12px;
	position: relative;
}

.order-summary__features li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--color-gray-light);
}

.order-summary__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.order-summary__price {
	font-family: var(--font-serif);
	font-size: 28px;
	font-weight: 400;
}

.order-summary__empty {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 300;
	color: var(--color-gray);
}

.order-summary__trust {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border);
}

.order-summary__trust p {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 300;
	color: var(--color-gray);
	line-height: 1.5;
}

@media (min-width: 768px) {
	.payment-page__inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 64px;
	}

	.payment-page__form-wrap {
		flex: 1;
	}

	.payment-page__summary {
		flex: 0 0 340px;
		width: 340px;
	}
}

/* ============================================================
   DEFAULT PAGE
   ============================================================ */

.page-default {
	padding: calc(var(--header-h) + 60px) var(--container-pad) 80px;
}

.page-content__title {
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 400;
	color: var(--color-dark);
	margin-bottom: 32px;
}

.page-content__body {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--color-dark);
	max-width: 680px;
}

.page-content__body p {
	margin-bottom: 1em;
}

.page-content__body h2 {
	font-family: var(--font-serif);
	font-size: 28px;
	font-weight: 400;
	margin: 1.5em 0 0.5em;
}

.page-content__body a {
	color: var(--color-green);
	text-decoration: underline;
}

/* ============================================================
   NOTE SINGLE PAGE (single-note.php)
   ============================================================ */

.note-page {
	padding-left: 16px;
	background-color: var(--color-cream-light);
	padding-right: 16px;
	background-color: var(--color-cream-light);
}

.note {
	max-width: var(--container-w);
	margin-inline: auto;
	padding: 0 0 100px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.note__image-wrap {
	width: 100%;
	max-width: 720px;
	overflow: hidden;
}

.note__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.note__content {
	max-width: 720px;
	padding: 0 var(--container-pad) 100px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--color-dark);
}

.note__content p {
	margin-bottom: 1.25em;
}

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

.note_exerpt {
	color: #3A2E27;
	font-size: 16px;
	font-family: Inter;
	font-weight: 300;
	line-height: 22.40px;
	letter-spacing: 0.16px;
	word-wrap: break-word
}

.note h1 {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 2em 0 0.7em;
}

.note__content h2 {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 300;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-dark);
	margin: 1.75em 0 0.6em;
}

.note__content h3 {
	font-family: var(--font-serif);
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 300;
	letter-spacing: 0.04em;
	color: var(--color-dark);
	margin: 1.5em 0 0.5em;
}

.note__content ul,
.note__content ol {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 1.25em;
	padding-left: 1.25em;
}

.note__content ul li::before {
	content: '—';
	margin-right: 8px;
	color: var(--color-gray);
}

.note__content ol {
	counter-reset: note-counter;
}

.note__content ol li {
	counter-increment: note-counter;
}

.note__content ol li::before {
	content: counter(note-counter) '.';
	margin-right: 8px;
	color: var(--color-gray);
}

.note__content blockquote {
	border-left: 1px solid var(--color-border);
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	font-style: italic;
	color: #6b5a4e;
}

.note__content a {
	color: var(--color-green);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.note__content a:hover {
	color: var(--color-green-hover);
}

.note__content img {
	width: 100%;
	height: auto;
	display: block;
	margin: 2em 0;
}

.note__content figure {
	margin: 2em 0;
}

.note__content figcaption {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
}

.note__content figcaption .note__caption-desc {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.01em;
	font-style: italic;
	color: var(--color-gray);
	min-width: 0;
}

.note__content figcaption .note__caption-credit {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--color-gray);
}



/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

@media (min-width: 1024px) {
	:root {
		--container-pad: 48px;
	}
}

body.no-scroll {
	overflow: hidden;
}

/* ============================================================
   PAYMENT MODAL
   ============================================================ */

.payment-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.payment-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.payment-modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(43, 33, 27, 0.6);
}

.payment-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 540px;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	background-color: var(--color-cream-light);
	border: 1px solid var(--color-border);
	padding: 24px;
	transform: translateY(12px);
	transition: transform 0.25s ease;
}

.payment-modal.is-open .payment-modal__dialog {
	transform: translateY(0);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.payment-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--color-dark);
	background: none;
	border: none;
	cursor: pointer;
}

.payment-modal__close:hover {
	color: var(--color-green);
}

.payment-modal__label {
	color: #7A8471;
	font-size: 12px;
	font-family: Inter;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 14.40px;
	letter-spacing: 3px;
	word-wrap: break-word
}

.payment-modal__title {
	color: #2B211B;
	font-size: 32px;
	font-family: Fraunces;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2.56px;
	word-wrap: break-word;
	margin: 0;
}

.payment-modal__desc {
	color: #3A2E27;
	font-size: 16px;
	font-family: Inter;
	font-weight: 300;
	line-height: 22.40px;
	letter-spacing: 0.16px;
	word-wrap: break-word;
	margin: 0;
}

.payment-modal__summary {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 16px;
	background-color: #EFE7DC;
	margin: 0;
}

.payment-modal__summary-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background-color: var(--color-cream);
}

.payment-modal__summary-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.payment-modal__summary-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.payment-modal__summary-title {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.payment-modal__summary-meta {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 300;
	color: var(--color-dark);
	opacity: 0.7;
}

.payment-modal__summary-price {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.08em;
	color: var(--color-dark);
}

.payment-modal__divider {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 0;
}

.payment-modal__divider::before {
	content: '';
	flex-shrink: 0;
	width: 8px;
	height: 1px;
	background-color: var(--color-border);
}

.payment-modal__divider::after {
	content: '';
	flex: 1;
	min-width: 0;
	height: 1px;
	background-color: var(--color-border);
}

.payment-modal__divider-label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-dark);
	white-space: nowrap;
}

.payment-modal__step {
	display: none;
}

.payment-modal__step.is-active {
	display: block;
}

.payment-modal__form.is-active {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.payment-modal__form #payment-modal-email-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.payment-modal__checkout-status {
	font-family: var(--font-sans);
	font-size: 13px;
	color: var(--color-green);
	margin: 18px 0 0;
}

.payment-modal__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.payment-modal__field-label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-dark);
}

.payment-modal__field-input {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-sans);
	font-size: 15px;
	color: var(--color-dark);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
}

.payment-modal__field-input:focus-visible {
	outline: none;
	border-color: var(--color-green);
}

.payment-modal__field-input::placeholder {
	font-style: italic;
	color: var(--color-dark);
	opacity: 0.5;
}

.payment-modal__field-hint {
	color: #BFAC96;
	font-size: 12px;
	font-family: Inter;
	font-weight: 300;
	letter-spacing: 0.96px;
	word-wrap: break-word
}

.payment-modal__error {
	font-family: var(--font-sans);
	font-size: 13px;
	color: #B3462C;
	margin: 0;
}

.payment-modal__submit {
	position: relative;
}

.payment-modal__submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}


.payment-modal__success {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 12px 0 4px;
}

.payment-modal__success.is-active {
	display: flex;
}

.payment-modal__success-icon {
	color: var(--color-green);
	margin-bottom: 4px;
}

.payment-modal__success-title {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--color-dark);
	margin: 0;
}

.payment-modal__success-text {
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--color-dark);
	opacity: 0.7;
	margin: 0 0 12px;
}

.payment-modal__secure {
	font-family: var(--font-sans);
	font-size: 16px;
	font-style: italic;
	font-weight: 300;
	letter-spacing: 0.01em;
	text-align: center;
	color: var(--color-gray);
	margin: 0;
}

@media (min-width: 640px) {
	.payment-modal__dialog {
		padding: 24px;
	}

	.payment-modal__title {
		font-size: 30px;
	}
}

@media (min-width: 1280px) {
	:root {
		--container-pad: 64px;
	}
}