/* Layout */
.pec-home-hero {
	--pec-hero-green: #6ea820;
	--pec-hero-ink: #18221a;
	--pec-hero-grid-left: max(0px, calc((100vw - 1200px) / 2));
	--pec-hero-transition-duration: 650ms;
	width: 100vw;
	max-width: 100vw;
	margin: 0 calc(50% - 50vw);
	font-family: inherit;
}

.pec-home-hero *,
.pec-home-hero *::before,
.pec-home-hero *::after { box-sizing: border-box; }
.pec-home-hero [hidden] { display: none !important; }

.pec-home-hero__stage {
	position: relative;
	isolation: isolate;
	width: 100%;
	aspect-ratio: 20 / 9;
	min-height: 390px;
	max-height: 680px;
	overflow: hidden;
	background: #dfe8e7;
	touch-action: pan-y;
}

/* Slides and composited transitions */
.pec-home-hero__slide {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #dfe8e7;
	color: var(--pec-hero-text-color, #fff);
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 0, 0);
	transition:
		opacity var(--pec-hero-transition-duration) cubic-bezier(.22, .68, 0, 1),
		transform var(--pec-hero-transition-duration) cubic-bezier(.22, .68, 0, 1),
		visibility var(--pec-hero-transition-duration) step-end;
}

.pec-home-hero__slide.is-active,
.pec-home-hero__slide.is-entering,
.pec-home-hero__slide.is-leaving { visibility: visible; }
.pec-home-hero__slide.is-active { z-index: 2; opacity: 1; visibility: visible; }
.pec-home-hero__slide.is-entering { z-index: 3; opacity: 0; }
.pec-home-hero__slide.is-entering.is-active { opacity: 1; }
.pec-home-hero__slide.is-leaving { z-index: 1; opacity: 0; }

.pec-home-hero__slide.is-entering[data-transition="slide-left"] { transform: translate3d(2.4%, 0, 0); }
.pec-home-hero__slide.is-entering[data-transition="slide-right"] { transform: translate3d(-2.4%, 0, 0); }
.pec-home-hero__slide.is-active[data-transition="slide-left"],
.pec-home-hero__slide.is-active[data-transition="slide-right"] { transform: translate3d(0, 0, 0); }
.pec-home-hero__slide.is-leaving[data-exit-transition="slide-left"] { transform: translate3d(-1.5%, 0, 0); }
.pec-home-hero__slide.is-leaving[data-exit-transition="slide-right"] { transform: translate3d(1.5%, 0, 0); }
.pec-home-hero__slide.is-entering[data-transition="crossfade"] { transform: scale(1.015); }
.pec-home-hero__slide.is-active[data-transition="crossfade"] { transform: scale(1); }
.pec-home-hero__slide.is-leaving[data-exit-transition="crossfade"] { transform: scale(.99); }
.pec-home-hero__slide.is-entering[data-transition="soft-zoom"] { transform: scale(1.035); }
.pec-home-hero__slide.is-active[data-transition="soft-zoom"] { transform: scale(1); }
.pec-home-hero__slide.is-leaving[data-exit-transition="soft-zoom"] { transform: scale(.985); }

/* Media */
.pec-home-hero__picture,
.pec-home-hero__background-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.pec-home-hero__background-image {
	max-width: none !important;
	object-fit: cover;
	object-position: var(--pec-hero-position-desktop, center center);
}

.pec-home-hero .pec-home-hero__picture > .pec-home-hero__background-image,
.pec-home-hero__stage img.pec-home-hero__background-image {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
}

.pec-home-hero__slide--collage { background: #fff; }
.pec-home-hero__collage { position: absolute; inset: 0; width: 100%; height: 100%; }
.pec-home-hero__slide--collage .pec-home-hero__picture { z-index: 1; }
.pec-home-hero__slide--collage .pec-home-hero__picture--graft-main { z-index: 1; }
.pec-home-hero__slide--collage .pec-home-hero__picture--graft-label { z-index: 2; }
.pec-home-hero__slide--collage .pec-home-hero__picture--graft-detail { z-index: 1; }
.pec-home-hero__slide--collage .pec-home-hero__graft-image {
	position: absolute;
	inset: auto;
	width: auto;
	max-width: 32%;
	height: auto;
	max-height: 83%;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .15));
}
.pec-home-hero__slide--collage .pec-home-hero__graft-main { left: 2%; top: 8.15%; }
.pec-home-hero__slide--collage .pec-home-hero__graft-label { left: 33%; top: 16%; max-width: 24% !important; max-height: 62% !important; }
.pec-home-hero__slide--collage .pec-home-hero__graft-detail { right: 12%; top: 8.15%; }

