/* Homepage (front-page.php).
   Shared hero/drawer shell lives in assets/css/layout.css (.page-hero,
   .page-hero-tint, .page-hero-inner, .page-hero-title, .hero-line-wrap,
   .page-hero-lede, .page-hero-scroll-cue, .page-drawer, .section-eyebrow) —
   this file only holds home-specific rules: the full-bleed video hero,
   #intro, the pinned #products gallery, the #industries grid / pinned
   sequence, #services grid / carousel, #news teaser rows and the #cta
   buyer/seller band. Ported from project/home.dc.html.

   Pin/scrub motion (#products, #industries) is applied by
   assets/js/sections/home-products-gallery.js and
   home-industries-sequence.js. Both fall back to the plain CSS defined here
   (a scroll-snap strip for products, the static grid for industries) on
   <880px viewports or `prefers-reduced-motion: reduce` — see each file's
   header comment for the exact degrade behaviour. `.container-wide` is
   duplicated verbatim from product.css/service.css/industry.css/journal.css
   for the same "these page stylesheets are never enqueued together" reason
   documented throughout this theme. */

.container-wide {
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 clamp(22px, 5vw, 96px);
}

/* ===================================================================
   HERO (#top)
   =================================================================== */
.home-hero {
	background: var(--color-near-black-1);
}
.home-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: saturate(.74) contrast(1.04) brightness(.9);
}
section#products .prod-card-img , section#services .svc-card-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}
.home-hero-scrim {
	background:
		linear-gradient(90deg, rgba(20, 15, 9, .68) 0%, rgba(20, 15, 9, .28) 44%, rgba(20, 15, 9, 0) 74%),
		linear-gradient(0deg, rgba(20, 15, 9, .45) 0%, rgba(20, 15, 9, 0) 36%);
}
.home-hero-dim {
	position: absolute;
	inset: 0;
	z-index: 4;
	background: var(--color-near-black-1);
	opacity: 0;
	pointer-events: none;
}
.home-hero-inner {
	z-index: 3;
	will-change: transform;
}
.home-hero-eyebrow span {
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .36em;
	text-transform: uppercase;
	color: rgba(247, 244, 239, .82);
}
.home-hero-title {
	line-height: .88;
	font-size: clamp(2.8rem, 7.6vw, 8.4rem);
	margin-top: clamp(24px, 3.6vh, 44px);
}
.home-hero-lede {
	max-width: 36ch;
	margin-left: auto;
	margin-right: auto;
}
.home-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: clamp(34px, 5vh, 56px);
	color: var(--color-cream);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 9px;
}

.home-drawer {
	background: var(--color-cream-2);
}

/* ===================================================================
   INTRO / ABOUT TEASER (#intro)
   =================================================================== */
.home-intro {
	background: var(--color-cream);
	padding: clamp(64px, 14vh, 280px) 0;
	overflow: hidden;
}
.home-intro-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: grayscale(1);
	opacity: .5;
}
.home-intro-tint {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(120deg, rgba(10, 73, 31, .06) 0%, rgba(55, 45, 29, .05) 100%);
	pointer-events: none;
}
.home-intro-inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(22px, 3.5vh, 40px);
}
.home-intro-inner h2 {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.06;
	letter-spacing: .03em;
	margin: 0;
	font-size: clamp(1.9rem, 4.4vw, 4.6rem);
	color: var(--color-text);
}
.home-intro-inner p {
	font-family: var(--font-ui);
	font-size: clamp(.95rem, 1.1vw, 1.12rem);
	line-height: 1.75;
	color: rgba(55, 45, 29, .7);
	margin: 0;
	max-width: 58ch;
}
.home-intro-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: clamp(8px, 1.5vh, 18px);
	color: var(--color-text);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 8px;
}

/* ===================================================================
   PRODUCTS — pinned horizontal parallax gallery (#products)
   Base rules here double as the <880px / reduced-motion fallback that
   home-products-gallery.js switches to via `.is-lite` on
   [data-products-pin]: a native horizontal scroll-snap strip instead of a
   pinned/scrubbed track.
   =================================================================== */
