:root {
	--ink: #2a211c;
	--ink-soft: #3b2e27;
	--cream: #fff7e8;
	--paper: #f6d39a;
	--yellow: #e3a34e;
	--yellow-bright: #f6d39a;
	--orange: #e3a34e;
	--red: #b74338;
	--red-dark: #65412f;
	--white: #fffcf6;
	--muted: #e6d7c4;
	--line: rgba(255, 252, 246, 0.16);
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
	--display: "Arial Black", "Franklin Gothic Heavy", Impact, Haettenschweiler, sans-serif;
	--body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hand: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background:
		radial-gradient(circle at 12% 9%, rgba(183, 67, 56, 0.26), transparent 31rem),
		radial-gradient(circle at 88% 22%, rgba(227, 163, 78, 0.13), transparent 28rem),
		var(--ink);
	color: var(--white);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	pointer-events: none;
	mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

a {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100;
	padding: 0.7rem 1rem;
	transform: translateY(-160%);
	background: var(--white);
	color: var(--ink);
	font-weight: 800;
	transition: transform 160ms ease;
}

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

.site-shell {
	overflow: hidden;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1240px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 1.6rem 0 1rem;
}

.brand {
	position: relative;
	z-index: 4;
	display: inline-block;
	text-decoration: none;
}

.brand-paper {
	display: block;
	transform: rotate(-0.8deg);
	transition: transform 180ms ease;
}

.brand:hover .brand-paper,
.brand:focus-visible .brand-paper {
	transform: rotate(0deg) translateY(-2px);
}

.brand img {
	width: clamp(190px, 25vw, 310px);
	height: auto;
	filter: drop-shadow(0 7px 8px rgba(0, 0, 0, 0.24));
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.62rem 0.95rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--cream);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.status-light {
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 50%;
	background: var(--yellow-bright);
	box-shadow: 0 0 0 5px rgba(227, 163, 78, 0.14), 0 0 20px rgba(227, 163, 78, 0.66);
	animation: status-pulse 2.8s ease-in-out infinite;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
	align-items: center;
	gap: clamp(2.5rem, 6vw, 7rem);
	width: min(1240px, calc(100% - 2.5rem));
	min-height: min(780px, calc(100vh - 110px));
	margin: 0 auto;
	padding: clamp(3.7rem, 7vw, 7.4rem) 0 clamp(5rem, 9vw, 8rem);
}

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

.eyebrow,
.overline,
.section-kicker {
	margin: 0 0 1.15rem;
	color: var(--yellow-bright);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow span {
	display: inline-block;
	margin-right: 0.45rem;
	color: var(--orange);
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1 {
	max-width: 11ch;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(3.65rem, 8.2vw, 7.25rem);
	font-weight: 950;
	letter-spacing: -0.065em;
	line-height: 0.84;
	text-transform: uppercase;
}

h1 span {
	position: relative;
	display: inline-block;
	z-index: 0;
	margin-top: 0.1em;
	color: var(--yellow-bright);
	font-size: 0.67em;
	letter-spacing: -0.045em;
}

h1 span::after {
	position: absolute;
	left: -0.03em;
	right: -0.08em;
	bottom: -0.08em;
	z-index: -1;
	height: 0.18em;
	transform: rotate(-1.4deg);
	background: var(--red);
	content: "";
}

.hero-lead {
	max-width: 38rem;
	margin: 2rem 0 0;
	color: #e6d7c4;
	font-size: clamp(1.08rem, 1.55vw, 1.28rem);
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-height: 3.25rem;
	padding: 0.78rem 1.18rem;
	border: 2px solid transparent;
	font-size: 0.87rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-3px);
}

.button-primary {
	background: var(--yellow-bright);
	box-shadow: 6px 7px 0 var(--red-dark);
	color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
	box-shadow: 8px 10px 0 var(--red-dark);
}

.button-quiet {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.045);
	color: var(--white);
}

.button-quiet:hover,
.button-quiet:focus-visible {
	background: rgba(255, 255, 255, 0.1);
}

.button:focus-visible,
.brand:focus-visible {
	outline: 3px solid var(--white);
	outline-offset: 4px;
}

.signal-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1.4rem;
	margin: 2rem 0 0;
	padding: 0;
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	list-style: none;
	text-transform: uppercase;
}

.signal-list li::before {
	margin-right: 0.65rem;
	color: var(--orange);
	content: "+";
	font-weight: 950;
}

