:root {
	--fw-ink: #18120f;
	--fw-paper: #f8f1e4;
	--fw-mist: #efe0c0;
	--fw-blush: #d8b35c;
	--fw-clay: #b61f18;
	--fw-moss: #1f4d5a;
	--fw-white: #fffdf8;
	--fw-line: rgba(24, 18, 15, 0.1);
	--fw-shadow: 0 22px 64px rgba(24, 18, 15, 0.1);
	--fw-shell: min(1120px, calc(100vw - 28px));
	--fw-radius-lg: 24px;
	--fw-radius-md: 18px;
	--fw-radius-sm: 14px;
	--fw-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--fw-display-font: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
	--fw-section-y: clamp(48px, 7vw, 96px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top right, rgba(216, 179, 92, 0.14), transparent 34%),
		radial-gradient(circle at top left, rgba(182, 31, 24, 0.06), transparent 24%),
		linear-gradient(180deg, var(--fw-paper) 0%, #fffaf2 42%, #f9f2e6 100%);
	color: var(--fw-ink);
	font-family: var(--fw-body-font);
	font-size: clamp(15px, 0.96vw, 17px);
	line-height: 1.65;
}

body.fw-nav-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

figure,
blockquote,
p,
h1,
h2,
h3,
ul,
ol {
	margin: 0;
}

.fw-shell {
	width: var(--fw-shell);
	margin-inline: auto;
}

.fw-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--fw-ink);
	color: var(--fw-white);
	transform: translateY(-180%);
	transition: transform 200ms ease;
}

.fw-skip-link:focus {
	transform: translateY(0);
}

.fw-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(24, 18, 15, 0.06);
	background:
		linear-gradient(180deg, rgba(248, 241, 228, 0.94) 0%, rgba(248, 241, 228, 0.88) 100%);
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 30px rgba(24, 18, 15, 0.04);
}

.fw-site-header::after,
.fw-site-footer::before {
	content: "";
	display: block;
	height: 2px;
	background:
		repeating-linear-gradient(
			90deg,
			rgba(182, 31, 24, 0.2) 0 14px,
			rgba(216, 179, 92, 0.2) 14px 28px,
			rgba(31, 77, 90, 0.14) 28px 42px
		);
	opacity: 0.4;
}

.fw-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 2vw, 20px);
	padding-block: 12px;
}

.fw-brand-mark {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	gap: clamp(10px, 1.6vw, 16px);
	min-width: 0;
	max-width: min(560px, calc(100% - 96px));
}

.fw-brand-mark--footer {
	display: inline-flex;
	flex: 0 0 auto;
	max-width: 100%;
	margin-bottom: 18px;
}

.fw-brand-mark__logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.fw-brand-mark__logo img,
.fw-brand-mark__image {
	width: auto;
	max-width: 168px;
	max-height: 68px;
	object-fit: contain;
}

.fw-brand-mark__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}

