: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;
}


/* Homepage hero overlay redesign */
.fw-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: clamp(620px, 92vh, 960px);
	padding-block: clamp(64px, 8vh, 112px) clamp(96px, 12vh, 160px);
	overflow: hidden;
	background: #120d0b;
	color: var(--fw-white);
}

.fw-hero__bg,
.fw-hero__overlay,
.fw-hero__fade {
	position: absolute;
	inset: 0;
}

.fw-hero__bg {
	z-index: -3;
	background-color: #120d0b;
	background-image:
		radial-gradient(circle at 82% 18%, rgba(182, 31, 24, 0.24), transparent 20%),
		radial-gradient(circle at 75% 28%, rgba(216, 179, 92, 0.16), transparent 24%);
	background-size: cover;
	background-position: center center;
	transform: scale(1.03);
}

.fw-hero__overlay {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(10, 8, 7, 0.86) 0%, rgba(10, 8, 7, 0.72) 34%, rgba(10, 8, 7, 0.44) 58%, rgba(10, 8, 7, 0.22) 100%),
		linear-gradient(180deg, rgba(10, 8, 7, 0.12) 0%, rgba(10, 8, 7, 0.34) 100%);
}

.fw-hero__fade {
	z-index: -1;
	background: linear-gradient(180deg, rgba(18, 13, 11, 0) 72%, rgba(18, 13, 11, 0.34) 84%, rgba(248, 241, 228, 0.92) 100%);
}

.fw-hero__container {
	position: relative;
	width: 100%;
}

.fw-hero__copy {
	position: relative;
	z-index: 1;
	max-width: min(66vw, 820px);
	width: min(66vw, 100%);
	padding-right: clamp(12px, 2vw, 28px);
}

.fw-hero__title {
	max-width: 13ch;
	color: var(--fw-white);
	font-size: clamp(3.15rem, 7.4vw, 6rem);
}

.fw-hero__text {
	margin-top: 22px;
	max-width: min(60vw, 720px);
	color: rgba(255, 253, 248, 0.88);
	font-size: clamp(1rem, 1.42vw, 1.12rem);
	line-height: 1.86;
	-webkit-line-clamp: 4;
}

.fw-hero__actions {
	gap: 14px;
	margin-top: 30px;
}

.fw-button--ghost-light {
	box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.24);
	background: rgba(255, 253, 248, 0.08);
	color: var(--fw-white);
	backdrop-filter: blur(8px);
}

.fw-button--ghost-light:hover,
.fw-button--ghost-light:focus-visible {
	background: rgba(255, 253, 248, 0.14);
}

.fw-hero__support {
	margin-top: 22px;
	max-width: min(54vw, 620px);
	color: rgba(255, 253, 248, 0.72);
	font-size: clamp(0.82rem, 0.86vw, 0.95rem);
	line-height: 1.8;
}

.fw-pathways {
	position: relative;
	z-index: 1;
	padding-top: clamp(16px, 3vw, 36px);
}

