/**
 * Princess Pea · home.css
 *
 * Loaded only on the front page (princess_pea_current_route() === 'front').
 * Contains every hero/story/collection/promise/featured/newsletter style.
 *
 * Shared chrome (nav, footer, buttons, section-kicker, journal-card) lives
 * in core.css.
 *
 * @package PrincessPea
 * @since   1.2.0
 */

/* ==========================================================================
 * 1. Hero
 * ========================================================================== */

.hero {
	min-height: 100vh;
	padding: 120px 56px 80px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	background: linear-gradient(180deg, var(--paper) 0%, var(--pea-ghost) 100%);
}

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

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 13px;
	color: var(--pea-deep);
	margin-bottom: 28px;
	letter-spacing: 1px;
}

.hero-tag::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--pea-deep);
}

.hero-title {
	font-family: var(--font-serif-cn);
	font-size: clamp(48px, 7vw, 108px);
	font-weight: 500;
	line-height: 1.05;
	color: var(--pea-ink);
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-wrap: balance;
}

.hero-title .accent {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-weight: 300;
	color: var(--pea-deep);
	display: inline-block;
	transform: translateY(-4px);
	transition: transform 0.4s ease;
}

/* Triggered by main.js — replaces the old inline-style hover handler. */
.hero-title .accent.is-hover {
	transform: translateY(-4px) rotate(-3deg) scale(1.05);
}

.hero-title .gold-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: var(--gold);
	border-radius: 50%;
	vertical-align: middle;
	margin: 0 8px;
	transform: translateY(-12px);
}

.hero-sub {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 18px;
	font-weight: 300;
	color: var(--pea-deep);
	margin-bottom: 36px;
	letter-spacing: 0.5px;
}

.hero-desc {
	font-family: var(--font-serif-cn);
	font-size: 15px;
	line-height: 2;
	color: var(--pea-ink);
	max-width: 440px;
	margin-bottom: 48px;
	opacity: 0.85;
}

/* Hero right-hand visual. */
.hero-right {
	position: relative;
	height: 640px;
}

.hero-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #d8e4c5 0%, #9bb584 70%, #5c7447 100%);
	box-shadow:
		inset -40px -60px 120px rgba(42, 58, 31, 0.3),
		inset 20px 30px 80px rgba(237, 242, 228, 0.6),
		0 40px 80px rgba(92, 116, 71, 0.25);
}

.hero-circle::before {
	content: "";
	position: absolute;
	top: 20%;
	left: 22%;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(8px);
}

.hero-pea {
	position: absolute;
	animation: pp-float 6s ease-in-out infinite;
}

.hero-pea-1 { top: 8%; right: 10%; width: 90px; animation-delay: 0s; }
.hero-pea-2 { bottom: 12%; left: 6%; width: 70px; animation-delay: 2s; }
.hero-pea-3 { top: 42%; right: 2%; width: 55px; animation-delay: 4s; }

@keyframes pp-float {
	0%, 100% { transform: translateY(0) rotate(-5deg); }
	50%      { transform: translateY(-20px) rotate(5deg); }
}

.hero-leaf {
	position: absolute;
	top: 58%;
	left: 18%;
	width: 140px;
	opacity: 0.9;
	transform: rotate(-15deg);
	animation: pp-sway 8s ease-in-out infinite;
}

@keyframes pp-sway {
	0%, 100% { transform: rotate(-15deg); }
	50%      { transform: rotate(-5deg); }
}

.hero-badge {
	position: absolute;
	bottom: 40px;
	right: 20px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: var(--font-serif-cn);
	font-size: 13px;
	color: var(--pea-deep);
	border: 1px solid var(--pea-soft);
	animation: pp-rotate 30s linear infinite;
}

@keyframes pp-rotate {
	to { transform: rotate(360deg); }
}

.hero-badge-center {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 24px;
	color: var(--pea-ink);
	font-weight: 500;
}

.hero-badge-center span {
	display: block;
	font-family: var(--font-serif-cn);
	font-size: 10px;
	letter-spacing: 3px;
	margin-top: 4px;
	color: var(--pea-deep);
}

.scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 56px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 12px;
	color: var(--pea-deep);
	letter-spacing: 2px;
}

.scroll-line {
	width: 40px;
	height: 1px;
	background: var(--pea-deep);
	position: relative;
	overflow: hidden;
}

.scroll-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--pea-ink);
	animation: pp-scroll-line 2s ease-in-out infinite;
}

