/* Generate Kindness — landing page (WP-1.1 shell, WP-1.10 polish)
   Editorial-modern, photography-led. Self-hosted Fraunces + Source Sans 3.
   Version: 0.2.3 */

@font-face {
	font-family: "Fraunces";
	src: url("assets/fonts/fraunces-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans 3";
	src: url("assets/fonts/source-sans-3-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Source Sans 3";
	src: url("assets/fonts/source-sans-3-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--gk-ink: #17140f;
	--gk-paper: #faf7f1;
	--gk-cream: #f1ece1;
	--gk-line: #d9d1c0;
	--gk-muted: #6b6558;
	--gk-body: #4a453c;
	--gk-accent: #c1401f;
	--gk-accent-hover: #a33519;
	--gk-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	--gk-font: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
	--gk-max: 1180px;
}

* {
	box-sizing: border-box;
}

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

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

body.gk-landing-body {
	margin: 0;
	padding: 0;
	background: var(--gk-paper);
	color: var(--gk-ink);
	font-family: var(--gk-font);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

/* Mosaic/hero fills need height:100% — beat the global height:auto above. */
#gk-landing .gk-hero__img,
#gk-landing .gk-hero__sticker-actual,
#gk-landing .gk-proof__feature .gk-proof__img,
#gk-landing .gk-proof__stack-item .gk-proof__img,
#gk-landing .gk-how__wash-img {
	max-width: none;
}

#gk-landing .gk-hero__img,
#gk-landing .gk-proof__feature .gk-proof__img,
#gk-landing .gk-proof__stack-item .gk-proof__img,
#gk-landing .gk-how__wash-img {
	height: 100%;
	width: 100%;
}

#gk-landing a {
	color: inherit;
}

#gk-landing figure {
	margin: 0;
}

/* ---------- 1. HERO ---------- */

.gk-hero {
	position: relative;
	min-height: 92vh;
	min-height: 92svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--gk-ink);
}

.gk-hero__media {
	position: absolute;
	inset: 0;
}

.gk-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.gk-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(23, 20, 15, 0.2) 0%, rgba(23, 20, 15, 0.35) 40%, rgba(23, 20, 15, 0.82) 100%),
		linear-gradient(90deg, rgba(23, 20, 15, 0.35) 0%, transparent 55%);
}

.gk-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--gk-max);
	margin: 0 auto;
	padding: 0 1.5rem 4.5rem;
	color: #fff;
}

.gk-hero__brand {
	font-family: var(--gk-font);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.85);
}

.gk-hero__title {
	font-family: var(--gk-display);
	font-size: clamp(2.5rem, 7vw, 5.25rem);
	line-height: 1.02;
	font-weight: 700;
	margin: 0 0 1rem;
	max-width: 14ch;
	letter-spacing: -0.02em;
}

.gk-hero__sticker-sub {
	font-size: clamp(1rem, 1.9vw, 1.2rem);
	margin: 0 0 0.65rem;
	max-width: 36ch;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
}

.gk-hero__sticker-wrap {
	margin: 0 0 1.25rem;
}

#gk-landing .gk-hero__sticker-actual {
	width: 2.5in !important;
	height: 1in !important;
	min-width: 2.5in;
	min-height: 1in;
	max-width: none !important;
	object-fit: fill;
	object-position: left center;
	flex-shrink: 0;
}

.gk-hero__sticker-size {
	font-size: 10px;
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.02em;
}

.gk-hero__sub {
	font-size: clamp(1.1rem, 2.1vw, 1.45rem);
	margin: 0 0 2rem;
	max-width: 36ch;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 400;
}

.gk-btn {
	display: inline-block;
	font-family: var(--gk-font);
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.95rem 1.85rem;
	border-radius: 3px;
	border: 2px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gk-btn--primary {
	background: var(--gk-accent);
	color: #fff;
}

.gk-btn--primary:hover,
.gk-btn--primary:focus-visible {
	background: var(--gk-accent-hover);
	color: #fff;
}

.gk-btn--primary:active {
	transform: translateY(1px);
}

.gk-btn--secondary {
	background: transparent;
	color: var(--gk-ink);
	border: 2px solid var(--gk-line);
	cursor: pointer;
}

.gk-btn--secondary:hover,
.gk-btn--secondary:focus-visible {
	border-color: var(--gk-accent);
	color: var(--gk-accent);
}

/* Hero entrance — respect reduced motion */
@keyframes gk-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.gk-hero__brand,
	.gk-hero__title,
	.gk-hero__sticker-sub,
	.gk-hero__sticker-wrap,
	.gk-hero__sub,
	.gk-hero__content .gk-btn {
		animation: gk-rise 0.7s ease both;
	}

	.gk-hero__title {
		animation-delay: 0.08s;
	}

	.gk-hero__sticker-sub {
		animation-delay: 0.12s;
	}

	.gk-hero__sticker-wrap {
		animation-delay: 0.16s;
	}

	.gk-hero__sub {
		animation-delay: 0.2s;
	}

	.gk-hero__content .gk-btn {
		animation-delay: 0.28s;
	}
}