/* Overlay */
.pec-home-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: transparent;
	opacity: var(--pec-hero-overlay-opacity, .55);
	pointer-events: none;
}
.pec-home-hero__slide[data-overlay="none"] .pec-home-hero__shade { opacity: 0; }
.pec-home-hero__slide[data-overlay="light"] .pec-home-hero__shade { background: linear-gradient(90deg, rgba(255,255,255,var(--pec-hero-overlay-opacity)), rgba(255,255,255,0) 75%); }
.pec-home-hero__slide[data-overlay="dark"] .pec-home-hero__shade { background: rgba(12, 20, 15, var(--pec-hero-overlay-opacity)); }
.pec-home-hero__slide[data-overlay="gradient-left"] .pec-home-hero__shade { background: linear-gradient(90deg, rgba(12,23,15,var(--pec-hero-overlay-opacity)), rgba(12,23,15,calc(var(--pec-hero-overlay-opacity) * .38)) 52%, transparent 82%); }
.pec-home-hero__slide[data-overlay="gradient-right"] .pec-home-hero__shade { background: linear-gradient(270deg, rgba(12,23,15,var(--pec-hero-overlay-opacity)), rgba(12,23,15,calc(var(--pec-hero-overlay-opacity) * .38)) 52%, transparent 82%); }