.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 (max-width: 639px) {
	.fw-hero {
		align-items: flex-end;
		min-height: clamp(640px, 92svh, 780px);
		padding-block: clamp(52px, 8svh, 84px) clamp(72px, 12svh, 110px);
	}

	.fw-hero__bg {
		background-position: 64% center;
		transform: scale(1.04);
	}

	.fw-hero__overlay {
		background:
			linear-gradient(180deg, rgba(10, 8, 7, 0.24) 0%, rgba(10, 8, 7, 0.44) 30%, rgba(10, 8, 7, 0.74) 72%, rgba(10, 8, 7, 0.88) 100%),
			linear-gradient(90deg, rgba(10, 8, 7, 0.42) 0%, rgba(10, 8, 7, 0.08) 100%);
	}

	.fw-hero__fade {
		background: linear-gradient(180deg, rgba(18, 13, 11, 0) 76%, rgba(248, 241, 228, 0.96) 100%);
	}

	.fw-hero__copy {
		max-width: 100%;
		width: 100%;
		padding-right: 0;
	}

	.fw-hero__title {
		max-width: 10ch;
		font-size: clamp(2.4rem, 10.8vw, 4rem);
	}

	.fw-hero__text,
	.fw-hero__support {
		max-width: 100%;
	}

	.fw-hero__text {
		margin-top: 16px;
		font-size: 0.97rem;
		line-height: 1.76;
		-webkit-line-clamp: 5;
	}

	.fw-hero__actions {
		align-items: stretch;
		gap: 10px;
		margin-top: 22px;
	}

	.fw-hero__actions .fw-button {
		width: 100%;
	}

	.fw-hero__support {
		margin-top: 16px;
		font-size: 0.82rem;
		line-height: 1.72;
	}

	.fw-pathways {
		padding-top: 22px;
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	:root {
		--fw-shell: min(1160px, calc(100vw - 48px));
	}

	.fw-hero {
		min-height: clamp(700px, 82vh, 860px);
		padding-block: clamp(72px, 8vw, 96px) clamp(90px, 10vw, 132px);
	}

	.fw-hero__bg {
		background-position: 58% center;
	}

	.fw-hero__overlay {
		background:
			linear-gradient(90deg, rgba(10, 8, 7, 0.8) 0%, rgba(10, 8, 7, 0.64) 42%, rgba(10, 8, 7, 0.32) 72%, rgba(10, 8, 7, 0.14) 100%),
			linear-gradient(180deg, rgba(10, 8, 7, 0.14) 0%, rgba(10, 8, 7, 0.3) 100%);
	}

	.fw-hero__copy {
		max-width: min(72vw, 680px);
		width: min(72vw, 100%);
	}

	.fw-hero__title {
		max-width: 11ch;
		font-size: clamp(3rem, 7vw, 4.8rem);
	}

	.fw-hero__text {
		max-width: min(68vw, 620px);
		font-size: clamp(1rem, 1.8vw, 1.08rem);
		-webkit-line-clamp: 4;
	}

	.fw-hero__support {
		max-width: min(62vw, 560px);
	}

	.fw-pathways {
		padding-top: clamp(20px, 4vw, 32px);
	}
}

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

	.fw-hero {
		min-height: clamp(720px, 90vh, 980px);
		padding-block: clamp(72px, 8vh, 112px) clamp(110px, 14vh, 172px);
	}

	.fw-hero__copy {
		max-width: min(66vw, 860px);
		width: min(66vw, 100%);
	}

	.fw-pathways {
		padding-top: clamp(20px, 2.6vw, 34px);
	}
}

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

	.fw-hero__copy {
		max-width: min(62vw, 900px);
		width: min(62vw, 100%);
	}
}

@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;
	}
}

/* --------------------------------------------------------------
   Homepage refresh aligned to website reference package
-------------------------------------------------------------- */

body.home {
	background:
		radial-gradient(circle at 52% 18%, rgba(161, 58, 9, 0.32), transparent 17%),
		radial-gradient(circle at 58% 15%, rgba(231, 187, 43, 0.16), transparent 10%),
		linear-gradient(180deg, #040406 0%, #060607 48%, #030406 100%);
	color: #f2eadf;
}

body.home .fw-site-main {
	overflow: clip;
}

.fw-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(237, 200, 112, 0.14);
	background: rgba(3, 3, 5, 0.9);
	backdrop-filter: blur(16px);
	box-shadow: none;
}

.fw-site-header::after,
.fw-site-footer::before {
	display: none;
}

.fw-site-header__inner {
	padding-block: 18px;
	min-height: 82px;
}

.fw-brand-mark {
	max-width: min(320px, calc(100% - 96px));
}

.fw-brand-mark__wordmark {
	display: block;
	width: auto;
	height: clamp(28px, 2.8vw, 42px);
	max-width: min(230px, 60vw);
	object-fit: contain;
}

.fw-brand-mark__name,
.fw-brand-mark__tagline {
	color: #f3eadf;
}