.home-products {
	background: var(--color-cream-2);
}
.home-products-pin {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.home-products-header {
	position: absolute;
	top: clamp(56px, 10vh, 110px);
	left: 0;
	width: 100%;
	z-index: 3;
	padding: 0 clamp(22px, 5vw, 96px);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	pointer-events: none;
}
.home-products-header-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.home-products-header-col h2 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .05em;
	margin: 0;
	font-size: clamp(1.5rem, 3.4vw, 3.4rem);
	line-height: 1;
	color: var(--color-text);
	white-space: nowrap;
}
.home-products-viewall {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 8px;
	white-space: nowrap;
}
.home-products-track {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: clamp(20px, 2.4vw, 48px);
	padding: clamp(200px, 21vh, 248px) clamp(22px, 5vw, 96px) clamp(40px, 6vh, 70px);
	will-change: transform;
}
.prod-card {
	position: relative;
	flex: 0 0 auto;
	width: clamp(280px, 44vw, 540px);
	height: calc(100vh - clamp(200px, 21vh, 248px) - clamp(110px, 15vh, 170px));
	overflow: hidden;
	background: var(--color-text);
	text-decoration: none;
	color: inherit;
	display: block;
}
.prod-card-img {
	position: absolute;
	top: -10%;
	left: -16%;
	width: 132%;
	height: 120%;
	object-fit: cover;
	filter: saturate(.8) contrast(1.04) brightness(.92);
	transition: scale .55s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}
.prod-hovertint {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 45%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity .45s ease;
}
.prod-card-scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	height: 55%;
	top: auto;
	bottom: 0;
	background: linear-gradient(0deg, rgba(20, 15, 9, .7) 0%, rgba(20, 15, 9, 0) 100%);
}
.prod-card-body {
	position: absolute;
	inset: 0;
	padding: clamp(28px, 3.5vw, 52px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--color-cream);
	text-shadow: 0 2px 18px rgba(20, 15, 9, .7);
	z-index: 2;
}
.prod-card-index {
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: .18em;
	color: rgba(247, 244, 239, .75);
}
.prod-card-copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.prod-card-copy h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .03em;
	font-size: clamp(1.55rem, 2.6vw, 2.7rem);
	line-height: 1.02;
	margin: 0;
}
.prod-card-copy p {
	font-family: var(--font-ui);
	font-size: clamp(.9rem, 1vw, 1.05rem);
	line-height: 1.6;
	color: rgba(247, 244, 239, .95);
	margin: 0;
	max-width: 30ch;
}
.prod-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-top: 4px;
	color: var(--color-cream);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	padding-bottom: 7px;
	width: fit-content;
}
@media (hover: hover) and (pointer: fine) {
	.prod-card:hover .prod-card-img { scale: 1.04; }
	.prod-card:hover .prod-hovertint { opacity: 1; }
}
.home-products-scrollhint {
	position: absolute;
	bottom: clamp(24px, 4vh, 44px);
	left: clamp(22px, 5vw, 96px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	pointer-events: none;
}
.home-products-scrollhint span:first-child {
	font-family: var(--font-ui);
	font-size: 10px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: rgba(55, 45, 29, .5);
}
.home-products-scrollhint-line {
	width: 48px;
	height: 1px;
	background: rgba(55, 45, 29, .4);
	display: inline-block;
}

/* Lite mode (mobile / reduced-motion): applied by
   home-products-gallery.js — horizontal scroll-snap strip, no pin/scrub. */
.home-products-pin.is-lite {
	height: auto;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	position: relative;
}
.home-products-pin.is-lite::-webkit-scrollbar { display: none; }
.home-products-pin.is-lite .home-products-header {
	position: static;
	padding: 0 12px;
	pointer-events: auto;
}
.home-products-pin.is-lite .home-products-track {
	position: relative;
	padding: 24px 12px 70px;
	align-items: stretch;
	gap: 12px;
}
.home-products-pin.is-lite .prod-card {
	width: 70vw;
	height: 52vh;
	scroll-snap-align: center;
}
.home-products-pin.is-lite .home-products-scrollhint { display: none; }
.home-products-nav {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 48px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 14px;
	pointer-events: none;
}
.home-products-nav-rail {
	flex: 1;
	height: 1px;
	background: rgba(55, 45, 29, .22);
	position: relative;
	overflow: hidden;
}
.home-products-nav-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--color-text);
	transition: left .3s ease, width .3s ease;
}

@media (max-width: 879px) {
	.home-products-pin { padding-top: 64px; padding-bottom: 64px; }
}

/* ===================================================================
   INDUSTRIES (#industries)
   Default state is a static reveal grid — also the *permanent* state on
   <880px / reduced-motion, since home-industries-sequence.js no-ops there.
   On desktop with motion allowed, that script hides the grid and pins/
   scrubs through `.home-ind-stage` instead (same 6 `industry` posts).
   =================================================================== */