.hero-visual {
	position: relative;
	min-height: 590px;
}

.hero-visual::before {
	position: absolute;
	top: 4%;
	right: -7%;
	width: 75%;
	aspect-ratio: 1;
	border: 1px solid rgba(227, 163, 78, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 0 38px rgba(227, 163, 78, 0.04), 0 0 0 80px rgba(227, 163, 78, 0.028);
	content: "";
}

.photo-card {
	position: absolute;
	margin: 0;
	padding: 0.65rem 0.65rem 1.9rem;
	background: var(--cream);
	box-shadow: var(--shadow);
	color: var(--ink);
}

.photo-card::before {
	position: absolute;
	top: -1.1rem;
	left: 50%;
	width: 6.7rem;
	height: 2rem;
	transform: translateX(-50%) rotate(-2deg);
	background: rgba(246, 211, 154, 0.78);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.13);
	content: "";
}

.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.94) contrast(1.03);
}

.photo-card figcaption {
	position: absolute;
	left: 0.9rem;
	bottom: 0.35rem;
	font-family: var(--hand);
	font-size: 0.83rem;
	font-weight: 700;
}

.photo-main {
	top: 6%;
	right: 0;
	width: 91%;
	height: 71%;
	transform: rotate(2.1deg);
}

.photo-small {
	left: -4%;
	bottom: 0;
	width: 39%;
	height: 47%;
	transform: rotate(-5deg);
}

.hero-sticker {
	position: absolute;
	right: -2%;
	bottom: 2%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 12.5rem;
	aspect-ratio: 1;
	transform: rotate(8deg);
	border: 3px solid var(--ink);
	border-radius: 50%;
	background: var(--yellow-bright);
	box-shadow: 7px 8px 0 var(--red-dark);
	color: var(--ink);
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

.hero-sticker span {
	align-self: end;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.hero-sticker strong {
	align-self: start;
	max-width: 8ch;
	font-family: var(--display);
	font-size: 1.45rem;
}

.ticker {
	overflow: hidden;
	transform: rotate(-1deg) scale(1.02);
	border-block: 3px solid var(--ink);
	background: var(--yellow-bright);
	color: var(--ink);
}

.ticker-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.8rem, 2vw, 2rem);
	min-width: max-content;
	padding: 0.72rem 1.5rem;
	font-family: var(--display);
	font-size: clamp(0.9rem, 1.7vw, 1.35rem);
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.ticker-track i {
	color: var(--red);
	font-style: normal;
}

.memory-section {
	position: relative;
	margin-top: clamp(5rem, 10vw, 9rem);
	padding: clamp(5rem, 9vw, 8.5rem) max(1.25rem, calc((100vw - 1240px) / 2));
	background:
		linear-gradient(rgba(42, 33, 28, 0.048) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42, 33, 28, 0.048) 1px, transparent 1px),
		var(--paper);
	background-size: 26px 26px;
	color: var(--ink);
}

.memory-section::before,
.memory-section::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 28px;
	background: var(--ink);
	content: "";
	clip-path: polygon(0 45%, 3% 18%, 7% 61%, 12% 25%, 18% 65%, 24% 31%, 31% 70%, 38% 26%, 44% 61%, 51% 20%, 58% 66%, 66% 29%, 73% 69%, 81% 27%, 88% 60%, 94% 20%, 100% 52%, 100% 100%, 0 100%);
}

.memory-section::before {
	top: -1px;
}

.memory-section::after {
	bottom: -1px;
	transform: rotate(180deg);
}

.section-kicker {
	width: min(1240px, 100%);
	margin-inline: auto;
	color: var(--red-dark);
}

.memory-copy .overline,
.postcard .overline {
	color: var(--red-dark);
}

.memory-grid {
	display: grid;
	grid-template-columns: minmax(350px, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
	width: min(1240px, 100%);
	margin: 0 auto;
}

.archive-photo {
	position: relative;
	justify-self: end;
	width: min(620px, 120%);
	margin: 0;
	padding: 0.8rem 0.8rem 4.4rem;
	transform: rotate(-1.5deg);
	background: var(--white);
	box-shadow: 14px 18px 0 rgba(183, 67, 56, 0.2), 0 24px 70px rgba(42, 33, 28, 0.2);
}

.archive-photo::after {
	position: absolute;
	top: -1rem;
	right: 18%;
	width: 7.2rem;
	height: 2.1rem;
	transform: rotate(4deg);
	background: rgba(227, 163, 78, 0.7);
	content: "";
}

.archive-photo img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: contain;
	filter: saturate(0.88) contrast(1.02);
}