.fw-brand-mark__logo img,
.fw-brand-mark__image {
	max-height: 50px;
	filter: brightness(1.05) contrast(1.02);
}

.fw-nav-toggle {
	background: rgba(10, 10, 12, 0.88);
	color: #f3eadf;
	box-shadow: inset 0 0 0 1px rgba(237, 200, 112, 0.32);
}

.fw-nav-toggle__label,
.fw-primary-nav__list a,
.fw-site-footer__menu a {
	letter-spacing: 0.08em;
}

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

.fw-primary-nav.is-open {
	inset: 86px 16px auto;
	border: 1px solid rgba(237, 200, 112, 0.16);
	background: rgba(9, 9, 12, 0.98);
}

.fw-primary-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fw-primary-nav__list a {
	color: rgba(243, 234, 223, 0.92);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.fw-primary-nav__list a:hover,
.fw-primary-nav__list a:focus-visible,
.fw-site-footer__menu a:hover,
.fw-site-footer__menu a:focus-visible {
	color: #f6d621;
}

.fw-home-hero {
	position: relative;
	padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 7vw, 84px);
}

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

.fw-home-hero__copy {
	order: 2;
	max-width: 48rem;
}

.fw-home-hero__visual {
	position: relative;
	order: 1;
	display: grid;
	place-items: center;
	min-height: min(52vw, 430px);
}

.fw-home-hero__glow {
	position: absolute;
	inset: 12% 18% 22%;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(204, 78, 18, 0.58) 0%, rgba(204, 78, 18, 0.24) 32%, rgba(246, 214, 33, 0.18) 44%, transparent 72%);
	filter: blur(16px);
	pointer-events: none;
}

.fw-home-hero__mark {
	position: relative;
	z-index: 1;
	width: min(100%, 360px);
	max-height: 54vh;
	object-fit: contain;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.42));
}