.home-industries {
	background: var(--color-cream);
	color: var(--color-text);
	padding: clamp(56px, 10vh, 200px) 0;
	overflow: hidden;
}
.home-industries-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 14px;
	margin-bottom: clamp(40px, 6vh, 72px);
}
.home-industries-head h2 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .05em;
	margin: 0;
	font-size: clamp(1.5rem, 3.4vw, 3.4rem);
	line-height: 1;
	color: var(--color-text);
}
.home-industries-head p {
	font-family: var(--font-ui);
	font-size: clamp(.88rem, 1vw, 1.02rem);
	line-height: 1.6;
	color: rgba(55, 45, 29, .62);
	margin: 0;
	max-width: 62ch;
}

.home-ind-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.4vw, 40px) clamp(24px, 3vw, 56px);
}
.home-ind-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-top: 1px solid rgba(55, 45, 29, .2);
	padding: 24px 22px 22px;
	margin: 0 -22px;
	text-decoration: none;
	color: inherit;
	transition: transform .5s cubic-bezier(.22, 1, .36, 1), border-color .5s ease, background-color .5s ease;
}
.home-ind-icon svg {
	display: block;
	width: 30px;
	height: 30px;
	color: var(--color-brand-green);
}
.home-ind-card h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .03em;
	font-size: clamp(1.4rem, 2.2vw, 2.1rem);
	line-height: 1.08;
	margin: 0;
	color: var(--color-text);
}
.home-ind-card p {
	font-family: var(--font-ui);
	font-size: clamp(.88rem, 1vw, 1rem);
	line-height: 1.65;
	color: rgba(55, 45, 29, .66);
	margin: 0;
}
@media (hover: hover) and (pointer: fine) {
	.home-ind-card:hover {
		transform: translateY(-8px);
		border-top-color: var(--color-brand-green);
		background-color: rgba(10, 73, 31, .05);
	}
}

/* Pinned sequence — JS-enhanced (desktop + motion allowed) only. */
.home-ind-stage {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: clamp(24px, 4vh, 48px);
}
.home-ind-stage[hidden] { display: none; }
/* Sticky (not ScrollTrigger-pinned) — see home-industries-sequence.js.
   The stage holds in view via native sticky positioning while the tall
   parent section scrolls past; no injected pin-spacer, no reserved gap. */
.home-ind-stage.is-sticky {
	position: sticky;
	top: 0;
}
.home-ind-stage-visual {
	position: relative;
	width: clamp(140px, 20vw, 240px);
	height: clamp(140px, 20vw, 240px);
}
.home-ind-icon-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand-green);
	opacity: 0;
	transition: opacity .5s ease, transform .5s ease;
}
.home-ind-icon-slide.is-active {
	opacity: 1;
}
.home-ind-icon-slide svg {
	display: block;
	width: 100%;
	height: 100%;
}
.home-ind-stage-caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	max-width: 640px;
	padding: 0 22px;
}
.home-ind-stage-count {
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: .2em;
	color: rgba(55, 45, 29, .5);
}
.home-ind-stage-caption h3 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .04em;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.6rem);
	color: var(--color-text);
}
.home-ind-stage-caption p {
	font-family: var(--font-ui);
	font-size: clamp(.95rem, 1.1vw, 1.1rem);
	line-height: 1.6;
	color: rgba(55, 45, 29, .66);
	margin: 0;
}
.home-ind-stage-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 8px;
}
.home-ind-stage-progress {
	position: absolute;
	left: clamp(22px, 5vw, 96px);
	right: clamp(22px, 5vw, 96px);
	bottom: clamp(24px, 4vh, 44px);
	height: 1px;
	background: rgba(55, 45, 29, .18);
}
.home-ind-stage-progress span {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--color-brand-green);
}

@media (max-width: 879px) {
	.home-industries { padding: 48px 0; }
	.home-ind-grid { grid-template-columns: 1fr; }
	.home-ind-card { margin: 0; }
}

/* ===================================================================
   SERVICES (#services) — 3-card grid on desktop; assets/js/sections/
   services-carousel.js converts [data-svc-grid] into a horizontal
   scroll-snap carousel with a progress rail below 880px.
   =================================================================== */