/* Content */
.pec-home-hero__copy {
	position: absolute;
	z-index: 2;
	left: clamp(28px, 8vw, 124px);
	top: 50%;
	width: min(47%, 650px);
	transform: translate3d(0, -50%, 0);
	color: var(--pec-hero-text-color, #fff);
	text-align: left;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}
.pec-home-hero__slide[data-align-desktop="center"] .pec-home-hero__copy { left: 50%; transform: translate3d(-50%, -50%, 0); text-align: center; }
.pec-home-hero__slide[data-align-desktop="right"] .pec-home-hero__copy { right: clamp(28px, 8vw, 124px); left: auto; text-align: right; }
.pec-home-hero__slide[data-vertical-desktop="top"] .pec-home-hero__copy { top: clamp(32px, 8vh, 90px); transform: none; }
.pec-home-hero__slide[data-vertical-desktop="bottom"] .pec-home-hero__copy { top: auto; bottom: clamp(32px, 8vh, 90px); transform: none; }
.pec-home-hero__slide[data-vertical-desktop="top"][data-align-desktop="center"] .pec-home-hero__copy,
.pec-home-hero__slide[data-vertical-desktop="bottom"][data-align-desktop="center"] .pec-home-hero__copy { transform: translateX(-50%); }

.pec-home-hero__title {
	margin: 0 0 12px;
	color: inherit !important;
	font-family: inherit;
	font-size: clamp(38px, 5.3vw, 76px);
	font-weight: 650;
	line-height: 1.04;
	letter-spacing: -.025em;
	text-wrap: balance;
}
.pec-home-hero__subtitle {
	max-width: 42ch;
	margin: 0 0 26px;
	color: inherit !important;
	font-size: clamp(19px, 2.25vw, 34px);
	font-weight: 400;
	line-height: 1.28;
	text-wrap: pretty;
}
.pec-home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pec-home-hero__slide[data-align-desktop="center"] .pec-home-hero__actions { justify-content: center; }
.pec-home-hero__slide[data-align-desktop="right"] .pec-home-hero__actions { justify-content: flex-end; }
.pec-home-hero__cta {
	display: inline-flex;
	min-width: 158px;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 13px 23px;
	border: 1px solid var(--pec-hero-green);
	border-radius: 3px;
	background: var(--pec-hero-green);
	color: #fff !important;
	font-size: 15px;
	font-weight: 650;
	letter-spacing: .01em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none !important;
	text-shadow: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.pec-home-hero__cta--secondary { border-color: rgba(255,255,255,.88); background: rgba(255,255,255,.94); color: #263326 !important; }
.pec-home-hero__cta--outline { border-color: rgba(255,255,255,.9); background: rgba(15,25,18,.12); color: #fff !important; }
.pec-home-hero__cta:hover { border-color: #4e7d13; background: #4e7d13; color: #fff !important; transform: translateY(-2px); }
.pec-home-hero__cta--secondary:hover { border-color: #fff; background: #fff; color: #263326 !important; }
.pec-home-hero__cta--outline:hover { border-color: #fff; background: #fff; color: #263326 !important; }

/* First-paint-safe entrance and image motion: no opacity rule applies to the hero image. */
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade"] [data-pec-hero-title],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-up"] [data-pec-hero-title],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-left"] [data-pec-hero-title],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-right"] [data-pec-hero-title],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="stagger-up"] [data-pec-hero-title],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade"] [data-pec-hero-subtitle],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-up"] [data-pec-hero-subtitle],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-left"] [data-pec-hero-subtitle],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-right"] [data-pec-hero-subtitle],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="stagger-up"] [data-pec-hero-subtitle],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade"] [data-pec-hero-cta],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-up"] [data-pec-hero-cta],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-left"] [data-pec-hero-cta],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="fade-right"] [data-pec-hero-cta],
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="stagger-up"] [data-pec-hero-cta] {
	animation: pec-hero-initial-reveal 420ms cubic-bezier(.2,.7,.2,1) both;
}
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="stagger-up"] [data-pec-hero-subtitle] { animation-delay: 90ms; }
.pec-home-hero.is-enhanced > .pec-home-hero__stage > .pec-home-hero__slide.is-active[data-content-animation="stagger-up"] [data-pec-hero-cta] { animation-delay: 180ms; }
.pec-home-hero.is-enhanced .pec-home-hero__slide.is-active[data-image-animation="ken-burns-in"] .pec-home-hero__background-image {
	animation: pec-hero-ken-in var(--pec-hero-slide-duration, 6000ms) linear both;
}
.pec-home-hero.is-enhanced .pec-home-hero__slide.is-active[data-image-animation="ken-burns-out"] .pec-home-hero__background-image {
	animation: pec-hero-ken-out var(--pec-hero-slide-duration, 6000ms) linear both;
}
.pec-home-hero__slide.is-content-animating[data-content-animation="fade"] [data-pec-hero-title],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade"] [data-pec-hero-subtitle],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade"] [data-pec-hero-cta] { animation: pec-hero-fade 420ms ease both; }
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-up"] [data-pec-hero-title],
.pec-home-hero__slide.is-content-animating[data-content-animation="stagger-up"] [data-pec-hero-title] { animation: pec-hero-up 440ms cubic-bezier(.2,.7,.2,1) both; }
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-up"] [data-pec-hero-subtitle],
.pec-home-hero__slide.is-content-animating[data-content-animation="stagger-up"] [data-pec-hero-subtitle] { animation: pec-hero-up 440ms cubic-bezier(.2,.7,.2,1) 90ms both; }
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-up"] [data-pec-hero-cta],
.pec-home-hero__slide.is-content-animating[data-content-animation="stagger-up"] [data-pec-hero-cta] { animation: pec-hero-up 440ms cubic-bezier(.2,.7,.2,1) 180ms both; }
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-left"] [data-pec-hero-title],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-left"] [data-pec-hero-subtitle],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-left"] [data-pec-hero-cta] { animation: pec-hero-from-left 440ms cubic-bezier(.2,.7,.2,1) both; }
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-right"] [data-pec-hero-title],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-right"] [data-pec-hero-subtitle],
.pec-home-hero__slide.is-content-animating[data-content-animation="fade-right"] [data-pec-hero-cta] { animation: pec-hero-from-right 440ms cubic-bezier(.2,.7,.2,1) both; }