.archive-photo figcaption {
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 0.75rem;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	font-family: var(--hand);
	font-size: 1rem;
	font-weight: 800;
}

.archive-photo figcaption small {
	color: #65412f;
	font-family: var(--body);
	font-size: 0.64rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-align: right;
	text-transform: uppercase;
}

.memory-copy h2,
.coming-heading h2,
.postcard h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2.5rem, 5.4vw, 5.1rem);
	letter-spacing: -0.055em;
	line-height: 0.95;
	text-transform: uppercase;
}

.memory-intro {
	margin: 1.6rem 0 0;
	font-size: clamp(1.04rem, 1.5vw, 1.22rem);
	line-height: 1.75;
}

.memory-copy blockquote {
	position: relative;
	margin: 2rem 0 0;
	padding: 1.15rem 1.3rem;
	transform: rotate(0.7deg);
	background: var(--yellow-bright);
	box-shadow: 6px 7px 0 var(--red);
	font-family: var(--hand);
	font-size: clamp(1.05rem, 2vw, 1.45rem);
	font-weight: 800;
}

.memory-copy blockquote + p {
	margin: 1.5rem 0 0;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: 2.5rem;
	border: 1px solid rgba(42, 33, 28, 0.24);
	background: rgba(42, 33, 28, 0.22);
}

.timeline div {
	padding: 1.05rem;
	background: rgba(255, 247, 232, 0.86);
}

.timeline strong,
.timeline span {
	display: block;
}