.home-services {
	background: linear-gradient(180deg, var(--color-near-black-1) 0%, var(--color-near-black-2) 100%);
	color: var(--color-cream);
	padding: clamp(56px, 10vh, 200px) 0;
	overflow: hidden;
}
.home-services-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 14px;
	margin-bottom: clamp(48px, 8vh, 90px);
}
.home-services-eyebrow { color: var(--color-sage); }
.home-services-head h2 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .05em;
	margin: 0;
	font-size: clamp(1.5rem, 3.4vw, 3.4rem);
	line-height: 1;
	color: var(--color-cream);
}
.home-services-head p {
	font-family: var(--font-ui);
	font-size: clamp(.88rem, 1vw, 1.02rem);
	line-height: 1.6;
	color: rgba(247, 244, 239, .66);
	margin: 0;
}
.home-svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.4vw, 40px);
}
.svc-card {
	position: relative;
	overflow: hidden;
	background: #1a130b;
	height: clamp(440px, 62vh, 680px);
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s ease;
}
.svc-card-img {
	position: absolute;
	top: -10%;
	left: -16%;
	width: 132%;
	height: 120%;
	object-fit: cover;
	filter: saturate(.82) contrast(1.03) brightness(.92);
	transition: scale .55s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
}
.svc-hovertint {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 45%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity .45s ease;
}
.svc-card-scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	height: 55%;
	top: auto;
	bottom: 0;
	background: linear-gradient(0deg, rgba(20, 15, 9, .7) 0%, rgba(20, 15, 9, 0) 100%);
}
.svc-card-body {
	position: absolute;
	inset: 0;
	padding: clamp(28px, 3vw, 52px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	color: var(--color-cream);
	text-shadow: 0 2px 18px rgba(20, 15, 9, .7);
	z-index: 2;
}
.svc-card-index {
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: .18em;
	color: rgba(247, 244, 239, .78);
}
.svc-card-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.svc-card-copy h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .03em;
	font-size: clamp(1.55rem, 2.6vw, 2.7rem);
	line-height: 1.02;
	margin: 0;
}
.svc-card-copy p {
	font-family: var(--font-ui);
	font-size: clamp(.9rem, 1vw, 1.05rem);
	line-height: 1.6;
	color: rgba(247, 244, 239, .95);
	margin: 0;
	max-width: 30ch;
}
.svc-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-top: 4px;
	color: var(--color-cream);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	padding-bottom: 7px;
	width: fit-content;
	align-self: center;
}
.svc-card-arrow { font-size: 14px; line-height: 1; }
@media (hover: hover) and (pointer: fine) {
	.svc-card:hover { transform: translateY(-10px); box-shadow: 0 26px 60px rgba(11, 9, 5, .45); }
	.svc-card:hover .svc-card-img { scale: 1.04; filter: saturate(.8) contrast(1.04) brightness(.6); }
	.svc-card:hover .svc-hovertint { opacity: 1; }
}

/* Carousel mode (assets/js/sections/services-carousel.js, <880px). */
.home-svc-grid.is-carousel {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 12px;
	scrollbar-width: none;
	scroll-padding-left: 12px;
}
.home-svc-grid.is-carousel::-webkit-scrollbar { display: none; }
.home-svc-grid.is-carousel .svc-card {
	flex: 0 0 70vw;
	scroll-snap-align: center;
	height: 52vh;
}
.home-svc-nav {
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.home-svc-nav-rail {
	flex: 1;
	height: 1px;
	background: rgba(247, 244, 239, .28);
	position: relative;
	overflow: hidden;
}
.home-svc-nav-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--color-cream);
	transition: left .3s ease;
}

@media (max-width: 879px) {
	.home-services { padding: 48px 0; }
	.home-services-head { margin-bottom: 28px; }
}

/* ===================================================================
   NEWS / JOURNAL TEASER (#news)
   =================================================================== */
.home-news {
	background: var(--color-cream);
	padding: clamp(56px, 10vh, 200px) 0;
}
.home-news-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: clamp(28px, 4vh, 48px);
	margin-bottom: clamp(40px, 6vh, 72px);
}
.home-news-head-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.home-news-head-col h2 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .05em;
	margin: 0;
	font-size: clamp(1.5rem, 3.4vw, 3.4rem);
	line-height: 1;
	color: var(--color-text);
}
.home-news-all {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--color-text);
	font-family: var(--font-ui);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 4px 2px 8px;
	white-space: nowrap;
}
.home-news-grid {
	display: flex;
	flex-direction: column;
}
.home-news-row {
	text-decoration: none;
	color: rgba(55, 45, 29, .5);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(20px, 4vw, 72px);
	padding: clamp(13px, 1.8vh, 22px) 0;
	border-top: 1px solid rgba(55, 45, 29, .18);
	transition: color .4s ease, padding-left .4s ease;
}
.home-news-row:last-child { border-bottom: 1px solid rgba(55, 45, 29, .18); }
.home-news-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 120px;
}
.home-news-cat {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--color-brand-green);
	display: block;
}
.home-news-date {
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(55, 45, 29, .5);
	display: block;
}
.home-news-row h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .02em;
	font-size: clamp(1.3rem, 2.2vw, 2.2rem);
	line-height: 1.12;
	margin: 0;
	max-width: 30ch;
	color: inherit;
}
.home-news-plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
@media (hover: hover) and (pointer: fine) {
	.home-news-row:hover { color: var(--color-text); padding-left: 14px; }
	.home-news-row:hover h3 { color: var(--color-text); }
	.home-news-row:hover .home-news-plus { transform: rotate(90deg); }
}
.home-news-empty {
	font-family: var(--font-ui);
	color: rgba(55, 45, 29, .6);
}

