/*
 * Sticks & Sparks marketing homepage — hero, adventure ideas, and featured
 * blog card. Header/footer/newsletter/photo-placeholder chrome now lives in
 * shared.css (reused by single.php too). Values are pixel-matched to the
 * .dc.html reference; don't "clean up" numbers without checking the handoff.
 */

/* Hero */

.ss-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	padding: 0 6vw;
	overflow: hidden;
}

.ss-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ss-hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(44, 50, 66, .72) 0%, rgba(44, 50, 66, .5) 42%, rgba(44, 50, 66, .15) 100%);
	pointer-events: none;
}

.ss-hero-content {
	position: relative;
	z-index: 1;
	max-width: 620px;
	padding: 80px 0;
}

.ss-eyebrow-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(245, 237, 225, .16);
	backdrop-filter: blur(4px);
	padding: 7px 16px;
	border-radius: 100px;
	margin-bottom: 26px;
}

.ss-eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ss-flame-core);
}

.ss-eyebrow-text {
	color: var(--ss-cream);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .22em;
}

.ss-hero h1 {
	font-weight: 700;
	font-size: clamp(38px, 5.2vw, 60px);
	line-height: 1.04;
	margin: 0 0 22px;
	color: var(--ss-cream);
	text-wrap: balance;
}

.ss-hero-sub {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: clamp(19px, 2.3vw, 25px);
	line-height: 1.5;
	color: var(--ss-flame-core);
	margin: 0 0 36px;
	max-width: 520px;
}

.ss-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--ss-trail-green);
	color: var(--ss-cream);
	font-weight: 600;
	font-size: 17px;
	padding: 17px 34px;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(61, 122, 92, .28);
	transition: background .18s, transform .18s, box-shadow .18s;
}

.ss-cta:hover {
	background: var(--ss-trail-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(61, 122, 92, .32);
}

/* Quick adventure ideas */

.ss-ideas {
	padding: 92px 6vw 84px;
	text-align: center;
}

.ss-ideas-eyebrow {
	font-family: 'Lora', serif;
	font-style: italic;
	font-size: 20px;
	color: var(--ss-clay);
	margin: 0 0 10px;
}

.ss-ideas h2 {
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 38px);
	margin: 0 0 14px;
	color: var(--ss-navy);
}

.ss-ideas-intro {
	max-width: 540px;
	margin: 0 auto 56px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(44, 50, 66, .7);
}

.ss-idea-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	max-width: 1080px;
	margin: 0 auto;
}

.ss-idea-card {
	background: #fff;
	border: 1px solid var(--ss-card-border);
	border-radius: 22px;
	padding: 40px 32px;
	text-align: left;
	transition: transform .2s, box-shadow .2s;
}

.ss-idea-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(44, 50, 66, .12);
}

.ss-idea-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: var(--ss-flame-core);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.ss-idea-card h3 {
	font-weight: 700;
	font-size: 21px;
	margin: 0 0 10px;
	color: var(--ss-navy);
}

.ss-idea-card p {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(44, 50, 66, .68);
	margin: 0;
}

/* From the Blog -- scrolling row of posts flagged "Homepage Feature" in the
   editor (see inc/homepage-feature.php). Card styles (.hscroll/.ss-relcard*)
   live in shared.css, reused from single.php's "Keep reading" band. */

.ss-blog {
	padding: 20px 6vw 96px;
}

.ss-blog-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.ss-blog-eyebrow {
	color: var(--ss-clay);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .14em;
	margin: 0 0 10px;
}

.ss-blog-inner h2 {
	font-weight: 700;
	font-size: clamp(26px, 3vw, 34px);
	margin: 0 0 32px;
	color: var(--ss-navy);
	text-wrap: balance;
}