/* ---------- 2. THE IDEA ---------- */

.gk-idea {
	padding: 6.5rem 1.5rem 4.5rem;
}

.gk-idea__inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.gk-idea__lead {
	font-family: var(--gk-display);
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 1.25rem;
	letter-spacing: -0.015em;
}

.gk-idea__body {
	font-size: clamp(1.12rem, 2vw, 1.35rem);
	line-height: 1.55;
	color: var(--gk-body);
	margin: 0;
}

/* ---------- 3. PHOTO PROOF (asymmetric, not a gallery) ---------- */

.gk-proof {
	padding: 0 0 5rem;
}

.gk-proof__mosaic {
	display: grid;
	grid-template-columns: 1.45fr 1fr;
	grid-template-rows: 480px;
	gap: 6px;
	max-width: var(--gk-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.gk-proof__feature,
.gk-proof__stack-item {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--gk-cream);
	margin: 0;
	height: 100%;
}

.gk-proof__feature .gk-proof__img,
.gk-proof__stack-item .gk-proof__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gk-proof__stack {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
	height: 100%;
	min-height: 0;
}

.gk-proof__strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	max-width: var(--gk-max);
	margin: 6px auto 0;
	padding: 0 1.5rem;
}

.gk-proof__img--strip {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* ---------- 4. HOW IT WORKS ---------- */

.gk-how {
	position: relative;
	background: var(--gk-cream);
	padding: 6.5rem 1.5rem;
	overflow: hidden;
}

.gk-how__wash {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.gk-how__wash-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.12;
	filter: grayscale(20%);
}

.gk-how__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
}

.gk-how__title {
	font-family: var(--gk-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	text-align: center;
	margin: 0 0 2rem;
	letter-spacing: -0.015em;
}

.gk-how__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gk-how__item {
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--gk-line);
}

.gk-how__item:last-child {
	border-bottom: none;
}

.gk-how__num {
	font-family: var(--gk-display);
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--gk-accent);
	flex: 0 0 auto;
	min-width: 2ch;
}

.gk-how__text {
	font-size: clamp(1.12rem, 1.8vw, 1.32rem);
	line-height: 1.45;
}

.gk-how__item--or .gk-how__num {
	font-size: 1.35rem;
	font-style: italic;
	text-transform: lowercase;
	min-width: 3.5ch;
}

.gk-how__sase-address {
	display: block;
	margin-top: 0.75rem;
	margin-left: 50px;
	text-align: left;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.95em;
	line-height: 1.55;
	color: var(--gk-ink);
}

.gk-how__sase-note {
	display: block;
	margin-top: 0.5rem;
	margin-left: 50px;
	text-align: left;
	font-size: 0.82em;
	line-height: 1.45;
	color: #6b6558;
}

.gk-how__cta-wrap {
	margin: 2.5rem 0 0;
	text-align: center;
}

/* ---------- 5. THE ASTERISK ---------- */

.gk-asterisk {
	padding: 2.5rem 1.5rem;
	max-width: 700px;
	margin: 0 auto;
}

.gk-asterisk__text {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--gk-muted);
	text-align: center;
	margin: 0;
}

/* ---------- 6. REQUEST SECTION ---------- */

.gk-request {
	padding: 5rem 1.5rem 6rem;
	text-align: center;
	background:
		linear-gradient(180deg, transparent 0%, rgba(193, 64, 31, 0.04) 100%);
}

.gk-request__inner {
	max-width: 640px;
	margin: 0 auto;
}

.gk-request__title {
	font-family: var(--gk-display);
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	font-weight: 700;
	margin: 0 0 2rem;
	letter-spacing: -0.015em;
}

/* ---------- FOOTER ---------- */