@media (max-width: 879px) {
	.home-news-grid > a:nth-child(4) { display: none; }
}

/* ===================================================================
   CTA — Buyers / Sellers (#cta)
   =================================================================== */
.home-cta {
	background: var(--color-cream-2);
	padding: clamp(60px, 12vh, 220px) 0;
}
.home-cta-grid {
	display: grid;
	grid-template-columns: .85fr 1.55fr;
	gap: clamp(40px, 5vw, 96px);
	align-items: center;
}
.home-cta-head h2 {
	font-family: var(--font-display);
	font-weight: 300;
	letter-spacing: .04em;
	margin: 24px 0 0;
	font-size: clamp(2.2rem, 4.4vw, 4.8rem);
	line-height: 1.02;
	max-width: 14ch;
	color: var(--color-text);
}
.home-cta-ways {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: clamp(36px, 5vw, 80px);
}
.home-cta-way {
	flex: 0 1 360px;
	text-decoration: none;
	color: var(--color-text);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	padding: clamp(8px, 1vh, 16px) 0;
}
.home-cta-kicker {
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--color-brand-green);
}
.home-cta-title {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: .03em;
	font-size: clamp(1.7rem, 3vw, 2.8rem);
	line-height: 1.04;
	white-space: nowrap;
}
.home-cta-desc {
	font-family: var(--font-ui);
	font-size: .92rem;
	line-height: 1.65;
	color: rgba(55, 45, 29, .66);
	max-width: 36ch;
}
.home-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	padding-bottom: 7px;
	width: fit-content;
}
.home-cta-divider {
	background: rgba(55, 45, 29, .2);
	width: 1px;
	flex: 0 0 1px;
	align-self: stretch;
	display: block;
}

@media (max-width: 879px) {
	.home-cta-grid { grid-template-columns: 1fr; gap: 32px; }
	.home-cta-ways { flex-direction: column; gap: 28px; }
	.home-cta-divider { display: none; }
	.home-cta-title { white-space: normal; }
}

/* ===================================================================
   GRAPE 360 (#grape360) — Three.js scroll-spin hero
   Sits inside .page-drawer, between #top and #intro. Background is set
   dynamically by assets/js/grape/grape-scene.js (cream -> dark cocoa wash
   keyed to rotation progress); the flat color below is only the pre-JS/
   no-JS fallback. Canvas sizing/pause and the scroll-lock state machine
   live in assets/js/grape/grape-scene.js + grape-scroll-lock.js.
   =================================================================== */
.home-grape {
	position: relative;
	background: var(--color-cream-2);
	height: 100vh;
}
.home-grape-inner {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-grape-word {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2.8rem, 10.5vw, 11.5rem);
	letter-spacing: .2em;
	color: var(--color-cream);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	z-index: 3;
	mix-blend-mode: difference;
	text-align: center;
}
.home-grape-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-grape-canvas canvas {
	display: block;
}
.home-grape-loading {
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(55, 45, 29, .45);
	transition: opacity .4s ease;
	opacity: 1;
}
.home-grape-canvas.is-ready .home-grape-loading {
	opacity: 0;
	pointer-events: none;
}
.home-grape-noscript {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 24px;
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--color-text);
}

@media (max-width: 879px) {
	.home-grape,
	.home-grape-inner {
		height: 600px;
	}
	.home-grape-word {
		padding: 0 12px;
		box-sizing: border-box;
		font-size: clamp(1.6rem, 8vw, 2.6rem);
	}
}

@media (max-width: 679px) {
section#cta .home-cta-way , .about-cta-card{
    flex: 0 1 auto;
}
}