@keyframes pec-hero-initial-reveal { from { opacity: .84; transform: translate3d(0, 8px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes pec-hero-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pec-hero-up { from { opacity: 0; transform: translate3d(0, 16px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes pec-hero-from-left { from { opacity: 0; transform: translate3d(-20px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes pec-hero-from-right { from { opacity: 0; transform: translate3d(20px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes pec-hero-ken-in { from { transform: scale(1); } to { transform: scale(1.045); } }
@keyframes pec-hero-ken-out { from { transform: scale(1.045); } to { transform: scale(1); } }

/* The only carousel control is revealed on keyboard focus, inside the image. */
.pec-home-hero__pause-accessible {
	position: absolute;
	z-index: 5;
	top: 12px;
	right: 12px;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	background: #fff;
	color: #18221a;
	font: 600 14px/1.2 "Lato", Arial, sans-serif;
	cursor: pointer;
}
.pec-home-hero__pause-accessible:focus-visible {
	width: auto;
	height: auto;
	padding: 11px 15px;
	margin: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	border-radius: 2px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .24);
}
.pec-home-hero button:focus-visible,
.pec-home-hero a:focus-visible { outline: 3px solid #145da0; outline-offset: 3px; }

/* Responsive */
@media (max-width: 767px) {
	.pec-home-hero__stage { aspect-ratio: 8 / 9; min-height: 390px; max-height: 540px; }
	.pec-home-hero__background-image { object-position: var(--pec-hero-position-mobile, 76% bottom); }
	.pec-home-hero__slide[data-overlay="gradient-left"] .pec-home-hero__shade,
	.pec-home-hero__slide[data-overlay="gradient-right"] .pec-home-hero__shade { background: linear-gradient(0deg, rgba(12,23,15,var(--pec-hero-overlay-opacity)), rgba(12,23,15,calc(var(--pec-hero-overlay-opacity) * .52)) 44%, transparent 100%); }
	.pec-home-hero__copy { top: auto; bottom: 7%; left: 7%; width: 86%; transform: none; }
	.pec-home-hero__slide[data-align-mobile="center"] .pec-home-hero__copy { right: auto; left: 50%; transform: translateX(-50%); text-align: center; }
	.pec-home-hero__slide[data-align-mobile="right"] .pec-home-hero__copy { right: 7%; left: auto; text-align: right; }
	.pec-home-hero__slide[data-vertical-mobile="top"] .pec-home-hero__copy { top: 7%; bottom: auto; transform: none; }
	.pec-home-hero__slide[data-vertical-mobile="center"] .pec-home-hero__copy { top: 50%; bottom: auto; transform: translateY(-50%); }
	.pec-home-hero__slide[data-vertical-mobile="center"][data-align-mobile="center"] .pec-home-hero__copy { transform: translate(-50%, -50%); }
	.pec-home-hero__title { margin-bottom: 8px; font-size: clamp(36px, 10vw, 50px); line-height: 1.02; }
	.pec-home-hero__subtitle { margin-bottom: 18px; font-size: clamp(19px, 5.4vw, 24px); }
	.pec-home-hero__actions { gap: 8px; margin-top: 16px; }
	.pec-home-hero__slide[data-align-mobile="center"] .pec-home-hero__actions { justify-content: center; }
	.pec-home-hero__slide[data-align-mobile="right"] .pec-home-hero__actions { justify-content: flex-end; }
	.pec-home-hero__cta { min-width: 138px; min-height: 48px; padding: 11px 15px; font-size: 14px; }
	.pec-home-hero__slide--collage .pec-home-hero__graft-image { max-width: 75%; max-height: 89%; }
	.pec-home-hero__slide--collage .pec-home-hero__graft-main { left: 13%; top: 6%; }
	.pec-home-hero__slide--collage .pec-home-hero__graft-label { left: 12%; top: 12%; max-width: 42% !important; max-height: 35% !important; }
	.pec-home-hero__slide--collage .pec-home-hero__graft-detail { display: none; }
	.pec-home-hero__slide--collage .pec-home-hero__copy { left: 14%; bottom: 20%; width: 82%; }
	.pec-home-hero__slide--collage .pec-home-hero__title { font-size: clamp(26px, 7vw, 36px); }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.pec-home-hero__stage { aspect-ratio: 778 / 540; min-height: 440px; max-height: 540px; }
	.pec-home-hero__copy { width: min(56%, 560px); }
	.pec-home-hero__title { font-size: clamp(36px, 5.4vw, 58px); }
	.pec-home-hero__slide--collage .pec-home-hero__graft-image { max-width: 36%; }
}

@media (prefers-reduced-motion: reduce) {
	.pec-home-hero *,
	.pec-home-hero *::before,
	.pec-home-hero *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.pec-home-hero__slide.is-entering,
	.pec-home-hero__slide.is-leaving { transform: none !important; }
}

/* Historic compositions: dimensions and anchors follow the saved SR6 module grid. */
.pec-home-hero__slide.pec-home-hero__slide--graminees .pec-home-hero__copy,
.pec-home-hero__slide.pec-home-hero__slide--erables-du-japon .pec-home-hero__copy,
.pec-home-hero__slide.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__copy,
.pec-home-hero__slide.pec-home-hero__slide--porte-greffes .pec-home-hero__copy {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	transform: none;
	text-shadow: none;
}

/* Graminées: large editorial title left, copy right, CTA low/right. */
.pec-home-hero__slide--graminees .pec-home-hero__copy::after {
	position: absolute;
	z-index: 1;
	top: 20.2%;
	left: calc(var(--pec-hero-grid-left) + min(43.5vw, 522px));
	color: var(--pec-hero-green);
	content: "›";
	font: 300 clamp(110px, 13.17vw, 158px)/.72 "Lato", Arial, sans-serif;
	pointer-events: none;
}
.pec-home-hero__slide--graminees .pec-home-hero__title {
	position: absolute;
	z-index: 2;
	top: 27.6%;
	left: calc(var(--pec-hero-grid-left) + min(11.92vw, 143px));
	width: min(35vw, 380px);
	margin: 0;
	color: #fff !important;
	font: 700 clamp(54px, 6.58vw, 79px)/1.04 "Playfair Display", Georgia, serif;
	letter-spacing: -.025em;
	text-shadow: 0 2px 10px rgba(16, 28, 18, .22);
}
.pec-home-hero__slide--graminees .pec-home-hero__subtitle {
	position: absolute;
	top: 23.9%;
	right: calc(var(--pec-hero-grid-left) + min(11.83vw, 142px));
	width: min(335px, 28vw);
	max-width: none;
	margin: 0;
	color: #f9f9f9 !important;
	font: 600 clamp(27px, 2.92vw, 35px)/1.04 "Playfair Display", Georgia, serif;
	text-align: right;
	text-shadow: 0 2px 11px rgba(13, 28, 21, .56);
}
.pec-home-hero__slide--graminees .pec-home-hero__actions {
	position: absolute;
	right: calc(var(--pec-hero-grid-left) + min(11.92vw, 143px));
	bottom: 9.26%;
	margin: 0;
}

/* Rootstocks: keep three separate source layers and the low-center call to action. */
.pec-home-hero__slide--porte-greffes .pec-home-hero__actions {
	position: absolute;
	top: 73.9%;
	left: 33.42%;
	margin: 0;
}
.pec-home-hero__slide--porte-greffes .pec-home-hero__cta {
	width: min(280px, 82vw);
	min-width: 0;
	min-height: 42px;
	padding: 12px 16px;
	font-size: 17px;
	font-weight: 500;
}
.pec-home-hero__slide--porte-greffes .pec-home-hero__cta::after { margin-left: 9px; content: "›"; font-size: 22px; line-height: .7; }

/* Japanese maples: compact left-aligned title/subtitle pair, CTA at bottom/right. */
.pec-home-hero__slide--erables-du-japon .pec-home-hero__shade {
	background: linear-gradient(90deg, rgba(12, 23, 15, .46), rgba(12, 23, 15, .17) 48%, transparent 82%);
}
.pec-home-hero__slide--erables-du-japon .pec-home-hero__title {
	position: absolute;
	top: 27.6%;
	left: calc(var(--pec-hero-grid-left) + min(11.92vw, 143px));
	width: min(65vw, 760px);
	margin: 0;
	color: #fff !important;
	font: 700 clamp(54px, 6.58vw, 79px)/1.04 "Playfair Display", Georgia, serif;
	letter-spacing: -.025em;
	text-shadow: 0 2px 10px rgba(10, 22, 13, .38);
}
.pec-home-hero__slide--erables-du-japon .pec-home-hero__subtitle {
	position: absolute;
	top: 41.5%;
	left: calc(var(--pec-hero-grid-left) + min(11.92vw, 143px));
	width: min(46vw, 547px);
	max-width: none;
	margin: 0;
	color: #f9f9f9 !important;
	font: 600 clamp(27px, 2.92vw, 35px)/1.05 "Playfair Display", Georgia, serif;
	text-shadow: 0 2px 10px rgba(10, 22, 13, .45);
}
.pec-home-hero__slide--erables-du-japon .pec-home-hero__actions {
	position: absolute;
	right: calc(var(--pec-hero-grid-left) + min(11.92vw, 143px));
	bottom: 9.26%;
	margin: 0;
}

/* Old fruit-tree banner has its own small upper-left headline and stacked CTAs. */
.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__title {
	position: absolute;
	top: 12.04%;
	left: calc(var(--pec-hero-grid-left) + min(3vw, 36px));
	width: min(323px, 46vw);
	margin: 0;
	color: #fff !important;
	font: 700 clamp(34px, 4.17vw, 50px)/1.12 "Playfair Display", Georgia, serif;
	letter-spacing: -.015em;
	text-shadow: 0 2px 11px rgba(15, 25, 18, .52);
}
.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__actions {
	position: absolute;
	right: calc(var(--pec-hero-grid-left) + min(12.1vw, 145px));
	bottom: 8.7%;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 12px;
	margin: 0;
}
.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__cta,
.pec-home-hero__slide--erables-du-japon .pec-home-hero__cta {
	min-width: 0;
	min-height: 42px;
	padding: 12px 30px;
	border: 0;
	border-radius: 0;
	background: #6ea820;
	color: #fff !important;
	font: 300 22px/1.2 "Lato", Arial, sans-serif;
	letter-spacing: 0;
}
.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__cta--secondary {
	background: #6ea820;
	color: #fff !important;
}

/* Shared historic button treatment; no modern pill/button styling. */
.pec-home-hero__slide--graminees .pec-home-hero__cta {
	min-width: 0;
	min-height: 42px;
	padding: 12px 30px;
	border: 0;
	border-radius: 0;
	background: #6ea820;
	color: #fff !important;
	font: 300 22px/1.2 "Lato", Arial, sans-serif;
	letter-spacing: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.pec-home-hero__slide--graminees .pec-home-hero__title,
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__title {
		top: 12.8%;
		left: 9%;
		font-size: clamp(48px, 8vw, 64px);
	}
	.pec-home-hero__slide--graminees .pec-home-hero__copy::after { top: 5%; left: 57%; font-size: 19vw; }
	.pec-home-hero__slide--graminees .pec-home-hero__subtitle,
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__subtitle {
		top: 28.7%;
		left: 9%;
		right: auto;
		width: min(68%, 547px);
		font-size: clamp(28px, 4.5vw, 35px);
		text-align: left;
	}
	.pec-home-hero__slide--graminees .pec-home-hero__actions,
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__actions { right: 6.4%; bottom: 9.3%; }
	.pec-home-hero__slide--porte-greffes .pec-home-hero__actions { top: 73.9%; left: 51.4%; }
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__title { left: 4.6%; top: 12%; }
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__actions { right: 6.4%; bottom: 8.7%; }
}

@media (max-width: 767px) {
	.pec-home-hero__slide--graminees .pec-home-hero__title {
		top: 7.6%;
		left: 5.4%;
		width: 78%;
		font-size: clamp(54px, 15vw, 64px);
		line-height: 1;
	}
	.pec-home-hero__slide--graminees .pec-home-hero__copy::after {
		top: 1.5%;
		left: auto;
		right: 9%;
		font-size: 33vw;
	}
	.pec-home-hero__slide--graminees .pec-home-hero__subtitle {
		top: 22%;
		left: 7.5%;
		right: auto;
		width: 85%;
		font-size: clamp(25px, 7vw, 30px);
		line-height: 1.03;
		text-align: center;
	}
	.pec-home-hero__slide--graminees .pec-home-hero__actions {
		right: 8.3%;
		bottom: 7.4%;
	}
	.pec-home-hero__slide--graminees .pec-home-hero__cta,
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__cta,
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__cta {
		min-height: 42px;
		padding: 12px 20px;
		font-size: 18px;
	}
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__title {
		top: 4.4%;
		left: 5.4%;
		width: 89%;
		font-size: clamp(44px, 13.5vw, 58px);
		line-height: 1.08;
	}
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__subtitle {
		top: 37.2%;
		left: 5.4%;
		width: 80%;
		font-size: clamp(27px, 8.4vw, 35px);
		line-height: 1.08;
	}
	.pec-home-hero__slide--erables-du-japon .pec-home-hero__actions { right: 8.3%; bottom: 7.4%; }
	.pec-home-hero__slide--porte-greffes .pec-home-hero__actions { top: 72.4%; left: 14.2%; }
	.pec-home-hero__slide--porte-greffes .pec-home-hero__cta { width: min(280px, 72vw); font-size: 15px; }
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__title {
		top: 4.4%;
		left: 1.5%;
		width: 97.5%;
		font-size: clamp(36px, 12vw, 50px);
		line-height: 1.16;
	}
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__actions {
		right: 2%;
		bottom: 8.3%;
		gap: 8px;
	}
	.pec-home-hero__slide--fruitiers-anciens .pec-home-hero__cta { padding: 9px 12px; font-size: 15px; }
}