.timeline strong {
	color: var(--red-dark);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.timeline span {
	margin-top: 0.25rem;
	font-size: 0.82rem;
	line-height: 1.35;
}

.coming-section {
	width: min(1240px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: clamp(6rem, 11vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
}

.coming-heading {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: end;
	gap: clamp(2rem, 7vw, 8rem);
}

.coming-heading h2 {
	max-width: 12ch;
}

.coming-heading > p {
	margin: 0 0 0.3rem;
	color: #e6d7c4;
	font-size: 1.04rem;
	line-height: 1.75;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 3.5rem;
}

.feature-card {
	position: relative;
	min-height: 360px;
	padding: 1.5rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
	color: var(--ink);
}

.feature-card::after {
	position: absolute;
	right: -2.2rem;
	bottom: -3rem;
	width: 10rem;
	aspect-ratio: 1;
	transform: rotate(18deg);
	border: 1.4rem solid currentColor;
	border-radius: 48% 52% 40% 60%;
	content: "";
	opacity: 0.08;
}

.feature-number {
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.feature-icon {
	display: grid;
	place-items: center;
	width: 4.4rem;
	height: 4.4rem;
	margin-top: 3.6rem;
	border: 2px solid currentColor;
	border-radius: 50%;
	font-family: var(--display);
	font-size: 2rem;
}

.feature-card h3 {
	max-width: 15ch;
	margin: 1.4rem 0 0;
	font-family: var(--display);
	font-size: clamp(1.35rem, 2.2vw, 1.9rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-transform: uppercase;
}

.feature-card p {
	max-width: 29rem;
	margin: 1rem 0 0;
	font-size: 0.93rem;
	line-height: 1.6;
}

.card-yellow {
	transform: rotate(-0.5deg);
	background: var(--yellow-bright);
}

.card-red {
	transform: translateY(1.3rem) rotate(0.7deg);
	background: var(--red);
	color: var(--white);
}

.card-cream {
	transform: rotate(-0.3deg);
	background: var(--cream);
}

.postcard {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	margin-top: clamp(5rem, 9vw, 8rem);
	transform: rotate(-0.4deg);
	background: var(--cream);
	box-shadow: var(--shadow);
	color: var(--ink);
}

.postcard-image {
	min-height: 460px;
	padding: 0.85rem;
}

.postcard-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.84) contrast(1.02);
}

.postcard-copy {
	position: relative;
	padding: clamp(2.2rem, 5vw, 5rem);
	border-left: 2px dashed rgba(42, 33, 28, 0.28);
}

.postcard-copy::before {
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 0.65rem;
	background: repeating-linear-gradient(90deg, var(--red) 0 2rem, transparent 2rem 4rem, var(--yellow) 4rem 6rem, transparent 6rem 8rem);
	content: "";
}

.postcard h2 {
	max-width: 12ch;
	font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.postcard p:not(.overline, .handwritten) {
	max-width: 37rem;
	margin: 1.3rem 0 0;
	color: #65412f;
}

.postmark {
	position: absolute;
	top: 2.2rem;
	right: 2.2rem;
	display: grid;
	place-items: center;
	width: 5.5rem;
	aspect-ratio: 1;
	transform: rotate(9deg);
	border: 2px solid rgba(183, 67, 56, 0.38);
	border-radius: 50%;
	color: rgba(183, 67, 56, 0.58);
	font-size: 0.55rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-align: center;
}

.handwritten {
	margin: 1.8rem 0 0;
	transform: rotate(-2deg);
	color: var(--red-dark);
	font-family: var(--hand);
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	font-weight: 800;
}

.site-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	width: min(1240px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 2.5rem 0 3rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.site-footer img {
	width: 155px;
	height: auto;
	filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.2));
}

.site-footer p {
	margin: 0.7rem 0 0;
	font-size: 0.78rem;
}

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

.privacy-note {
	max-width: 36rem;
	opacity: 0.78;
}

.analytics-disclosure {
	max-width: 38rem;
	margin-top: 0.6rem;
	font-size: 0.76rem;
}

.analytics-disclosure summary {
	cursor: pointer;
	color: var(--white);
	font-weight: 700;
}

.analytics-disclosure p {
	line-height: 1.65;
}

@keyframes status-pulse {
	0%, 100% { opacity: 0.65; transform: scale(0.9); }
	50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 1000px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: 4.5rem;
	}

	.hero-copy {
		max-width: 760px;
	}

	.hero-visual {
		width: min(700px, 100%);
		margin: 0 auto;
	}

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

	.archive-photo {
		width: min(720px, 100%);
	}

	.coming-heading {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.coming-heading > p {
		max-width: 700px;
	}

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

	.card-red {
		transform: translateY(0) rotate(0.7deg);
	}

	.card-cream {
		grid-column: 1 / -1;
		min-height: 300px;
	}

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

	.postcard-image {
		min-height: 390px;
	}

	.postcard-copy {
		border-top: 2px dashed rgba(42, 33, 28, 0.28);
		border-left: 0;
	}
}

@media (max-width: 680px) {
	.site-header {
		align-items: flex-start;
		width: min(100% - 1.5rem, 1240px);
		padding-top: 1rem;
	}

	.brand-paper {
		transform: none;
	}

	.brand img {
		width: 175px;
	}

	.status-pill {
		max-width: 8.5rem;
		padding: 0.52rem 0.7rem;
		font-size: 0.63rem;
		line-height: 1.25;
	}

	.hero,
	.coming-section,
	.site-footer {
		width: min(100% - 1.5rem, 1240px);
	}

	.hero {
		gap: 1.8rem;
		padding-top: 3.3rem;
	}

	h1 {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.signal-list {
		gap: 0.45rem 0.9rem;
	}

	.hero-visual {
		min-height: 440px;
	}

	.photo-main {
		width: 96%;
		height: 65%;
	}

	.photo-small {
		left: 0;
		width: 42%;
		height: 46%;
	}

	.hero-sticker {
		right: 0;
		width: 9.5rem;
	}

	.hero-sticker strong {
		font-size: 1.05rem;
	}

	.memory-section {
		padding-inline: 0.75rem;
	}

	.archive-photo {
		padding-bottom: 4.9rem;
	}

	.archive-photo figcaption {
		align-items: start;
		flex-direction: column;
		gap: 0.2rem;
	}

	.archive-photo figcaption small {
		text-align: left;
	}

	.timeline,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.timeline div {
		padding: 0.9rem;
	}

	.feature-card,
	.card-cream {
		grid-column: auto;
		min-height: 310px;
	}

	.feature-icon {
		margin-top: 2.4rem;
	}

	.postcard-image {
		min-height: 280px;
	}

	.postcard-copy {
		padding-top: 4.2rem;
	}

	.postmark {
		top: 1.4rem;
		right: 1.2rem;
		width: 4.6rem;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-note {
		text-align: left;
	}
}

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

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

@media print {
	body {
		background: white;
		color: black;
	}

	.site-header,
	.hero-actions,
	.ticker,
	.site-footer {
		display: none;
	}
}