@keyframes pp-scroll-line {
	to { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.hero-pea,
	.hero-leaf,
	.hero-badge,
	.scroll-line::after {
		animation: none;
	}
}

/* ==========================================================================
 * 2. Section head (home-only layout with left/right split)
 * ========================================================================== */

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1400px;
	margin: 0 auto 80px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(42, 58, 31, 0.15);
}

.section-head-left { max-width: 700px; }

.section-head-right {
	font-family: var(--font-serif-cn);
	font-size: 14px;
	line-height: 1.9;
	color: var(--pea-ink);
	max-width: 360px;
	opacity: 0.75;
	padding-bottom: 8px;
}

/* ==========================================================================
 * 3. Brand story
 * ========================================================================== */

.story {
	padding: 140px 56px;
	background: var(--paper);
	position: relative;
	z-index: 2;
}

.story-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.story-visual {
	position: relative;
	height: 600px;
}

.story-image-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 85%;
	background: linear-gradient(135deg, #d8e4c5 0%, #9bb584 100%);
	border-radius: 300px 300px 40px 40px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(42, 58, 31, 0.2);
}

.story-image-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(247, 243, 235, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 80%, rgba(42, 58, 31, 0.3) 0%, transparent 60%);
}

.story-mattress {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
}

.story-mattress-layer {
	height: 10px;
	background: linear-gradient(90deg, #f7f3eb 0%, #efe7d8 50%, #f7f3eb 100%);
	margin-bottom: 2px;
	border-radius: 4px;
	border: 1px solid rgba(42, 58, 31, 0.1);
}

.story-pea-tiny {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 16px;
	background: var(--gold);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
}

.story-card {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 55%;
	padding: 40px;
	background: var(--cream);
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(42, 58, 31, 0.12);
}

.story-card-quote {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 48px;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 12px;
}

.story-card-text {
	font-family: var(--font-serif-cn);
	font-size: 14px;
	line-height: 1.9;
	color: var(--pea-ink);
}

.story-label {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 14px;
	color: var(--gold-deep);
	letter-spacing: 2px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.story-label::before {
	content: "";
	width: 40px;
	height: 1px;
	background: var(--gold-deep);
}

.story-heading {
	font-family: var(--font-serif-cn);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 500;
	line-height: 1.2;
	color: var(--pea-ink);
	margin-bottom: 36px;
}

.story-heading .highlight {
	font-family: var(--font-script-cn);
	color: var(--pea-deep);
	font-weight: 400;
	font-size: 1.15em;
}

.story-text {
	font-family: var(--font-serif-cn);
	font-size: 16px;
	line-height: 2;
	color: var(--pea-ink);
	margin-bottom: 28px;
	opacity: 0.85;
}

.story-text em {
	font-family: var(--font-serif-en);
	font-style: italic;
	color: var(--pea-deep);
}

.story-signature {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 32px;
	border-top: 1px solid rgba(42, 58, 31, 0.15);
}

.story-sig-name {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 20px;
	color: var(--pea-ink);
}

.story-sig-title {
	font-size: 11px;
	letter-spacing: 2px;
	color: var(--pea-deep);
}

/* ==========================================================================
 * 4. Collections
 * ========================================================================== */

.collections {
	padding: 140px 56px;
	background: linear-gradient(180deg, var(--paper) 0%, var(--pea-ghost) 100%);
	position: relative;
	z-index: 2;
}

.collection-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.collection-card {
	background: var(--cream);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.collection-card:nth-child(even) { transform: translateY(40px); }

.collection-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(42, 58, 31, 0.15);
}

.collection-card:focus-visible {
	outline-offset: 5px;
	border-radius: 10px;
}

.collection-card:nth-child(even):hover {
	transform: translateY(32px);
}

.collection-visual {
	height: 280px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.collection-card:nth-child(1) .collection-visual { background: linear-gradient(135deg, #edf2e4 0%, #bccfa1 100%); }
.collection-card:nth-child(2) .collection-visual { background: linear-gradient(135deg, #f5e6d3 0%, #e8c9a8 100%); }
.collection-card:nth-child(3) .collection-visual { background: linear-gradient(135deg, #efe7d8 0%, #d4c5a8 100%); }
.collection-card:nth-child(4) .collection-visual { background: linear-gradient(135deg, #e8efe4 0%, #9bb584 100%); }

.collection-bottle {
	width: 100px;
	height: 160px;
	position: relative;
	transition: transform 0.5s ease;
}

.collection-card:hover .collection-bottle {
	transform: translateY(-8px) scale(1.05);
}

.collection-bottle-body {
	width: 100%;
	height: 140px;
	position: absolute;
	bottom: 0;
	border-radius: 12px 12px 20px 20px;
	box-shadow:
		inset -12px -4px 20px rgba(0, 0, 0, 0.15),
		inset 6px 2px 12px rgba(255, 255, 255, 0.4),
		0 15px 30px rgba(42, 58, 31, 0.2);
}

.collection-card:nth-child(1) .collection-bottle-body { background: linear-gradient(180deg, #5c7447 0%, #2a3a1f 100%); }
.collection-card:nth-child(2) .collection-bottle-body { background: linear-gradient(180deg, #d4a574 0%, #8b5e3c 100%); }
.collection-card:nth-child(3) .collection-bottle-body { background: linear-gradient(180deg, #f7f3eb 0%, #d4c5a8 100%); }
.collection-card:nth-child(4) .collection-bottle-body { background: linear-gradient(180deg, #a8c090 0%, #5c7447 100%); }

.collection-bottle-cap {
	width: 40%;
	height: 20px;
	position: absolute;
	top: 0;
	left: 30%;
	background: var(--gold);
	border-radius: 4px 4px 0 0;
}

.collection-bottle-label {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--cream);
	background: rgba(247, 243, 235, 0.15);
	padding: 4px 10px;
	border-radius: 2px;
}

.collection-card:nth-child(3) .collection-bottle-label {
	color: var(--pea-ink);
	background: rgba(42, 58, 31, 0.1);
}

.collection-info {
	padding: 32px 28px;
}

.collection-number {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 12px;
	color: var(--gold-deep);
	margin-bottom: 12px;
}

.collection-name-cn {
	font-family: var(--font-serif-cn);
	font-size: 24px;
	font-weight: 500;
	color: var(--pea-ink);
	margin-bottom: 4px;
}

.collection-name-en {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 16px;
	color: var(--pea-deep);
	margin-bottom: 16px;
	font-weight: 300;
}

.collection-desc {
	font-family: var(--font-serif-cn);
	font-size: 13px;
	line-height: 1.8;
	color: var(--pea-ink);
	opacity: 0.75;
	margin-bottom: 20px;
}

.collection-link {
	font-size: 11px;
	letter-spacing: 3px;
	color: var(--pea-deep);
	display: flex;
	align-items: center;
	gap: 10px;
}

.collection-link::after {
	content: "→";
	font-size: 14px;
	transition: transform 0.3s;
}

.collection-card:hover .collection-link::after {
	transform: translateX(6px);
}

/* ==========================================================================
 * 5. Promise (dark-mode sensitive skincare section)
 * ========================================================================== */

.promise {
	padding: 140px 56px;
	background: var(--pea-ink);
	color: var(--cream);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.promise::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
}

.promise::after {
	content: "";
	position: absolute;
	bottom: -300px;
	left: -200px;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(155, 181, 132, 0.12) 0%, transparent 70%);
}

.promise-inner {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.promise-head {
	text-align: center;
	margin-bottom: 100px;
}

.promise-kicker {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 13px;
	color: var(--gold);
	letter-spacing: 3px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.promise-title {
	font-family: var(--font-serif-cn);
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 4px;
	margin-bottom: 28px;
	text-wrap: balance;
}

.promise-title .gold {
	color: var(--gold);
	font-family: var(--font-script-cn);
	font-weight: 400;
}

.promise-sub {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 20px;
	color: var(--pea-soft);
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 300;
}

.promise-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	margin-bottom: 80px;
}

.promise-item {
	text-align: center;
	position: relative;
	padding: 32px 16px;
}

.promise-item::before {
	content: attr(data-num);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 120px;
	color: rgba(201, 169, 97, 0.08);
	line-height: 1;
	font-weight: 300;
	pointer-events: none;
}

.promise-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}

.promise-icon svg {
	width: 100%;
	height: 100%;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.5;
}

.promise-item-title {
	font-family: var(--font-serif-cn);
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
}

.promise-item-desc {
	font-family: var(--font-serif-cn);
	font-size: 12px;
	line-height: 1.8;
	color: var(--pea-soft);
	position: relative;
	z-index: 1;
}

.promise-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 60px 0;
}

.promise-divider-line {
	width: 80px;
	height: 1px;
	background: rgba(201, 169, 97, 0.4);
}

.promise-divider-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.promise-badges {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.promise-badge {
	text-align: center;
}

.promise-badge-num {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 64px;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 8px;
	font-weight: 300;
}

.promise-badge-label {
	font-family: var(--font-serif-cn);
	font-size: 13px;
	color: var(--pea-soft);
	letter-spacing: 3px;
}

/* ==========================================================================
 * 6. Featured product
 * ========================================================================== */

.featured {
	padding: 140px 56px;
	background: var(--cream-warm);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.featured-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.featured-visual {
	position: relative;
	height: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-jar {
	width: 380px;
	height: 380px;
	position: relative;
	z-index: 2;
}

.featured-jar-body {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, #efe7d8 0%, #d4c5a8 40%, #8b7355 100%);
	box-shadow:
		inset -30px -40px 80px rgba(42, 58, 31, 0.25),
		inset 20px 20px 60px rgba(255, 255, 255, 0.4),
		0 40px 80px rgba(42, 58, 31, 0.2);
	position: relative;
}

.featured-jar-top {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	height: 30%;
	background: linear-gradient(180deg, #a08440 0%, #7a6330 100%);
	border-radius: 50%;
	box-shadow: 0 10px 20px rgba(42, 58, 31, 0.2);
}

.featured-jar-label {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 3;
}

.featured-jar-label-name {
	font-family: var(--font-serif-cn);
	font-size: 22px;
	font-weight: 500;
	color: var(--pea-ink);
	letter-spacing: 3px;
	margin-bottom: 4px;
}

.featured-jar-label-en {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 11px;
	color: var(--pea-deep);
	letter-spacing: 2px;
}

.featured-jar-label-line {
	width: 30px;
	height: 1px;
	background: var(--gold-deep);
	margin: 8px auto;
}

.featured-decor {
	position: absolute;
	z-index: 1;
}

.featured-decor-1 { top: 5%; left: 5%; width: 180px; opacity: 0.5; transform: rotate(-20deg); }
.featured-decor-2 { bottom: 8%; right: 5%; width: 160px; opacity: 0.5; transform: rotate(15deg); }

.featured-tag {
	position: absolute;
	z-index: 3;
	background: var(--paper);
	padding: 14px 20px;
	border-radius: 999px;
	font-family: var(--font-serif-cn);
	font-size: 13px;
	color: var(--pea-ink);
	box-shadow: 0 10px 30px rgba(42, 58, 31, 0.1);
	display: flex;
	align-items: center;
	gap: 10px;
}

.featured-tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pea-mid);
	animation: pp-pulse 2s ease-in-out infinite;
}

@keyframes pp-pulse {
	0%, 100% { transform: scale(1);   opacity: 1; }
	50%      { transform: scale(1.4); opacity: 0.5; }
}

.featured-tag-1 { top: 15%; left: -5%; }
.featured-tag-2 { top: 50%; right: -5%; }
.featured-tag-3 { bottom: 18%; left: 8%; }

.featured-kicker {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 13px;
	color: var(--gold-deep);
	letter-spacing: 3px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.featured-title {
	font-family: var(--font-serif-cn);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--pea-ink);
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.featured-en-title {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 22px;
	font-weight: 300;
	color: var(--pea-deep);
	margin-bottom: 32px;
}

.featured-desc {
	font-family: var(--font-serif-cn);
	font-size: 15px;
	line-height: 2;
	color: var(--pea-ink);
	margin-bottom: 36px;
	opacity: 0.85;
}

.featured-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
	padding: 28px;
	background: rgba(155, 181, 132, 0.1);
	border-radius: 8px;
}

.featured-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.featured-feature-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	stroke: var(--pea-deep);
	fill: none;
	stroke-width: 1.5;
}

.featured-feature-text {
	font-family: var(--font-serif-cn);
	font-size: 13px;
	color: var(--pea-ink);
	line-height: 1.6;
}

.featured-feature-text strong {
	display: block;
	font-weight: 500;
	color: var(--pea-deep);
	margin-bottom: 2px;
}

.featured-price {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 36px;
}

.featured-price-num {
	font-family: var(--font-serif-en);
	font-size: 40px;
	color: var(--pea-ink);
	font-weight: 500;
}

.featured-price-num sup {
	font-size: 18px;
	vertical-align: top;
	margin-right: 2px;
}

.featured-price-unit {
	font-family: var(--font-serif-cn);
	font-size: 13px;
	color: var(--pea-deep);
	opacity: 0.75;
}

.featured-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ==========================================================================
 * 7. Journal (home section wrapper)
 *
 * Card styles themselves live in core.css — this block only styles the
 * section container, which is unique to the home layout.
 * ========================================================================== */

.journal {
	padding: 140px 56px;
	background: var(--paper);
	position: relative;
	z-index: 2;
}

.journal-inner {
	max-width: 1400px;
	margin: 0 auto;
}

/* ==========================================================================
 * 8. Newsletter
 * ========================================================================== */

.newsletter {
	padding: 120px 56px;
	background: linear-gradient(135deg, var(--pea-ghost) 0%, var(--pea-light) 100%);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.newsletter::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10%;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(92, 116, 71, 0.1) 0%, transparent 70%);
	transform: translateY(-50%);
}

.newsletter::after {
	content: "";
	position: absolute;
	top: 20%;
	right: 15%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
}

.newsletter-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.newsletter-kicker {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 13px;
	color: var(--gold-deep);
	letter-spacing: 3px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.newsletter-title {
	font-family: var(--font-serif-cn);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 500;
	line-height: 1.2;
	color: var(--pea-ink);
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.newsletter-title .script {
	font-family: var(--font-script-cn);
	color: var(--pea-deep);
}

.newsletter-desc {
	font-family: var(--font-serif-cn);
	font-size: 14px;
	line-height: 1.9;
	color: var(--pea-ink);
	opacity: 0.8;
	margin-bottom: 40px;
}

.newsletter-form {
	display: flex;
	max-width: 520px;
	margin: 0 auto 20px;
	background: var(--paper);
	border-radius: 999px;
	padding: 6px;
	box-shadow: 0 10px 30px rgba(42, 58, 31, 0.08);
	flex-wrap: wrap;
}

.newsletter-input {
	flex: 1;
	min-width: 180px;
	padding: 16px 24px;
	border: none;
	background: transparent;
	font-family: var(--font-serif-cn);
	font-size: 14px;
	color: var(--pea-ink);
	outline: none;
}

.newsletter-input::placeholder { color: var(--pea-mid); }

.newsletter-btn {
	padding: 14px 28px;
	background: var(--pea-ink);
	color: var(--cream);
	border: none;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: background 0.3s;
	font-family: inherit;
}

.newsletter-btn:hover { background: var(--pea-deep); }

.newsletter-gift {
	font-family: var(--font-serif-en);
	font-style: italic;
	font-size: 12px;
	color: var(--pea-deep);
	letter-spacing: 1px;
}

/* ==========================================================================
 * 9. Responsive — home layout breakpoints
 * ========================================================================== */

@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
		padding: 100px 24px 60px;
		gap: 40px;
	}
	.hero-right { height: 400px; }
	.hero-circle { width: 340px; height: 340px; }

	.story,
	.collections,
	.promise,
	.featured,
	.journal,
	.newsletter {
		padding-left: 32px;
		padding-right: 32px;
	}

	.story-inner { grid-template-columns: 1fr; gap: 60px; }

	.section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.collection-grid { grid-template-columns: repeat(2, 1fr); }
	.collection-card:nth-child(even) { transform: none; }
	.collection-card:nth-child(even):hover { transform: translateY(-8px); }

	.promise-grid { grid-template-columns: repeat(2, 1fr); }

	.featured-inner { grid-template-columns: 1fr; gap: 60px; }
	.featured-visual { height: 520px; }

	.scroll-hint { display: none; }
}

@media (max-width: 640px) {
	.hero {
		padding: 90px 20px 48px;
		min-height: auto;
	}
	.hero-right { height: 320px; }
	.hero-circle { width: 260px; height: 260px; }
	.hero-badge { width: 100px; height: 100px; bottom: 12px; right: 8px; }
	.hero-badge-center { font-size: 18px; }
	.hero-badge-center span { font-size: 9px; letter-spacing: 2px; }
	.hero-pea-1 { width: 60px; }
	.hero-pea-2 { width: 48px; }
	.hero-pea-3 { width: 38px; }

	.story,
	.collections,
	.promise,
	.featured,
	.journal,
	.newsletter {
		padding-top: 80px;
		padding-bottom: 80px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.story-visual { height: 420px; }
	.story-card { padding: 24px; }
	.story-card-quote { font-size: 36px; }

	.collection-grid { grid-template-columns: 1fr; }
	.collection-visual { height: 240px; }

	.promise-grid { grid-template-columns: 1fr; gap: 24px; }
	.promise-badges { gap: 32px; }
	.promise-badge-num { font-size: 48px; }

	.featured-visual { height: 400px; }
	.featured-jar { width: 280px; height: 280px; }
	.featured-features { grid-template-columns: 1fr; padding: 20px; }
	.featured-tag { padding: 10px 14px; font-size: 12px; }
	.featured-tag-1 { left: 0; top: 8%; }
	.featured-tag-2 { right: 0; top: auto; bottom: 40%; }
	.featured-tag-3 { left: 0; bottom: 8%; }
	.featured-actions .btn-primary,
	.featured-actions .btn-secondary {
		width: 100%;
		text-align: center;
	}

	.newsletter-form { flex-direction: column; border-radius: 16px; padding: 12px; }
	.newsletter-input { padding: 12px 16px; }
	.newsletter-btn { width: 100%; padding: 14px; }
}