.fw-brand-mark__name {
	display: block;
	overflow: hidden;
	font-family: var(--fw-display-font);
	font-size: clamp(1.25rem, 2.2vw, 1.7rem);
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: 0.03em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fw-brand-mark__tagline {
	display: block;
	max-width: min(320px, 48vw);
	overflow: hidden;
	color: rgba(24, 18, 15, 0.72);
	font-size: clamp(0.58rem, 0.55vw, 0.68rem);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.fw-nav-toggle {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 12px;
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	background: var(--fw-white);
	color: var(--fw-ink);
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(182, 31, 24, 0.18);
}

.fw-nav-toggle__line {
	position: relative;
	width: 18px;
	height: 1px;
	background: currentColor;
	display: block;
}

.fw-nav-toggle__line::before,
.fw-nav-toggle__line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 1px;
	background: currentColor;
	transition: transform 200ms ease, top 200ms ease;
}

.fw-nav-toggle__line::before {
	top: -6px;
}

.fw-nav-toggle__line::after {
	top: 6px;
}

.fw-nav-toggle__label {
	font-size: clamp(0.64rem, 0.58vw, 0.72rem);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fw-primary-nav {
	display: none;
}

.fw-primary-nav.is-open {
	position: fixed;
	inset: 80px clamp(16px, 5vw, 30px) auto;
	display: block;
	max-height: calc(100vh - 110px);
	overflow-y: auto;
	border-radius: 28px;
	padding: 20px;
	background: rgba(255, 253, 248, 0.98);
	box-shadow: var(--fw-shadow);
}

.fw-primary-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fw-primary-nav__list a {
	display: block;
	padding-block: 8px;
	color: rgba(24, 18, 15, 0.82);
	font-size: clamp(0.68rem, 0.62vw, 0.78rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: color 180ms ease, opacity 180ms ease;
}

.fw-primary-nav__list a:hover,
.fw-primary-nav__list a:focus-visible {
	color: var(--fw-clay);
}

.fw-announcement {
	border-bottom: 1px solid rgba(216, 179, 92, 0.25);
	background: linear-gradient(90deg, #120d0b 0%, #24110e 62%, #4d1714 100%);
	color: var(--fw-white);
}

.fw-announcement__inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-block: 14px;
}

.fw-announcement__text,
.fw-announcement__link {
	font-size: clamp(0.64rem, 0.6vw, 0.74rem);
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fw-announcement__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #f4d98f;
}

.fw-announcement__link::after,
.fw-text-link::after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 1px;
	background: currentColor;
}

.fw-hero {
	padding-block: clamp(38px, 5vw, 72px) var(--fw-section-y);
}

.fw-hero__grid {
	display: grid;
	gap: clamp(32px, 4vw, 52px);
	align-items: center;
}

.fw-hero__copy {
	max-width: 600px;
}

.fw-section-kicker,
.fw-card-meta,
.fw-section-kicker--light {
	font-size: clamp(0.64rem, 0.6vw, 0.76rem);
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1.4;
	text-transform: uppercase;
}

.fw-section-kicker,
.fw-card-meta {
	color: var(--fw-clay);
}

.fw-section-kicker--light {
	color: #f4d98f;
}

.fw-hero__title,
.fw-section-title,
.fw-page-hero__title,
.fw-gift-chapter__title {
	margin-top: 14px;
	color: var(--fw-ink);
	font-family: var(--fw-display-font);
	font-size: clamp(2.1rem, 7vw, 4rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.fw-section-title,
.fw-gift-chapter__title,
.fw-page-hero__title {
	font-size: clamp(1.95rem, 5.4vw, 3.25rem);
}

.fw-hero__text,
.fw-section-text,
.fw-page-hero__text,
.fw-pathway-card__text,
.fw-object-card__text,
.fw-journal-card__text,
.fw-gift-chapter__text,
.fw-site-footer__copy,
.fw-craft-note {
	margin-top: 16px;
	max-width: 620px;
	color: rgba(24, 18, 15, 0.78);
	font-size: clamp(0.92rem, 1.4vw, 1rem);
	line-height: 1.92;
}

.fw-hero__text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.fw-button,
.fw-text-link,
.fw-announcement__link {
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.fw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	border-radius: 999px;
	padding: 14px 28px;
	font-size: clamp(0.64rem, 0.58vw, 0.74rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.fw-button--primary {
	background: var(--fw-ink);
	color: var(--fw-white);
}

.fw-button--ghost {
	box-shadow: inset 0 0 0 1px rgba(182, 31, 24, 0.16);
	background: rgba(255, 253, 248, 0.84);
	color: var(--fw-ink);
}

.fw-button--soft {
	margin-top: 24px;
	background: var(--fw-mist);
	color: var(--fw-ink);
}

.fw-button--light {
	margin-top: 24px;
	background: var(--fw-white);
	color: var(--fw-ink);
}

.fw-button:hover,
.fw-text-link:hover,
.fw-announcement__link:hover {
	transform: translateY(-2px);
}

.fw-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
}

.fw-hero__figure,
.fw-story-chapter__figure,
.fw-craft-chapter__figure,
.fw-gift-chapter__figure,
.fw-single-story__figure {
	border-radius: var(--fw-radius-lg);
	overflow: clip;
	background: linear-gradient(180deg, #f3e6ca 0%, #ead7b0 100%);
	box-shadow: 0 20px 54px rgba(24, 18, 15, 0.09);
}

.fw-hero__image,
.fw-story-chapter__figure img,
.fw-craft-chapter__figure img,
.fw-gift-chapter__figure img,
.fw-single-story__figure img {
	width: 100%;
	object-fit: cover;
}

.fw-hero__image {
	aspect-ratio: 5 / 4;
}

.fw-hero__caption {
	padding: 18px 20px 22px;
	color: rgba(24, 18, 15, 0.7);
	background: rgba(255, 253, 248, 0.9);
	font-size: clamp(0.76rem, 0.7vw, 0.88rem);
	line-height: 1.78;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.fw-pathways,
.fw-featured-objects,
.fw-journal-chapter {
	padding-bottom: var(--fw-section-y);
}

.fw-pathways__grid,
.fw-featured-objects__grid,
.fw-journal-grid,
.fw-archive-list__grid {
	display: grid;
	gap: clamp(20px, 2vw, 28px);
}

.fw-pathway-card,
.fw-object-card,
.fw-journal-card {
	overflow: clip;
	border-radius: var(--fw-radius-md);
	background: rgba(255, 253, 248, 0.9);
	box-shadow: inset 0 0 0 1px var(--fw-line), 0 18px 48px rgba(24, 18, 15, 0.04);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.fw-pathway-card:hover,
.fw-object-card:hover,
.fw-journal-card:hover {
	transform: translateY(-4px);
	box-shadow: inset 0 0 0 1px rgba(182, 31, 24, 0.12), 0 26px 70px rgba(24, 18, 15, 0.08);
}

.fw-pathway-card__media img,
.fw-object-card__media img,
.fw-journal-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: var(--fw-mist);
	transition: transform 400ms ease;
}

.fw-pathway-card:hover .fw-pathway-card__media img,
.fw-object-card:hover .fw-object-card__media img,
.fw-journal-card:hover .fw-journal-card__media img {
	transform: scale(1.03);
}

.fw-pathway-card__body,
.fw-object-card__body,
.fw-journal-card__body {
	padding: clamp(18px, 2.8vw, 24px);
}

.fw-pathway-card__title,
.fw-object-card__title,
.fw-journal-card__title {
	margin-top: 10px;
	font-family: var(--fw-display-font);
	font-size: clamp(1.65rem, 4.5vw, 2.4rem);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.03em;
}

.fw-object-card__title,
.fw-journal-card__title {
	font-size: clamp(1.6rem, 3.8vw, 2.2rem);
}

.fw-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	color: var(--fw-clay);
	font-size: clamp(0.64rem, 0.58vw, 0.74rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fw-story-chapter,
.fw-craft-chapter,
.fw-page-hero,
.fw-archive-list,
.fw-page-body,
.fw-single-story {
	padding-bottom: var(--fw-section-y);
}

.fw-story-chapter__grid,
.fw-craft-chapter__grid {
	display: grid;
	gap: clamp(32px, 4vw, 52px);
	align-items: center;
	padding-block: var(--fw-section-y);
	border-top: 1px solid var(--fw-line);
}

.fw-story-chapter__figure img,
.fw-craft-chapter__figure img,
.fw-gift-chapter__figure img {
	aspect-ratio: 5 / 4;
}

.fw-story-chapter__copy,
.fw-craft-chapter__copy,
.fw-gift-chapter__copy {
	max-width: 560px;
}

.fw-story-quote {
	margin-top: 28px;
	padding: 24px 26px;
	border-left: 2px solid rgba(182, 31, 24, 0.55);
	background: rgba(255, 253, 248, 0.66);
	border-radius: 0 var(--fw-radius-sm) var(--fw-radius-sm) 0;
}

.fw-story-quote p {
	font-family: var(--fw-display-font);
	font-size: clamp(1.6rem, 3.8vw, 2.1rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.fw-section-head,
.fw-journal-chapter__header {
	margin-bottom: 24px;
}

.fw-craft-chapter {
	background: linear-gradient(180deg, transparent 0%, rgba(239, 224, 192, 0.38) 100%);
}

.fw-craft-note {
	padding-top: 20px;
	border-top: 1px solid var(--fw-line);
	color: var(--fw-moss);
}

.fw-gift-chapter {
	padding-bottom: var(--fw-section-y);
}

.fw-gift-chapter__panel {
	display: grid;
	gap: clamp(30px, 4vw, 52px);
	padding: clamp(28px, 4vw, 56px);
	border-radius: var(--fw-radius-lg);
	background:
		radial-gradient(circle at top right, rgba(216, 179, 92, 0.16), transparent 30%),
		linear-gradient(180deg, #120d0b 0%, #25110f 48%, #401210 100%);
	color: var(--fw-white);
}

.fw-gift-chapter__title,
.fw-gift-chapter__text {
	color: var(--fw-white);
}

.fw-gift-chapter__text {
	max-width: 520px;
	color: rgba(255, 253, 248, 0.8);
}

.fw-gift-note {
	margin-top: 24px;
	padding: 22px 24px;
	border-radius: var(--fw-radius-sm);
	background: rgba(255, 253, 248, 0.08);
	box-shadow: inset 0 0 0 1px rgba(244, 217, 143, 0.16);
}

.fw-gift-note__title {
	color: #f4d98f;
	font-size: clamp(0.64rem, 0.58vw, 0.74rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.fw-gift-note__text {
	margin-top: 10px;
	color: rgba(255, 253, 248, 0.8);
	line-height: 1.9;
}

.fw-gift-chapter__figure {
	box-shadow: none;
}

.fw-journal-chapter__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.fw-journal-feature {
	display: grid;
	gap: 24px;
	overflow: clip;
	margin-bottom: clamp(32px, 5vw, 56px);
	border-radius: var(--fw-radius-lg);
	background: rgba(255, 253, 248, 0.9);
	box-shadow: inset 0 0 0 1px var(--fw-line), 0 18px 48px rgba(24, 18, 15, 0.04);
}

.fw-journal-feature__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.fw-journal-feature__body {
	padding: 0 clamp(22px, 3vw, 36px) clamp(24px, 3vw, 40px);
}

.fw-journal-feature__title {
	margin-top: 14px;
}

.fw-journal-list-head {
	margin-bottom: 28px;
}

.fw-page-hero {
	padding-top: clamp(28px, 4.5vw, 56px);
}

.fw-page-hero__inner {
	max-width: 680px;
}

.fw-archive-list__grid {
	grid-template-columns: minmax(0, 1fr);
}

.fw-pagination-wrap {
	margin-top: 28px;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding-inline: 14px;
	border-radius: 999px;
	background: var(--fw-white);
	box-shadow: inset 0 0 0 1px var(--fw-line);
	font-size: clamp(0.68rem, 0.62vw, 0.8rem);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.page-numbers.current {
	background: var(--fw-ink);
	color: var(--fw-white);
	box-shadow: none;
}

.fw-single-story__figure {
	margin-bottom: 32px;
}

.fw-single-story__figure img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.fw-rich-text {
	max-width: 760px;
}

.fw-rich-text > * + * {
	margin-top: 1.5em;
}

.fw-rich-text p,
.fw-rich-text li {
	color: rgba(24, 18, 15, 0.82);
	font-size: clamp(0.95rem, 1.4vw, 1rem);
	line-height: 1.95;
}

.fw-rich-text h2,
.fw-rich-text h3,
.fw-rich-text h4 {
	margin-top: 1.4em;
	font-family: var(--fw-display-font);
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.fw-rich-text h2 {
	font-size: clamp(1.95rem, 4.8vw, 2.7rem);
}

.fw-rich-text h3 {
	font-size: clamp(1.7rem, 4vw, 2.15rem);
}

.fw-rich-text a {
	color: var(--fw-clay);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.fw-empty-state {
	padding: 22px;
	border-radius: var(--fw-radius-sm);
	background: var(--fw-mist);
	color: rgba(24, 18, 15, 0.78);
}

.fw-site-footer {
	padding-block: 0 24px;
	border-top: 1px solid var(--fw-line);
	background: rgba(255, 250, 242, 0.84);
}

.fw-site-footer__grid {
	padding-top: 40px;
}

.fw-site-footer__grid,
.fw-site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fw-site-footer__brand,
.fw-site-footer__meta {
	max-width: 460px;
}

.fw-site-footer__meta p,
.fw-site-footer__meta a,
.fw-site-footer__bottom p,
.fw-site-footer__bottom a {
	color: rgba(24, 18, 15, 0.78);
	font-size: clamp(0.82rem, 0.76vw, 0.96rem);
	line-height: 1.8;
}

.fw-site-footer__bottom {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--fw-line);
}

.fw-inner-hero {
	padding-block: clamp(36px, 6vw, 82px) var(--fw-section-y);
}

.fw-inner-hero__grid {
	display: grid;
	gap: clamp(30px, 4vw, 54px);
	align-items: center;
}

.fw-inner-hero__copy {
	max-width: 640px;
}

.fw-inner-hero__title {
	margin-top: 14px;
	font-family: var(--fw-display-font);
	font-size: clamp(2.3rem, 7vw, 4.5rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.fw-inner-hero__text {
	margin-top: 16px;
	max-width: 620px;
	color: rgba(24, 18, 15, 0.78);
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.92;
}

.fw-inner-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 26px;
}

.fw-inner-hero__figure,
.fw-inner-feature__figure {
	overflow: clip;
	border-radius: var(--fw-radius-lg);
	background: linear-gradient(180deg, #f3e6ca 0%, #ead7b0 100%);
	box-shadow: 0 20px 54px rgba(24, 18, 15, 0.09);
}

.fw-inner-hero__figure img,
.fw-inner-feature__figure img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.fw-inner-cards,
.fw-inner-feature,
.fw-inner-cta,
.fw-generic-page {
	padding-bottom: var(--fw-section-y);
}

.fw-inner-cards__grid {
	display: grid;
	gap: clamp(20px, 2vw, 28px);
}

.fw-inner-feature__grid {
	display: grid;
	gap: clamp(32px, 4vw, 52px);
	align-items: center;
	padding-top: var(--fw-section-y);
	border-top: 1px solid var(--fw-line);
}

.fw-inner-feature__copy {
	max-width: 620px;
}

.fw-inner-feature__content {
	margin-top: 22px;
}

.fw-inner-feature__quote {
	margin-top: 28px;
}

.fw-inner-cta__panel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	padding: clamp(28px, 4vw, 56px);
	border-radius: var(--fw-radius-lg);
	background:
		radial-gradient(circle at top right, rgba(216, 179, 92, 0.16), transparent 30%),
		linear-gradient(180deg, #120d0b 0%, #25110f 48%, #401210 100%);
	color: var(--fw-white);
}

.fw-inner-cta__copy {
	max-width: 720px;
}

.fw-inner-cta__title {
	max-width: 720px;
}

.fw-generic-page__panel {
	max-width: 860px;
	padding: clamp(24px, 4vw, 44px);
	border-radius: var(--fw-radius-lg);
	background: rgba(255, 253, 248, 0.82);
	box-shadow: inset 0 0 0 1px var(--fw-line), 0 18px 48px rgba(24, 18, 15, 0.04);
}

.fw-generic-page__panel > .fw-section-kicker {
	margin-bottom: 18px;
}

@media (min-width: 640px) {
	.fw-hero__actions,
	.fw-inner-hero__actions,
	.fw-announcement__inner,
	.fw-site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.fw-button {
		width: auto;
	}
}

@media (max-width: 639px) {
	.fw-brand-mark {
		max-width: calc(100% - 74px);
	}

	.fw-brand-mark__logo img,
	.fw-brand-mark__image {
		max-width: 112px;
		max-height: 48px;
	}

	.fw-brand-mark__name {
		font-size: clamp(1.18rem, 5vw, 1.35rem);
	}

	.fw-brand-mark__tagline {
		max-width: min(180px, 42vw);
		letter-spacing: 0.14em;
	}

	.fw-primary-nav.is-open {
		inset: 76px 14px auto;
		max-height: calc(100dvh - 96px);
	}
}

@media (min-width: 760px) {
	.fw-pathways__grid,
	.fw-featured-objects__grid,
	.fw-journal-grid,
	.fw-archive-list__grid,
	.fw-inner-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fw-journal-chapter__header,
	.fw-site-footer__grid {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	:root {
		--fw-shell: min(1120px, 74vw);
	}

	.fw-nav-toggle {
		display: none;
	}

	.fw-primary-nav,
	.fw-primary-nav.is-open {
		position: static;
		display: block;
		max-height: none;
		padding: 0;
		overflow: visible;
		background: transparent;
		box-shadow: none;
	}

	.fw-primary-nav__list {
		flex-direction: row;
		align-items: center;
		gap: clamp(18px, 1.8vw, 36px);
	}

	.fw-hero__grid,
	.fw-inner-hero__grid,
	.fw-journal-feature,
	.fw-story-chapter__grid,
	.fw-craft-chapter__grid,
	.fw-gift-chapter__panel,
	.fw-inner-feature__grid {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
	}

	.fw-story-chapter__grid {
		grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
	}

	.fw-journal-feature__body {
		padding: clamp(28px, 4vw, 48px);
	}

	.fw-craft-chapter__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
	}

	.fw-pathways__grid,
	.fw-featured-objects__grid,
	.fw-journal-grid,
	.fw-archive-list__grid,
	.fw-inner-cards__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fw-inner-cta__panel {
		flex-direction: row;
		align-items: end;
		justify-content: space-between;
	}
}

@media (min-width: 1440px) {
	:root {
		--fw-shell: min(1180px, 66vw);
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