.fw-home-kicker,
.fw-home-section__kicker {
	margin-bottom: 18px;
	color: #f6d621;
	font-size: clamp(0.9rem, 1vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fw-home-hero__title {
	--fw-home-hero-title-lh: 1.04;
	--fw-home-hero-title-lines: 3;
	margin: 0;
	display: block;
	max-width: min(100%, 12.4ch);
	min-height: calc((var(--fw-home-hero-title-lines) * var(--fw-home-hero-title-lh) * 1em) + 0.08em);
	color: #f0eae0;
	font-family: var(--fw-body-font);
	font-size: clamp(2.8rem, 6.3vw, 5.55rem);
	font-weight: 800;
	line-height: var(--fw-home-hero-title-lh);
	letter-spacing: 0.006em;
	text-transform: uppercase;
	text-wrap: balance;
	overflow-wrap: normal;
	word-break: keep-all;
	hyphens: none;
}

.fw-home-hero__break {
	display: block;
}

.fw-home-hero__text,
.fw-home-card__text,
.fw-home-journal__text,
.fw-site-footer__copy {
	color: rgba(220, 201, 180, 0.86);
	font-size: clamp(1rem, 1.45vw, 1.28rem);
	line-height: 1.55;
}

.fw-home-hero__text {
	max-width: 690px;
	margin-top: 22px;
}

.fw-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}

body.home .fw-button {
	min-height: 58px;
	padding: 16px 28px;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

body.home .fw-button--primary {
	background: #f6d621;
	color: #09090b;
}

body.home .fw-button--ghost,
body.home .fw-button--soft {
	background: transparent;
	color: #f3eadf;
	box-shadow: inset 0 0 0 1px #f6d621;
}

body.home .fw-button--soft {
	margin-top: 0;
}

body.home .fw-button:hover,
body.home .fw-button:focus-visible {
	transform: translateY(-2px);
}

.fw-home-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
	max-width: 760px;
}

.fw-home-stat {
	padding: 20px 22px;
	border: 1px solid rgba(150, 108, 39, 0.48);
	border-radius: 22px;
	background: rgba(10, 12, 18, 0.8);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.fw-home-stat__label {
	margin: 0 0 8px;
	color: rgba(197, 175, 149, 0.9);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fw-home-stat__value {
	margin: 0;
	color: #f0eae0;
	font-size: clamp(1.15rem, 1.8vw, 1.55rem);
	font-weight: 700;
	line-height: 1.2;
}

.fw-home-section {
	padding: 0 0 clamp(54px, 8vw, 96px);
}

.fw-home-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.fw-home-card {
	min-width: 0;
}

.fw-home-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(150, 108, 39, 0.48);
	border-radius: 28px;
	background: rgba(8, 10, 15, 0.92);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.fw-home-card__link:hover,
.fw-home-card__link:focus-visible {
	transform: translateY(-4px);
}

.fw-home-card__media {
	position: relative;
	aspect-ratio: 16 / 8;
	background: #09090b;
	overflow: hidden;
}

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

.fw-home-card__media-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 22%, rgba(223, 96, 23, 0.22) 0%, rgba(223, 96, 23, 0.08) 14%, transparent 30%),
		linear-gradient(180deg, rgba(8, 8, 10, 0.10), rgba(8, 8, 10, 0.32));
	pointer-events: none;
}


.fw-home-card__body {
	padding: 22px 22px 24px;
}

.fw-home-card__title,
.fw-home-journal__title {
	margin: 0;
	color: #f0eae0;
	font-family: var(--fw-body-font);
	font-size: clamp(1.7rem, 2.4vw, 2.2rem);
	font-weight: 800;
	line-height: 1.08;
}

.fw-home-card__text {
	margin-top: 10px;
	font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.fw-home-journal__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(180px, 0.75fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid rgba(150, 108, 39, 0.48);
	border-radius: 32px;
	background: rgba(8, 10, 15, 0.9);
}

.fw-home-journal__text {
	max-width: 760px;
	margin-top: 14px;
	font-size: clamp(1rem, 1.28vw, 1.2rem);
}

.fw-home-journal__copy .fw-button {
	margin-top: 24px;
}

.fw-home-journal__mark-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fw-home-journal__mark {
	width: min(180px, 100%);
	opacity: 0.96;
	filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.4));
}

.fw-site-footer {
	padding: 42px 0;
	border-top: 1px solid rgba(150, 108, 39, 0.32);
	background: #040507;
	color: #f3eadf;
}

.fw-site-footer__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.fw-site-footer__brand {
	max-width: 520px;
}

.fw-site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.fw-site-footer__wordmark {
	display: block;
	height: clamp(34px, 3vw, 48px);
	width: auto;
	max-width: min(260px, 72vw);
}

.fw-site-footer__brand-text {
	color: #f3eadf;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.fw-site-footer__copy {
	margin-top: 16px;
	font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.fw-site-footer__nav {
	margin-left: auto;
}

.fw-site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fw-site-footer__menu a {
	color: rgba(220, 201, 180, 0.9);
	font-size: clamp(0.98rem, 1.05vw, 1.12rem);
}

@media (min-width: 1024px) {
	.fw-nav-toggle {
		display: none;
	}

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

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

	.fw-primary-nav__list {
		display: flex;
		align-items: center;
		gap: clamp(16px, 2vw, 34px);
	}

	.fw-home-hero__grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	}

	.fw-home-hero__copy {
		order: 1;
	}

	.fw-home-hero__visual {
		order: 2;
		min-height: 500px;
	}

	.fw-home-hero__mark {
		width: min(100%, 510px);
	}
}