.gk-footer {
	padding: 2.5rem 1.5rem 3rem;
	text-align: center;
	border-top: 1px solid var(--gk-line);
}

.gk-footer__text {
	margin: 0;
	font-size: 0.85rem;
	color: var(--gk-muted);
}

.gk-footer__nav {
	margin-top: 0.85rem;
	font-size: 0.85rem;
}

.gk-footer__nav a {
	color: var(--gk-muted);
	text-decoration: none;
}

.gk-footer__nav a:hover,
.gk-footer__nav a:focus-visible {
	color: var(--gk-accent);
	text-decoration: underline;
}

.gk-footer__sep {
	color: var(--gk-line);
	margin: 0 0.5rem;
}

/* ---------- BRAND STICKER BAR (satellite pages) ---------- */

.gk-brand-sticker {
	padding: 1.35rem 1.5rem 1rem;
	text-align: center;
	background: var(--gk-paper);
	border-bottom: 1px solid var(--gk-line);
}

.gk-brand-sticker__inner {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.gk-brand-sticker__link {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.gk-brand-sticker__link:hover,
.gk-brand-sticker__link:focus-visible {
	opacity: 0.92;
}

.gk-brand-sticker__actual {
	width: 2.5in !important;
	height: 1in !important;
	min-width: 2.5in;
	min-height: 1in;
	max-width: none !important;
	object-fit: fill;
	object-position: left center;
	display: block;
}

.gk-brand-sticker__size {
	font-size: 10px;
	margin: 6px 0 0;
	color: var(--gk-muted);
	letter-spacing: 0.02em;
}

@media (max-width: 640px) {
	.gk-brand-sticker__size {
		display: none;
	}
}

/* ---------- SHARE PAGE (WP-1.9) ---------- */

.gk-share-body,
.gk-faq-body,
.gk-map-body {
	background: var(--gk-paper);
}

.gk-share-hero,
.gk-faq-hero,
.gk-map-hero {
	padding: 4.5rem 1.5rem 2.5rem;
	text-align: center;
	background: var(--gk-cream);
	border-bottom: 1px solid var(--gk-line);
}

.gk-share-hero__inner,
.gk-faq-hero__inner,
.gk-map-hero__inner {
	max-width: 700px;
	margin: 0 auto;
}

.gk-share-hero__title,
.gk-faq-hero__title,
.gk-map-hero__title {
	font-family: var(--gk-display);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	color: var(--gk-ink);
}

.gk-share-hero__sub,
.gk-faq-hero__sub,
.gk-map-hero__sub {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.55;
	color: var(--gk-body);
	margin: 0;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.gk-map-main {
	padding: 2rem 1.5rem 3rem;
}

.gk-map-main__inner {
	max-width: var(--gk-max);
	margin: 0 auto;
}

.gk-share-download {
	padding: 3rem 1.5rem 4rem;
	text-align: center;
	background: var(--gk-paper);
}

.gk-share-download__inner {
	max-width: 900px;
	margin: 0 auto;
}

.gk-share-download__hint {
	font-size: 0.95rem;
	color: var(--gk-body);
	margin: 0 0 2rem;
	line-height: 1.5;
}

.gk-share-sizes {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.5rem 1.25rem;
	align-items: end;
	justify-items: center;
	margin-bottom: 1rem;
	padding: 2.5rem 1.5rem 2rem;
	background: var(--gk-cream);
	border: 1px solid var(--gk-line);
	border-radius: 8px;
}

.gk-share-size {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
	min-height: 7.5rem;
	width: 100%;
}

.gk-share-size__link {
	display: block;
	line-height: 0;
	border-radius: 4px;
	transition: transform 0.15s ease;
}

.gk-share-size__link:hover {
	transform: translateY( -2px );
}

.gk-share-size__img {
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Stepped scale: ~1.75x between tiers, aligned on a shared baseline */
.gk-share-size--xs .gk-share-size__img { width: 36px; }
.gk-share-size--sm .gk-share-size__img { width: 64px; }
.gk-share-size--md .gk-share-size__img { width: 112px; }
.gk-share-size--lg .gk-share-size__img { width: 196px; }
.gk-share-size--full .gk-share-size__img {
	width: 2.5in;
	height: 1in;
	max-width: none;
}

.gk-share-size__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gk-muted);
}

.gk-share-download__missing {
	color: var(--gk-muted);
}

.gk-share-text {
	background: var(--gk-cream);
	padding: 4rem 1.5rem;
}

.gk-share-text__inner {
	max-width: 640px;
	margin: 0 auto;
}

.gk-share-text__title {
	font-family: var(--gk-display);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
	margin: 0 0 1.75rem;
	text-align: center;
}

.gk-share-block {
	background: var(--gk-paper);
	border: 1px solid var(--gk-line);
	border-radius: 6px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.gk-share-block__text {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	line-height: 1.5;
}

.gk-share-block__url {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.4;
	color: var(--gk-muted);
	word-break: break-all;
}

.gk-share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.gk-share-links .gk-btn {
	width: 100%;
	max-width: 240px;
	text-align: center;
}

.gk-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
}

.gk-share-btn__icon {
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
}

.gk-share-btn__label {
	line-height: 1.2;
}

.gk-copy-btn--done {
	border-color: var(--gk-accent);
	color: var(--gk-accent);
}

/* ---------- FAQ PAGE (WP-1.9) ---------- */

.gk-faq-list {
	padding: 1.5rem 1.5rem 5rem;
	background: var(--gk-paper);
}

.gk-faq-list__inner {
	max-width: 760px;
	margin: 0 auto;
}

.gk-faq-item {
	padding: 1.75rem 1.25rem;
	border: 1px solid var(--gk-line);
	border-radius: 8px;
	margin-bottom: 1rem;
	background: var(--gk-cream);
}

.gk-faq-item:last-child {
	margin-bottom: 0;
}

.gk-faq-item__q {
	font-family: var(--gk-display);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	margin: 0 0 0.65rem;
	letter-spacing: -0.01em;
	color: var(--gk-ink);
}

.gk-faq-item__a {
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--gk-body);
	margin: 0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
	.gk-proof__mosaic {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.gk-proof__feature {
		min-height: 280px;
	}

	.gk-proof__stack {
		grid-template-rows: none;
		grid-template-columns: 1fr 1fr;
		min-height: 180px;
	}

	.gk-proof__stack-item {
		min-height: 180px;
	}

	.gk-proof__img--strip {
		height: 160px;
	}
}

@media (max-width: 600px) {
	.gk-hero__sticker-size {
		display: none;
	}

	.gk-hero {
		min-height: 82vh;
		min-height: 82svh;
	}

	.gk-hero__content {
		padding: 0 1.25rem 2.75rem;
	}

	.gk-hero__brand {
		font-size: 0.72rem;
		letter-spacing: 0.12em;
	}

	.gk-idea,
	.gk-how,
	.gk-request,
	.gk-share-hero,
	.gk-share-download,
	.gk-share-text,
	.gk-faq-hero,
	.gk-faq-list,
	.gk-map-hero,
	.gk-map-main {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.gk-share-sizes {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 2rem 1.25rem;
	}

	.gk-share-size {
		min-height: 0;
		flex-direction: row;
		justify-content: flex-start;
		gap: 1rem;
		text-align: left;
	}

	.gk-share-size__label {
		min-width: 4.5rem;
		text-align: left;
	}

	.gk-share-size--xs .gk-share-size__img { width: 40px; }
	.gk-share-size--sm .gk-share-size__img { width: 72px; }
	.gk-share-size--md .gk-share-size__img { width: 128px; }
	.gk-share-size--lg .gk-share-size__img { width: 200px; }

	.gk-share-links {
		flex-direction: column;
	}

	.gk-idea {
		padding-top: 4rem;
		padding-bottom: 3rem;
	}

	.gk-how {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.gk-how__item {
		flex-direction: column;
		gap: 0.35rem;
		padding: 1.25rem 0;
	}

	.gk-proof {
		padding-bottom: 3.5rem;
	}

	.gk-proof__mosaic,
	.gk-proof__strip {
		padding-left: 0;
		padding-right: 0;
		gap: 3px;
	}

	.gk-proof__strip {
		margin-top: 3px;
		grid-template-columns: 1fr;
	}

	.gk-proof__stack {
		gap: 3px;
	}

	.gk-proof__feature {
		min-height: 240px;
	}

	.gk-proof__stack {
		min-height: 140px;
	}

	.gk-proof__stack-item {
		min-height: 140px;
	}

	.gk-proof__img--strip {
		height: 160px;
	}

	.gk-request {
		padding-top: 3.5rem;
		padding-bottom: 4rem;
	}
}