@media (max-width: 1023px) {
	.fw-site-header__inner {
		min-height: 72px;
	}

	.fw-home-hero {
		padding-top: 18px;
	}

	.fw-home-hero__stats,
	.fw-home-cards,
	.fw-home-journal__panel,
	.fw-site-footer__grid {
		grid-template-columns: 1fr;
	}

	.fw-home-cards {
		display: grid;
	}

	.fw-site-footer__grid {
		display: grid;
	}

	.fw-site-footer__nav {
		margin-left: 0;
	}

	.fw-site-footer__menu {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.fw-shell {
		width: min(calc(100vw - 32px), 1200px);
	}

	.fw-brand-mark__wordmark {
		height: 26px;
	}

	.fw-home-hero__visual {
		min-height: 280px;
		padding-top: 8px;
	}

	.fw-home-hero__mark {
		width: min(100%, 290px);
	}

	.fw-home-hero__title {
		max-width: 9ch;
		font-size: clamp(2.2rem, 10.5vw, 3.55rem);
		line-height: 1.03;
		letter-spacing: 0.015em;
	}

	.fw-home-hero__break {
		display: none;
	}

	.fw-home-hero__text,
	.fw-home-card__text,
	.fw-home-journal__text,
	.fw-site-footer__copy {
		font-size: 1rem;
	}

	.fw-home-hero__actions {
		gap: 14px;
	}

	body.home .fw-button {
		flex: 1 1 calc(50% - 7px);
		min-width: 0;
		min-height: 56px;
		padding-inline: 16px;
		font-size: 0.92rem;
	}

	.fw-home-hero__stats {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fw-home-stat {
		padding: 18px 18px;
	}

	.fw-home-cards {
		gap: 18px;
	}

	.fw-home-card__link {
		border-radius: 24px;
	}

	.fw-home-card__media {
		aspect-ratio: auto;
		min-height: 126px;
	}

	.fw-home-card__body {
		padding: 20px;
	}

	.fw-home-card__title,
	.fw-home-journal__title {
		font-size: clamp(1.6rem, 7vw, 2.2rem);
	}

	.fw-home-journal__panel {
		padding: 24px 20px;
		border-radius: 26px;
	}

	.fw-home-journal__mark {
		width: 120px;
	}

	.fw-site-footer {
		padding: 34px 0;
	}

	.fw-site-footer__menu {
		gap: 14px 20px;
	}
}

@media (max-width: 479px) {
	.fw-home-hero__title {
		max-width: 8.5ch;
		font-size: clamp(2rem, 10vw, 2.9rem);
		line-height: 1.05;
	}

	body.home .fw-button {
		flex-basis: 100%;
	}
}

/* Homepage hero responsive refinement: desktop / tablet / mobile */
.fw-home-hero__title {
	text-wrap: balance;
	overflow-wrap: break-word;
}

.fw-home-hero__break {
	display: none !important;
}

@media (min-width: 1280px) {
	.fw-home-hero {
		padding: 36px 0 86px;
	}

	.fw-home-hero__grid {
		grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
		gap: clamp(44px, 5vw, 84px);
	}

	.fw-home-hero__copy {
		max-width: 52rem;
	}

	.fw-home-hero__visual {
		min-height: 520px;
	}

	.fw-home-hero__mark {
		width: min(100%, 520px);
		max-height: 560px;
	}

	.fw-home-hero__title {
		--fw-home-hero-title-lh: 1.02;
		max-width: min(100%, 13.2ch);
		font-size: clamp(4rem, 5vw, 5.6rem);
		letter-spacing: 0.004em;
	}

	.fw-home-hero__text {
		max-width: 620px;
		font-size: clamp(1.04rem, 1.22vw, 1.22rem);
		line-height: 1.58;
	}

	.fw-home-hero__actions {
		flex-wrap: nowrap;
	}

	body.home .fw-button {
		min-width: 178px;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.fw-home-hero {
		padding: 26px 0 72px;
	}

	.fw-home-hero__grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
		gap: clamp(32px, 4vw, 48px);
	}

	.fw-home-hero__copy {
		max-width: 46rem;
	}

	.fw-home-hero__visual {
		min-height: 440px;
	}

	.fw-home-hero__mark {
		width: min(100%, 430px);
		max-height: 480px;
	}

	.fw-home-hero__title {
		--fw-home-hero-title-lh: 1.03;
		max-width: min(100%, 12.6ch);
		font-size: clamp(3.4rem, 4.8vw, 4.85rem);
		letter-spacing: 0.004em;
	}

	.fw-home-hero__text {
		max-width: 560px;
		font-size: clamp(1rem, 1.18vw, 1.12rem);
		line-height: 1.56;
	}

	.fw-home-hero__actions {
		gap: 14px;
	}

	body.home .fw-button {
		min-width: 164px;
		padding-inline: 24px;
	}

	.fw-home-hero__stats {
		gap: 14px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fw-home-hero {
		padding: 24px 0 68px;
	}

	.fw-home-hero__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.fw-home-hero__visual,
	.fw-home-hero__copy {
		order: initial;
	}

	.fw-home-hero__visual {
		min-height: 360px;
		padding-top: 8px;
	}

	.fw-home-hero__glow {
		inset: 10% 22% 16%;
	}

	.fw-home-hero__mark {
		width: min(100%, 400px);
		max-height: 420px;
	}

	.fw-home-hero__copy {
		max-width: 100%;
	}

	.fw-home-kicker {
		margin-bottom: 14px;
		font-size: 0.94rem;
	}

	.fw-home-hero__title {
		--fw-home-hero-title-lh: 1.04;
		max-width: min(100%, 12.2ch);
		font-size: clamp(2.95rem, 5.8vw, 4.2rem);
		letter-spacing: 0.003em;
	}

	.fw-home-hero__text {
		max-width: 640px;
		margin-top: 18px;
		font-size: clamp(1rem, 1.7vw, 1.08rem);
		line-height: 1.62;
	}

	.fw-home-hero__actions {
		gap: 14px;
		margin-top: 24px;
	}

	body.home .fw-button {
		min-width: 180px;
		min-height: 56px;
		padding-inline: 24px;
	}

	.fw-home-hero__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
		margin-top: 30px;
	}

	.fw-home-stat {
		padding: 18px 18px;
		border-radius: 18px;
	}
}

@media (max-width: 767px) {
	.fw-home-hero {
		padding: 18px 0 56px;
	}

	.fw-home-hero__grid {
		gap: 12px;
	}

	.fw-home-hero__visual,
	.fw-home-hero__copy {
		order: initial;
	}

	.fw-home-hero__visual {
		min-height: 250px;
		padding-top: 2px;
	}

	.fw-home-hero__glow {
		inset: 10% 12% 16%;
		filter: blur(18px);
	}

	.fw-home-hero__mark {
		width: min(100%, 330px);
		max-height: 340px;
	}

	.fw-home-kicker {
		margin-bottom: 12px;
		font-size: 0.88rem;
	}

	.fw-home-hero__title {
		--fw-home-hero-title-lh: 1.05;
		max-width: min(100%, 11.8ch);
		font-size: clamp(2.35rem, 8.8vw, 3.45rem);
		letter-spacing: 0.002em;
	}

	.fw-home-hero__text {
		max-width: 32rem;
		margin-top: 16px;
		font-size: clamp(0.98rem, 3.8vw, 1.12rem);
		line-height: 1.58;
	}

	.fw-home-hero__actions {
		gap: 12px;
		margin-top: 24px;
	}

	body.home .fw-button {
		flex: 1 1 calc(50% - 6px);
		min-height: 54px;
		padding-inline: 16px;
		font-size: 1rem;
	}

	.fw-home-hero__stats {
		display: none;
	}
}

@media (max-width: 479px) {
	.fw-home-hero__visual {
		min-height: 220px;
	}

	.fw-home-hero__mark {
		width: min(100%, 286px);
	}

	.fw-home-hero__title {
		--fw-home-hero-title-lh: 1.06;
		max-width: min(100%, 11.2ch);
		font-size: clamp(2.08rem, 9.6vw, 2.9rem);
	}

	.fw-home-hero__text {
		font-size: 0.98rem;
	}
}

@media (max-width: 379px) {
	body.home .fw-button {
		flex-basis: 100%;
	}
}

