@font-face {
	font-family: "Inter";
	src: url("../fonts/new/inter-400.ttf") format("truetype");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/new/inter-500.ttf") format("truetype");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Spectral";
	src: url("../fonts/new/spectral-300.ttf") format("truetype");
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Spectral";
	src: url("../fonts/new/spectral-400.ttf") format("truetype");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Spectral";
	src: url("../fonts/new/spectral-500.ttf") format("truetype");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Spectral";
	src: url("../fonts/new/spectral-700.ttf") format("truetype");
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/new/poppins-700.ttf") format("truetype");
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/new/poppins-300.ttf") format("truetype");
	font-weight: 300;
	font-display: swap;
}

:root {
	--blue: #1e3b8a;
	--cream: #f5efe1;
	--off-white: #fcf9f3;
	--ink: #1a1a1a;
	--muted: #6b6b6b;
	--border: #ddd6c6;
	--serif: "Spectral", Georgia, serif;
	--sans: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
}

body:has(.menu-toggle:checked) {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

.layout-container,
.site-nav {
	width: 100%;
	max-width: 1760px;
	margin-inline: auto;
	padding-inline: 64px;
}

.kicker,
.footer-heading {
	margin: 0;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.4;
	text-transform: uppercase;
}

/* Header */
.site-header {
	position: fixed;
	z-index: 50;
	top: 0;
	right: 0;
	left: 0;
	height: 56px;
	background: var(--cream);
}

.site-nav {
	display: flex;
	height: 56px;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	z-index: 2;
	align-items: center;
	gap: 12px;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -.02em;
	white-space: nowrap;
}

.brand img {
	width: 32px;
	height: 32px;
}

.desktop-menu {
	display: flex;
	height: 100%;
	align-items: stretch;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-group {
	display: flex;
	height: 100%;
	align-items: center;
}

.nav-group > button,
.nav-group--direct > a {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 17px;
}

.nav-group > button::after,
.nav-group--direct > a::after {
	position: absolute;
	right: 0;
	bottom: 9px;
	left: 0;
	height: 1px;
	background: var(--ink);
	content: "";
	transform: scaleX(0);
	transition: transform .25s ease;
}

.nav-group:hover > button::after,
.nav-group:focus-within > button::after,
.nav-group--direct:hover > a::after,
.nav-group--direct > a:focus-visible::after {
	transform: scaleX(1);
}

.mega-menu {
	display: grid;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	padding: 40px max(64px, calc((100vw - 1760px) / 2 + 64px));
	border-top: 1px solid rgba(30, 59, 138, .1);
	background: var(--cream);
	box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .15);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity .2s ease, transform .2s ease;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.mega-intro {
	max-width: 390px;
	align-self: center;
}

.mega-intro h2 {
	margin: 0 0 4px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 38px;
	font-weight: 400;
	letter-spacing: -.02em;
}

.mega-intro .kicker {
	margin-bottom: 16px;
	color: rgba(30, 59, 138, .65);
}

.mega-intro > p:last-child {
	margin: 0;
	font-family: var(--serif);
	font-size: 16px;
	line-height: 1.65;
}

.mega-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mega-links--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-links a {
	color: var(--blue);
	font-family: var(--serif);
}

.mega-links img {
	width: 100%;
	height: 256px;
	object-fit: cover;
	filter: grayscale(.85) sepia(.25) brightness(1.02) contrast(.95);
	transition: filter .5s ease;
}

.mega-links a:hover img {
	filter: none;
}

.mega-links span {
	display: inline-block;
	margin-top: 12px;
}

.mega-links a:hover span {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.menu-button,
.mobile-menu {
	display: none;
}

.menu-toggle {
	display: none;
}

/* Home */
.home-main,
.page-main {
	padding-top: 56px;
}

.home-hero {
	padding: 48px 0 64px;
	background: var(--off-white);
}

.hero-heading {
	display: grid;
	grid-template-columns: 8fr 4fr;
	align-items: end;
	gap: 40px;
	margin-bottom: 48px;
}

.hero-heading h1 {
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(72px, 9vw, 128px);
	font-weight: 300;
	letter-spacing: -.02em;
	line-height: .95;
}

.hero-heading p {
	max-width: 320px;
	margin: 0 0 4px auto;
	font-size: 16px;
	line-height: 1.6;
}

.hero-photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 21 / 9;
	border-radius: 2px;
}

.hero-photo > img:first-child {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-photo .route-badge {
	position: absolute;
	z-index: 1;
	top: 24px;
	right: 24px;
	width: 112px;
	height: 112px;
	object-fit: contain;
}

.home-intro {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	padding-top: 160px;
	padding-bottom: 160px;
}

.home-lead {
	grid-column: 2 / span 8;
	max-width: 50ch;
	margin: 0;
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 300;
	line-height: 32px;
	color: rgba(26, 26, 26, .85);
}

.home-lead::first-letter {
	float: left;
	margin: .25rem .75rem 0 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 5.2em;
	font-weight: 700;
	line-height: .85;
}

.home-caption {
	grid-column: 11 / span 2;
	align-self: end;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	text-align: right;
}

.home-paths {
	padding: 64px 0;
}

.path-card {
	display: grid;
	grid-template-columns: 7fr 5fr;
	align-items: center;
	gap: 64px;
	padding-top: 80px;
	padding-bottom: 80px;
}

.path-card--reverse .path-image {
	order: 2;
}

.path-card--reverse .path-copy {
	order: 1;
}

.path-image {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #eee9df;
}

.path-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.path-card:hover .path-image img {
	transform: scale(1.04);
}

.path-copy .kicker {
	margin-bottom: 12px;
}

.path-copy h2 {
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(42px, 4.2vw, 60px);
	letter-spacing: -.02em;
	line-height: 1.02;
}

.path-copy > p:last-child {
	max-width: 450px;
	margin: 24px 0 0;
	font-size: 16px;
}

.home-press {
	padding: 80px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.press-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
}

.press-grid > .kicker {
	grid-column: span 3;
}

.press-grid > div {
	grid-column: span 7;
}

.press-grid ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.press-grid li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(221, 214, 198, .6);
}

.press-grid li span {
	color: var(--blue);
	font-family: var(--serif);
	font-size: 20px;
}

.press-grid time {
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .18em;
}

.text-link {
	display: inline-block;
	margin-top: 24px;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(30, 59, 138, .4);
	color: var(--blue);
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
}

/* Progressive entrance animations. Elements remain visible when JS is disabled. */
.scroll-reveal {
	opacity: 0;
	transform: translate3d(0, 32px, 0);
	transition:
		opacity .8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
		transform .8s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: auto;
}

/* Le parcours */
.parcours-page {
	padding-top: 56px;
}

.parcours-hero {
	position: relative;
	height: 55vh;
	margin-top: -56px;
	overflow: hidden;
}

.parcours-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.1);
}

.parcours-hero-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 48px;
	background: linear-gradient(to top, rgba(139, 111, 71, .85), rgba(139, 111, 71, .4), transparent);
}

.parcours-hero h1 {
	margin: 0;
	color: #000;
	font-family: var(--serif);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
}

.parcours-hero .kicker {
	margin-top: 12px;
	color: rgba(0, 0, 0, .7);
}

.parcours-intro {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	padding: 128px 64px;
}

.parcours-body {
	max-width: 55ch;
	margin: 0;
	grid-column: 3 / span 7;
	color: rgba(26, 26, 26, .85);
	font-family: var(--sans);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;
}

.parcours-lettrine::first-letter {
	float: left;
	margin: .25rem .75rem 0 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 5.2em;
	font-weight: 700;
	line-height: .85;
}

.parcours-timeline {
	padding: 0 64px 96px;
}

.parcours-timeline-label {
	margin-bottom: 64px;
	text-align: center;
}

.parcours-timeline ol {
	display: grid;
	gap: 128px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.parcours-step {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 48px;
}

.parcours-step-media {
	overflow: hidden;
	grid-column: 1 / span 6;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
}

.parcours-step-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.parcours-step-copy {
	grid-column: 8 / span 5;
}

.parcours-step--reverse .parcours-step-media {
	grid-column: 7 / span 6;
}

.parcours-step--reverse .parcours-step-copy {
	grid-column: 2 / span 5;
	grid-row: 1;
}

.parcours-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.parcours-placeholder span {
	color: rgba(139, 111, 71, .6);
	font-size: 13px;
}

.parcours-step-copy .kicker,
.parcours-companion-copy .kicker {
	margin-bottom: 12px;
}

.parcours-step-copy h2 {
	margin: 0 0 16px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.parcours-step-copy > p:last-child,
.parcours-companion-copy > p:last-child {
	max-width: 40ch;
	margin: 0;
	color: rgba(26, 26, 26, .85);
	font-size: 16px;
	line-height: 1.5;
}

.parcours-quote {
	margin-top: 0;
	margin-bottom: 0;
	padding: 128px 64px;
}

.parcours-quote blockquote {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 300;
	letter-spacing: -.015em;
	line-height: 1.1;
}

.parcours-quote span {
	color: rgba(30, 59, 138, .4);
	font-family: var(--serif);
	font-size: 1.4em;
	line-height: 1;
	vertical-align: top;
}

.parcours-quote span:first-child {
	margin-right: 4px;
}

.parcours-quote span:last-child {
	margin-left: 4px;
}

.parcours-companion {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 64px;
	padding: 128px 64px;
}

.parcours-companion-copy {
	grid-column: 2 / span 5;
}

.parcours-companion-copy h2 {
	margin: 0 0 24px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.parcours-companion-image {
	grid-column: 7 / span 5;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
}

/* Les chèvres */
.chevres-page {
	padding-top: 56px;
}

.chevres-hero {
	position: relative;
	height: 55vh;
	margin-top: -56px;
	overflow: hidden;
}

.chevres-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.1);
}

.chevres-hero-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 48px;
	background: linear-gradient(to top, rgba(139, 111, 71, .85), rgba(139, 111, 71, .4), transparent);
}

.chevres-hero h1 {
	margin: 0;
	color: #000;
	font-family: var(--serif);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
}

.chevres-hero .kicker {
	margin-top: 12px;
	color: rgba(0, 0, 0, .7);
}

.chevres-intro,
.chevres-choice {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
}

.chevres-intro {
	padding: 128px 64px;
}

.chevres-body,
.chevres-choice-copy {
	grid-column: 3 / span 7;
}

.chevres-body,
.chevres-choice-copy > p:last-child {
	max-width: 55ch;
}

.chevres-body,
.chevres-choice-copy > p:last-child,
.chevres-origin-copy > p:last-of-type,
.chevres-generation > p:last-child {
	margin: 0;
	color: rgba(26, 26, 26, .85);
	font-family: var(--sans);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;
}

.chevres-lettrine::first-letter {
	float: left;
	margin: .25rem .75rem 0 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 5.2em;
	font-weight: 700;
	line-height: .85;
}

.chevres-choice {
	padding: 0 64px 128px;
}

.chevres-choice-copy .kicker {
	margin-bottom: 16px;
}

.chevres-origin {
	padding: 0 64px 128px;
}

.chevres-origin-panel {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 40px;
	padding: 40px;
	background: rgba(232, 223, 211, .6);
}

.chevres-origin-media {
	grid-column: span 4;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
}

.chevres-origin-copy {
	grid-column: span 8;
}

.chevres-origin-copy > .kicker {
	margin-bottom: 8px;
}

.chevres-origin-copy h2 {
	margin: 0 0 16px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 700;
	line-height: 40px;
}

.chevres-origin-copy > p:last-of-type {
	max-width: 50ch;
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.5;
}

.chevres-origin-copy dl {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid rgba(139, 111, 71, .2);
}

.chevres-origin-copy dt {
	margin-bottom: 4px;
}

.chevres-origin-copy dd {
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 14px;
}

.chevres-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.chevres-placeholder span {
	padding-inline: 16px;
	color: rgba(139, 111, 71, .6);
	font-size: 13px;
	text-align: center;
}

.chevres-quote {
	margin-top: 0;
	margin-bottom: 0;
	padding: 128px 64px;
}

.chevres-quote blockquote {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 300;
	letter-spacing: -.015em;
	line-height: 1.1;
}

.chevres-quote span {
	color: rgba(30, 59, 138, .4);
	font-family: var(--serif);
	font-size: 1.4em;
	line-height: 1;
	vertical-align: top;
}

.chevres-quote span:first-child {
	margin-right: 4px;
}

.chevres-quote span:last-child {
	margin-left: 4px;
}

.chevres-lineage {
	padding: 128px 64px;
}

.chevres-lineage-heading {
	text-align: center;
}

.chevres-lineage-heading .kicker {
	margin-bottom: 12px;
}

.chevres-lineage-heading h2 {
	margin: 0 0 96px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.chevres-lineage-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px;
}

.chevres-generation-image {
	aspect-ratio: 4 / 5;
	margin-bottom: 24px;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
}

.chevres-generation > .kicker {
	margin-bottom: 8px;
}

.chevres-generation h3 {
	margin: 0 0 12px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.chevres-generation .chevres-names {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 13px;
	font-style: italic;
	line-height: 1.5;
}

.chevres-generation > p:last-child {
	max-width: 35ch;
	font-size: 16px;
	line-height: 1.5;
}

/* Le territoire */
.territoire-page {
	padding-top: 56px;
}

.territoire-hero {
	position: relative;
	height: 55vh;
	margin-top: -56px;
	overflow: hidden;
}

.territoire-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.1);
}

.territoire-hero-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 48px;
	background: linear-gradient(to top, rgba(139, 111, 71, .85), rgba(139, 111, 71, .4), transparent);
}

.territoire-hero h1 {
	margin: 0;
	color: #000;
	font-family: var(--serif);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
}

.territoire-hero .kicker {
	margin-top: 12px;
	color: rgba(0, 0, 0, .7);
}

.territoire-intro {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 40px;
	padding: 128px 64px;
}

.territoire-body {
	max-width: 55ch;
	margin: 0;
	grid-column: 3 / span 7;
	color: rgba(26, 26, 26, .85);
	font-family: var(--sans);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;
}

.territoire-lettrine::first-letter {
	float: left;
	margin: .25rem .75rem 0 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 5.2em;
	font-weight: 700;
	line-height: .85;
}

.territoire-dye {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 64px;
	padding: 0 64px 48px;
}

.territoire-dye-figure {
	position: relative;
	grid-column: span 7;
	aspect-ratio: 4 / 3;
	margin: 0;
}

.territoire-dye-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.territoire-dye-figure figcaption {
	position: absolute;
	top: 4px;
	right: -16px;
	max-width: 200px;
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	transform: translateX(100%);
}

.territoire-dye-copy {
	grid-column: 9 / span 4;
}

.territoire-dye-copy .kicker {
	margin-bottom: 16px;
}

.territoire-dye-copy > p:last-child {
	margin: 0;
	color: rgba(26, 26, 26, .85);
	font-size: 17px;
	line-height: 1.8;
}

.territoire-quote {
	margin-top: 0;
	margin-bottom: 0;
	padding: 128px 64px;
}

.territoire-quote blockquote {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: "Poppins", Arial, sans-serif;
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 300;
	letter-spacing: -.015em;
	line-height: 1.1;
}

.territoire-quote span {
	color: rgba(30, 59, 138, .4);
	font-family: var(--serif);
	font-size: 1.4em;
	line-height: 1;
	vertical-align: top;
}

.territoire-quote span:first-child {
	margin-right: 4px;
}

.territoire-quote span:last-child {
	margin-left: 4px;
}

.territoire-neighbors {
	padding: 64px;
}

.territoire-neighbors-heading .kicker {
	margin-bottom: 12px;
}

.territoire-neighbors-heading h2 {
	max-width: 672px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.territoire-neighbors ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 48px 0 0;
	padding: 0;
	background: var(--border);
	list-style: none;
}

.territoire-neighbors li {
	height: 100%;
	padding: 32px;
	background: #fff;
}

.territoire-neighbors li > p {
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.5;
}

.territoire-neighbors li > .kicker {
	display: block;
	margin-top: 4px;
}

.territoire-neighbors li > small {
	display: block;
	margin-top: 16px;
	color: rgba(26, 26, 26, .85);
	font-size: 15px;
	line-height: 1.8;
}

/* Visite découverte */
.visite-page {
	padding-top: 56px;
}

.visite-title {
	padding: 48px 64px 40px;
}

.visite-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(36px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.visite-intro {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: stretch;
	gap: 48px;
	padding: 0 64px 96px;
}

.visite-intro-copy {
	display: flex;
	grid-column: span 5;
	flex-direction: column;
}

.visite-body,
.visite-feature-copy > p:last-child {
	max-width: 42ch;
	margin: 0;
	color: rgba(26, 26, 26, .85);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
}

.visite-booking {
	margin-top: auto;
	padding: 56px 48px;
	background: rgba(232, 223, 211, .6);
	text-align: center;
}

.visite-booking h2 {
	max-width: 20ch;
	margin: 0 auto 24px;
	color: #000;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.visite-booking p {
	max-width: 42ch;
	margin: 0 auto 32px;
	color: #000;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.625;
}

.visite-booking a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #8b6f47;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.visite-booking svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform .2s ease;
}

.visite-booking a:hover svg {
	transform: translateX(2px);
}

.visite-intro-image {
	grid-column: span 7;
}

.visite-intro-image img,
.visite-feature-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.visite-facts {
	padding: 0 64px 112px;
}

.visite-facts dl {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
	margin: 0;
	padding: 40px 0;
	border-top: 1px solid rgba(139, 111, 71, .2);
	border-bottom: 1px solid rgba(139, 111, 71, .2);
}

.visite-facts dt {
	margin-bottom: 8px;
}

.visite-facts dd {
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 18px;
	line-height: 28px;
}

.visite-feature {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 64px;
	padding: 0 64px 96px;
}

.visite-feature--last {
	padding-bottom: 128px;
}

.visite-feature-image {
	grid-column: 1 / span 7;
}

.visite-feature-copy {
	grid-column: 8 / span 5;
}

.visite-feature--reverse .visite-feature-image {
	grid-column: 6 / span 7;
	grid-row: 1;
}

.visite-feature--reverse .visite-feature-copy {
	grid-column: 1 / span 5;
	grid-row: 1;
}

.visite-feature-copy .kicker {
	margin-bottom: 16px;
}

.visite-feature-copy h2 {
	margin: 0 0 20px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.visite-feature-copy > p:last-child {
	font-size: 17px;
	line-height: 1.8;
}

/* Dans la presse */
.presse-page {
	padding-top: 56px;
}

.presse-container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 64px;
}

.presse-title {
	padding-top: 24px;
	padding-bottom: 40px;
}

.presse-title .kicker {
	margin-bottom: 24px;
}

.presse-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(36px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.presse-media {
	padding-bottom: 64px;
}

.presse-thumbnails {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0 0 16px;
	overflow-x: auto;
	list-style: none;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.presse-thumbnails li {
	width: calc((100% - 100px) / 6);
	flex: 0 0 calc((100% - 100px) / 6);
	scroll-snap-align: start;
}

.presse-thumbnails button {
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #e8dfd3;
	cursor: pointer;
	aspect-ratio: 1;
}

.presse-thumbnails img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter .5s ease, transform .5s ease;
}

.presse-thumbnails button:hover img,
.presse-thumbnails button:focus-visible img {
	filter: grayscale(0);
	transform: scale(1.02);
}

.presse-articles {
	padding-bottom: 48px;
}

.presse-articles > ul {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.presse-item {
	border-bottom: 1px solid var(--border);
	scroll-margin-top: 72px;
}

.presse-article-button {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 16px;
	padding: 32px 0;
	border: 0;
	background: transparent;
	color: var(--blue);
	cursor: pointer;
	text-align: left;
}

.presse-article-button > svg {
	width: 48px;
	height: 48px;
	grid-column: span 1;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: .75;
	transition: transform .3s ease;
}

.presse-article-button[aria-expanded="true"] > svg {
	transform: rotate(90deg);
}

.presse-article-button > .kicker {
	grid-column: span 2;
}

.presse-article-button > strong {
	grid-column: span 7;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
}

.presse-article-button:hover > strong,
.presse-article-button:focus-visible > strong {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.presse-article-button > time {
	grid-column: span 2;
	color: rgba(26, 26, 26, .6);
	font-family: var(--sans);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.presse-panel {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: start;
	gap: 32px;
	padding-bottom: 32px;
}

.presse-panel[hidden] {
	display: none;
}

.presse-panel figure {
	grid-column: span 3;
	margin: 0;
}

.presse-panel figure img {
	width: 100%;
	height: auto;
}

.presse-panel > div {
	grid-column: span 9;
}

.presse-panel p {
	max-width: 672px;
	margin: 0 0 24px;
	color: rgba(26, 26, 26, .8);
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.65;
}

.presse-panel a {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .22em;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-transform: uppercase;
}

.presse-panel a:hover,
.presse-panel a:focus-visible {
	text-decoration: none;
}

/* Marchés et foires */
.marches-page {
	padding-top: 56px;
}

.marches-container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 64px;
}

.marches-title {
	padding-top: 48px;
	padding-bottom: 40px;
}

.marches-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(36px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.marches-content {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: start;
	gap: 48px;
	padding-bottom: 96px;
}

.marches-list {
	grid-column: span 5;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.marches-list li {
	border-bottom: 1px solid var(--border);
}

.marches-list a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
}

.marches-list svg {
	width: 28px;
	height: 28px;
	margin-top: 1px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--blue);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: .75;
	transform: rotate(-45deg);
	transition: transform .5s ease;
}

.marches-list a:hover svg,
.marches-list a:focus-visible svg {
	transform: rotate(0);
}

.marches-list a > span {
	min-width: 0;
	flex: 1;
}

.marches-list strong {
	display: block;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.375;
}

.marches-list a:hover strong,
.marches-list a:focus-visible strong {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.marches-list small {
	display: block;
	margin-top: 4px;
	color: rgba(26, 26, 26, .7);
	font-family: var(--sans);
	font-size: 12px;
	line-height: 1.5;
}

.marches-image {
	grid-column: span 7;
}

.marches-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* La boutique */
.boutique-page {
	padding-top: 56px;
}

.boutique-container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 64px;
}

.boutique-title {
	padding-top: 48px;
	padding-bottom: 40px;
}

.boutique-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(36px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.boutique-showcase {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 64px;
	padding-bottom: 128px;
}

.boutique-gallery {
	display: grid;
	grid-column: span 7;
	grid-template-columns: 80px minmax(0, 1fr);
	align-content: start;
	gap: 16px;
}

.boutique-thumbnails {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.boutique-thumbnail {
	width: 80px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
	cursor: pointer;
	aspect-ratio: 1;
}

.boutique-thumbnail.is-active {
	border: 2px solid #8b6f47;
}

.boutique-thumbnail img,
.boutique-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.boutique-main-image {
	overflow: hidden;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
	aspect-ratio: 4 / 3;
}

.boutique-main-image img {
	transition: opacity .2s ease;
}

.boutique-order-note {
	grid-column: 2;
	margin: 8px 0 0;
	color: #000;
	font-family: var(--serif);
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
}

.boutique-information {
	grid-column: span 5;
	padding-top: 16px;
}

.boutique-product {
	min-height: 240px;
	margin-bottom: 48px;
}

.boutique-product-title {
	margin: 0 0 12px;
	color: #000;
	font-family: var(--serif);
	font-size: 30px;
	line-height: 1.2;
}

.boutique-product-description {
	max-width: 42ch;
	margin: 0 0 16px;
	color: #000;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
}

.boutique-tariffs-link,
.boutique-custom-order a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #8b6f47;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.boutique-tariffs-link svg,
.boutique-custom-order svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform .2s ease;
}

.boutique-tariffs-link:hover svg,
.boutique-tariffs-link:focus-visible svg {
	transform: translateY(2px);
}

.boutique-accordion {
	border-top: 1px solid rgba(139, 111, 71, .2);
}

.boutique-accordion-item {
	border-bottom: 1px solid rgba(139, 111, 71, .2);
}

.boutique-accordion-button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
}

.boutique-accordion-button > svg {
	fill: none;
	stroke: #8b6f47;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform .3s ease;
}

.boutique-accordion-button[aria-expanded="true"] > svg {
	transform: rotate(90deg);
}

.boutique-accordion-panel {
	padding: 0 0 20px;
}

.boutique-accordion-panel[hidden] {
	display: none;
}

.boutique-accordion-panel address,
.boutique-accordion-panel p,
.boutique-accordion-panel ul {
	margin: 0;
	padding: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 18px;
	font-style: normal;
	line-height: 1.55;
	list-style: none;
}

.boutique-accordion-panel li + li {
	margin-top: 8px;
}

.boutique-accordion-panel a:hover,
.boutique-accordion-panel a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.boutique-coordinates {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(30, 59, 138, .65);
	font-family: var(--sans);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.boutique-coordinates svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.boutique-tariffs {
	padding-bottom: 128px;
	scroll-margin-top: 80px;
}

.boutique-tariffs > h2 {
	margin: 0 0 64px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

.boutique-tariffs-inner {
	width: 66.6667%;
	margin-inline: auto;
}

.boutique-price-group {
	margin-bottom: 56px;
}

.boutique-price-group > .kicker {
	margin-bottom: 16px;
}

.boutique-price-group ul {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(139, 111, 71, .2);
	list-style: none;
}

.boutique-price-group li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(139, 111, 71, .2);
	color: var(--blue);
	font-family: var(--serif);
	font-size: 16px;
}

.boutique-price-group li > div {
	min-width: 0;
	flex: 1;
}

.boutique-price-group strong {
	display: block;
	font-weight: 400;
}

.boutique-price-group small {
	display: block;
	margin-top: 4px;
	color: rgba(139, 111, 71, .7);
	font-family: var(--sans);
	font-size: 12px;
	line-height: 1.45;
}

.boutique-price-group li > span {
	flex: 0 0 auto;
	font-variant-numeric: tabular-nums;
}

.boutique-craft-note {
	margin: 96px auto 160px;
	color: #000;
	font-family: var(--serif);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	text-align: center;
}

.boutique-custom-order {
	padding: 80px 64px;
	background: rgba(232, 223, 211, .6);
	text-align: center;
}

.boutique-custom-order > .kicker {
	margin-bottom: 24px;
}

.boutique-custom-order h3 {
	max-width: 24ch;
	margin: 0 auto 32px;
	color: #000;
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.2;
}

.boutique-custom-order > p:not(.kicker) {
	max-width: 50ch;
	margin: 0 auto 40px;
	color: #000;
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
}

.boutique-custom-order a:hover svg,
.boutique-custom-order a:focus-visible svg {
	transform: translateX(2px);
}

/* La chèvrerie */
.chevrerie-page {
	padding-top: 56px;
}

.chevrerie-container {
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 64px;
}

.chevrerie-title {
	padding-top: 48px;
	padding-bottom: 40px;
}

.chevrerie-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(36px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.chevrerie-intro {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 64px;
}

.chevrerie-intro-copy {
	grid-column: span 7;
}

.chevrerie-intro-copy > p {
	max-width: 42ch;
	margin: 0;
	color: rgba(26, 26, 26, .85);
	font-size: 16px;
	line-height: 1.5;
}

.chevrerie-details {
	grid-column: span 5;
}

.chevrerie-detail {
	margin-bottom: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(139, 111, 71, .2);
}

.chevrerie-detail:last-child {
	margin-bottom: 0;
}

.chevrerie-detail .kicker {
	margin-bottom: 8px;
}

.chevrerie-detail address,
.chevrerie-detail ul {
	margin: 0;
	padding: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 20px;
	font-style: normal;
	line-height: 1.35;
	list-style: none;
}

.chevrerie-detail a:hover,
.chevrerie-detail a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.chevrerie-coordinates {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(30, 59, 138, .65);
	font-family: var(--sans);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.chevrerie-coordinates svg,
.chevrerie-visits-link svg,
.chevrerie-activities-link svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chevrerie-coordinates svg {
	stroke-width: 2;
}

.chevrerie-visits-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.55;
}

.chevrerie-visits-link svg {
	margin-top: 2px;
	flex: 0 0 auto;
	stroke-width: .75;
	transform: rotate(-45deg);
	transition: transform .4s ease;
}

.chevrerie-visits-link:hover svg,
.chevrerie-visits-link:focus-visible svg {
	transform: rotate(0);
}

.chevrerie-visits-link small {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.chevrerie-detail li + li {
	margin-top: 8px;
}

.chevrerie-activities {
	padding-bottom: 128px;
}

.chevrerie-activities-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 40px;
	color: #8b6f47;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.chevrerie-activities-link svg {
	stroke-width: 2;
	transition: transform .2s ease;
}

.chevrerie-activities-link:hover svg,
.chevrerie-activities-link:focus-visible svg {
	transform: translateY(2px);
}

.chevrerie-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.chevrerie-gallery-item {
	display: block;
	position: relative;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(139, 111, 71, .2);
	background: #e8dfd3;
	color: #fff;
	cursor: zoom-in;
	aspect-ratio: 4 / 3;
}

.chevrerie-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.chevrerie-gallery-item > span {
	display: flex;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, .4);
	font-family: var(--serif);
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity .5s ease;
}

.chevrerie-gallery-item:hover img,
.chevrerie-gallery-item:focus-visible img {
	transform: scale(1.02);
}

.chevrerie-gallery-item:hover > span,
.chevrerie-gallery-item:focus-visible > span {
	opacity: 1;
}

body.chevrerie-lightbox-open {
	overflow: hidden;
}

.chevrerie-lightbox {
	display: grid;
	position: fixed;
	z-index: 100;
	inset: 0;
	grid-template-columns: 64px minmax(0, 1fr) 64px;
	align-items: center;
	padding: 48px;
	background: rgba(10, 10, 10, .94);
	color: #fff;
}

.chevrerie-lightbox[hidden] {
	display: none;
}

.chevrerie-lightbox figure {
	margin: 0;
	text-align: center;
}

.chevrerie-lightbox figure img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 144px);
	margin-inline: auto;
}

.chevrerie-lightbox figcaption {
	margin-top: 12px;
	font-family: var(--serif);
	font-size: 18px;
}

.chevrerie-lightbox button {
	padding: 8px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 48px;
	font-weight: 300;
	line-height: 1;
}

.chevrerie-lightbox-close {
	position: absolute;
	top: 16px;
	right: 24px;
}

/* Footer */
.site-footer {
	margin-top: 96px;
	background: var(--blue);
	color: var(--off-white);
}

.rds-strip {
	border-top: 1px solid rgba(30, 59, 138, .1);
	background: var(--cream);
	color: var(--ink);
}

.rds-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding-top: 24px;
	padding-bottom: 24px;
}

.rds-logo {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	object-fit: contain;
}

.rds-inner > p {
	max-width: 320px;
	margin: 0;
	flex: 0 0 320px;
	font-family: var(--serif);
	font-size: 13px;
	line-height: 1.65;
}

.rds-inner > p a {
	font-style: italic;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.rds-gallery {
	display: grid;
	min-width: 0;
	flex: 1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.rds-gallery img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	filter: grayscale(.85) sepia(.25) brightness(1.02) contrast(.95);
}

.footer-main {
	min-height: 680px;
	padding-top: 64px;
	padding-bottom: 40px;
}

.footer-brand-row,
.footer-brand,
.social-links {
	display: flex;
	align-items: center;
}

.footer-brand-row {
	justify-content: space-between;
	margin-bottom: 48px;
}

.footer-brand {
	gap: 20px;
}

.footer-brand img {
	width: 96px;
	height: 96px;
}

.footer-brand p {
	margin: 0;
	font-family: var(--serif);
	font-size: 48px;
	line-height: 1;
}

.social-links {
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-links a,
.social-links svg,
.social-links img {
	display: block;
	width: 22px;
	height: 22px;
}

.social-links svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.footer-columns {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr;
	gap: 64px;
	padding-left: 116px;
}

.footer-heading {
	margin-bottom: 16px;
	color: rgba(252, 249, 243, .6);
}

.footer-press ul {
	max-width: 460px;
	margin: 0;
	padding: 0;
	font-family: var(--serif);
	font-size: 15px;
	list-style: none;
}

.footer-press li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 6px;
}

.footer-press li span {
	min-width: 20px;
	flex: 1;
	border-bottom: 1px solid rgba(252, 249, 243, .2);
}

.footer-press-more {
	display: inline-block;
	margin-top: 16px;
	border-bottom: 1px solid rgba(252, 249, 243, .4);
	color: rgba(252, 249, 243, .75);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.footer-press-more:hover,
.footer-press-more:focus-visible {
	color: var(--off-white);
}

.footer-press time,
.footer-columns small {
	color: rgba(252, 249, 243, .6);
	font-family: var(--sans);
	font-size: 12px;
}

.footer-columns address {
	font-family: var(--serif);
	font-size: 15px;
	font-style: normal;
	line-height: 1.85;
}

.footer-signature {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(252, 249, 243, .2);
	color: rgba(252, 249, 243, .45);
	font-size: 11px;
	letter-spacing: .2em;
	text-align: right;
	text-transform: uppercase;
}

/* Blog */
.blog-page {
	padding-top: 56px;
}

.blog-title {
	padding-top: 48px;
	padding-bottom: 72px;
}

.blog-title .kicker {
	margin-bottom: 24px;
}

.blog-title h1 {
	max-width: 1024px;
	margin: 0;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(48px, 7vw, 84px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: .98;
}

.blog-layout {
	padding-bottom: 64px;
}

.blog-list {
	width: 100%;
}

.blog-card {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: start;
	gap: 0 64px;
	padding: 64px 0;
	border-top: 1px solid rgba(139, 111, 71, .25);
}

.blog-card:first-child {
	padding-top: 0;
	border-top: 0;
}

.blog-card > header,
.blog-card .blog-excerpt {
	grid-column: 1 / span 8;
}

.blog-card.has-blog-image > header,
.blog-card.has-blog-image .blog-excerpt {
	grid-column: 6 / -1;
}

.blog-card.has-blog-image > header {
	grid-row: 1;
}

.blog-card-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 760px;
	grid-column: 1 / span 5;
	grid-row: 1 / span 4;
	object-fit: contain;
	object-position: top center;
}

.blog-card:nth-of-type(even).has-blog-image > header,
.blog-card:nth-of-type(even).has-blog-image .blog-excerpt {
	grid-column: 1 / span 7;
}

.blog-card:nth-of-type(even).has-blog-image .blog-card-image {
	grid-column: 8 / -1;
}

.blog-date {
	display: block;
	margin-bottom: 16px;
	color: #8b6f47;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.blog-card h2 {
	max-width: 28ch;
	margin: 0 0 20px;
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(30px, 3.1vw, 46px);
	font-weight: 400;
	letter-spacing: -.015em;
	line-height: 1.12;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.blog-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 32px;
	color: rgba(26, 26, 26, .58);
	font-size: 11px;
	letter-spacing: .08em;
	line-height: 1.5;
	text-transform: uppercase;
}

.blog-meta > span {
	position: relative;
}

.blog-meta > span + span::before {
	position: absolute;
	top: 0;
	left: -12px;
	content: "·";
}

.blog-meta a:hover,
.blog-meta a:focus-visible {
	color: var(--blue);
	text-decoration: underline;
}

.blog-excerpt {
	color: rgba(26, 26, 26, .86);
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.75;
}

.blog-excerpt p,
.blog-excerpt > div {
	margin: 0 0 24px;
}

.blog-excerpt img {
	width: 100% !important;
	height: auto;
	max-height: 760px;
	object-fit: contain;
	object-position: top center;
}

.blog-excerpt img.is-unavailable {
	display: none;
}

.blog-excerpt a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.blog-excerpt .more a,
.blog-excerpt > p:last-child > a[target="_blank"] {
	display: inline-flex;
	align-items: center;
	color: #8b6f47;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: .18em;
	text-decoration: none;
	text-transform: uppercase;
}

.blog-excerpt .more a:hover,
.blog-excerpt .more a:focus-visible,
.blog-excerpt > p:last-child > a[target="_blank"]:hover,
.blog-excerpt > p:last-child > a[target="_blank"]:focus-visible {
	color: var(--blue);
}

.blog-pagination {
	padding: 32px 0;
	border-top: 1px solid rgba(139, 111, 71, .25);
	font-family: var(--serif);
	text-align: center;
}

.blog-pagination a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.blog-feed {
	color: #8b6f47;
	font-size: 11px;
	letter-spacing: .16em;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.blog-page {
		padding-top: 48px;
	}

	.blog-title {
		padding-top: 40px;
		padding-bottom: 56px;
	}

	.blog-title h1 {
		font-size: 48px;
	}

	.blog-layout {
		padding-bottom: 64px;
	}

	.blog-card {
		display: block;
	}

	.blog-card-image {
		width: min(100%, 560px) !important;
		max-height: none;
		margin: 0 auto 32px;
	}
}

@media (max-width: 600px) {
	.blog-title h1 {
		font-size: 40px;
	}

	.blog-card {
		padding: 32px 0 48px;
	}

	.blog-card h2 {
		font-size: 30px;
	}

	.blog-meta {
		margin-bottom: 24px;
	}

	.blog-meta > span {
		width: 100%;
	}

	.blog-meta > span + span::before {
		display: none;
	}

	.blog-excerpt {
		font-size: 17px;
	}

}

/* Other PluXml pages keep a readable base while they await redesign. */
.page-content,
.main > .container {
	width: min(100% - 48px, 1100px);
	margin: 0 auto;
	padding: 80px 0;
}

.page-content h1,
.article h1,
.article h2 {
	color: var(--blue);
	font-family: var(--serif);
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 400;
	line-height: 1;
}

.page-content h2,
.page-content h3 {
	color: var(--blue);
	font-family: var(--serif);
}

.page-content table {
	width: 100%;
	border-collapse: collapse;
}

.page-content td,
.page-content th {
	padding: 12px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

@media (max-width: 900px) {
	.layout-container,
	.site-nav {
		padding-inline: 24px;
	}

	.site-header,
	.site-nav {
		height: 48px;
	}

	.site-nav {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.brand {
		grid-column: 1;
		font-size: 18px;
	}

	.brand img {
		width: 28px;
		height: 28px;
	}

	.brand span {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.desktop-menu {
		display: none;
	}

	.menu-toggle {
		display: block;
		position: absolute;
		width: 1px;
		height: 1px;
		opacity: 0;
	}

	.menu-button {
		display: flex;
		z-index: 2;
		width: 28px;
		height: 28px;
		grid-column: 3;
		justify-self: end;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 6px;
		cursor: pointer;
	}

	.menu-button span {
		display: block;
		height: 1.5px;
		background: var(--blue);
		transition: transform .2s ease, opacity .2s ease;
	}

	.menu-toggle:checked + .menu-button span:first-child {
		transform: translateY(7.5px) rotate(45deg);
	}

	.menu-toggle:checked + .menu-button span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked + .menu-button span:last-child {
		transform: translateY(-7.5px) rotate(-45deg);
	}

	.mobile-menu {
		display: grid;
		position: fixed;
		top: 48px;
		right: 0;
		bottom: 0;
		left: 0;
		grid-template-columns: 1fr;
		align-content: center;
		gap: 36px;
		padding: 40px 32px;
		background: #a9c9e4;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity .25s ease, transform .25s ease;
	}

	.menu-toggle:checked ~ .mobile-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-menu div {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.mobile-menu strong {
		margin-bottom: 5px;
		color: var(--blue);
		font-family: var(--serif);
		font-size: 28px;
		font-weight: 500;
	}

	.mobile-menu a {
		font-size: 14px;
	}

	.mobile-menu .mobile-menu-direct a {
		color: var(--blue);
		font-family: var(--serif);
		font-size: 28px;
		font-weight: 500;
	}

	.home-main,
	.page-main {
		padding-top: 48px;
	}

	.home-hero {
		padding: 32px 0 40px;
	}

	.hero-heading {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 32px;
	}

	.hero-heading h1 {
		font-size: clamp(48px, 15vw, 76px);
	}

	.hero-heading p {
		max-width: 290px;
		margin: 0;
		font-size: 14px;
	}

	.hero-photo {
		aspect-ratio: 4 / 3;
	}

	.hero-photo .route-badge {
		top: 16px;
		right: 16px;
		width: 76px;
		height: 76px;
	}

	.home-intro {
		display: block;
		padding-top: 96px;
		padding-bottom: 96px;
	}

	.home-caption {
		display: none;
	}

	.home-paths {
		padding: 48px 0;
	}

	.path-card,
	.path-card--reverse {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.path-card--reverse .path-image,
	.path-card--reverse .path-copy {
		order: initial;
	}

	.path-image {
		aspect-ratio: 4 / 3;
	}

	.path-copy h2 {
		font-size: 42px;
	}

	.path-copy > p:last-child {
		margin-top: 16px;
	}

	.home-press {
		padding: 64px 0;
	}

	.press-grid {
		display: block;
	}

	.press-grid > .kicker {
		margin-bottom: 28px;
	}

	.press-grid li span {
		font-size: 18px;
	}

	.site-footer {
		margin-top: 64px;
	}

	.rds-strip {
		display: none;
	}

	.footer-main {
		min-height: 0;
		padding-top: 48px;
		padding-bottom: 32px;
	}

	.footer-brand-row {
		flex-direction: column;
		gap: 36px;
	}

	.footer-brand {
		flex-direction: column;
		text-align: center;
	}

	.footer-brand img {
		width: 80px;
		height: 80px;
	}

	.footer-brand p {
		font-size: 38px;
	}

	.social-links {
		order: 2;
		gap: 28px;
	}

	.social-links a,
	.social-links svg,
	.social-links img {
		width: 30px;
		height: 30px;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-left: 0;
		text-align: center;
	}

	.footer-press ul {
		margin-inline: auto;
		text-align: left;
	}

	.footer-signature {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.home-lead {
		font-size: 20px;
		line-height: 1.625;
	}

	.parcours-hero {
		height: 50vh;
	}

	.parcours-hero-overlay {
		padding: 24px;
	}

	.parcours-hero h1 {
		font-size: 48px;
	}

	.parcours-intro {
		display: block;
		padding: 96px 24px;
	}

	.parcours-body {
		font-size: 16px;
	}

	.parcours-timeline {
		padding: 0 24px 64px;
	}

	.parcours-timeline-label {
		margin-bottom: 40px;
	}

	.parcours-timeline ol {
		gap: 80px;
	}

	.parcours-step {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.parcours-step-media,
	.parcours-step-copy,
	.parcours-step--reverse .parcours-step-media,
	.parcours-step--reverse .parcours-step-copy {
		grid-column: auto;
		grid-row: auto;
	}

	.parcours-step-copy h2 {
		font-size: 24px;
		line-height: 1.25;
	}

	.parcours-quote {
		padding: 80px 24px;
	}

	.parcours-companion {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 80px 24px;
	}

	.parcours-companion-copy,
	.parcours-companion-image {
		grid-column: auto;
	}

	.parcours-companion-copy h2 {
		font-size: 36px;
	}

	.chevres-hero {
		height: 50vh;
	}

	.chevres-hero-overlay {
		padding: 24px;
	}

	.chevres-hero h1 {
		font-size: 48px;
	}

	.chevres-intro {
		display: block;
		padding: 96px 24px;
	}

	.chevres-body,
	.chevres-choice-copy > p:last-child {
		font-size: 16px;
	}

	.chevres-choice {
		display: block;
		padding: 0 24px 96px;
	}

	.chevres-origin {
		padding: 0 24px 96px;
	}

	.chevres-origin-panel {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px;
	}

	.chevres-origin-media,
	.chevres-origin-copy {
		grid-column: auto;
	}

	.chevres-origin-copy h2 {
		font-size: 30px;
		line-height: 1.25;
	}

	.chevres-origin-copy dl {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.chevres-quote {
		padding: 80px 24px;
	}

	.chevres-lineage {
		padding: 80px 24px;
	}

	.chevres-lineage-heading h2 {
		margin-bottom: 64px;
		font-size: 36px;
	}

	.chevres-lineage-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.chevres-generation h3 {
		font-size: 24px;
		line-height: 1.25;
	}

	.territoire-hero {
		height: 50vh;
	}

	.territoire-hero-overlay {
		padding: 24px;
	}

	.territoire-hero h1 {
		font-size: 48px;
	}

	.territoire-intro {
		display: block;
		padding: 96px 24px;
	}

	.territoire-body,
	.territoire-dye-copy > p:last-child {
		font-size: 16px;
	}

	.territoire-dye {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 24px 40px;
	}

	.territoire-dye-figure,
	.territoire-dye-copy {
		grid-column: auto;
	}

	.territoire-dye-figure figcaption {
		position: static;
		max-width: none;
		margin-top: 12px;
		transform: none;
	}

	.territoire-quote {
		padding: 80px 24px;
	}

	.territoire-neighbors {
		padding: 64px 24px;
	}

	.territoire-neighbors-heading h2 {
		font-size: 36px;
	}

	.territoire-neighbors ul {
		grid-template-columns: 1fr;
	}

	.visite-title {
		padding: 32px 24px 24px;
	}

	.visite-page {
		padding-top: 48px;
	}

	.visite-intro {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0 24px 64px;
	}

	.visite-intro-copy,
	.visite-intro-image {
		grid-column: auto;
	}

	.visite-booking {
		margin-top: 40px;
		padding: 48px 32px;
	}

	.visite-booking h2 {
		font-size: 24px;
	}

	.visite-facts {
		padding: 0 24px 80px;
	}

	.visite-facts dl {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
		padding: 32px 0;
	}

	.visite-facts dd {
		font-size: 16px;
		line-height: 22px;
	}

	.visite-feature,
	.visite-feature--reverse {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0 24px 64px;
	}

	.visite-feature--last {
		padding-bottom: 96px;
	}

	.visite-feature-image,
	.visite-feature-copy,
	.visite-feature--reverse .visite-feature-image,
	.visite-feature--reverse .visite-feature-copy {
		grid-column: auto;
		grid-row: auto;
	}

	.visite-feature--reverse .visite-feature-image {
		order: 1;
	}

	.visite-feature--reverse .visite-feature-copy {
		order: 2;
	}

	.visite-feature-copy h2 {
		font-size: 24px;
		line-height: 1.25;
	}

	.visite-feature-copy > p:last-child {
		font-size: 16px;
	}

	.presse-page {
		padding-top: 48px;
	}

	.presse-container {
		padding-inline: 24px;
	}

	.presse-title {
		padding-top: 16px;
		padding-bottom: 40px;
	}

	.presse-title h1 {
		font-size: 36px;
	}

	.presse-thumbnails {
		gap: 16px;
	}

	.presse-thumbnails li {
		width: calc(50% - 8px);
		flex-basis: calc(50% - 8px);
	}

	.presse-media {
		padding-bottom: 48px;
	}

	.presse-article-button {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 12px;
		padding: 24px 0;
	}

	.presse-article-button > svg {
		width: 40px;
		height: 40px;
		grid-column: 1;
		grid-row: 1;
	}

	.presse-article-button > .kicker {
		grid-column: 2;
		grid-row: 1;
	}

	.presse-article-button > strong {
		grid-column: 1 / -1;
		grid-row: 2;
		font-size: 24px;
	}

	.presse-article-button > time {
		grid-column: 1 / -1;
		grid-row: 3;
		text-align: left;
	}

	.presse-panel {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.presse-panel figure,
	.presse-panel > div {
		grid-column: auto;
	}

	.presse-panel p {
		font-size: 18px;
	}

	.marches-page {
		padding-top: 48px;
	}

	.marches-container {
		padding-inline: 24px;
	}

	.marches-title {
		padding-top: 32px;
		padding-bottom: 24px;
	}

	.marches-title h1 {
		font-size: 36px;
	}

	.marches-content {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 64px;
	}

	.marches-list,
	.marches-image {
		grid-column: auto;
	}

	.marches-list strong {
		font-size: 18px;
	}

	.marches-list svg {
		width: 24px;
		height: 24px;
	}

	.boutique-page {
		padding-top: 48px;
	}

	.boutique-container {
		padding-inline: 24px;
	}

	.boutique-title {
		padding-top: 32px;
		padding-bottom: 24px;
	}

	.boutique-title h1 {
		font-size: 36px;
	}

	.boutique-showcase {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 96px;
	}

	.boutique-gallery,
	.boutique-information {
		grid-column: auto;
	}

	.boutique-gallery {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 12px;
	}

	.boutique-thumbnails {
		gap: 12px;
	}

	.boutique-thumbnail {
		width: 64px;
	}

	.boutique-order-note {
		margin-top: 12px;
	}

	.boutique-information {
		padding-top: 0;
	}

	.boutique-product {
		min-height: 220px;
		margin-bottom: 40px;
	}

	.boutique-product-title {
		font-size: 24px;
	}

	.boutique-tariffs {
		padding-bottom: 96px;
	}

	.boutique-tariffs > h2 {
		margin-bottom: 40px;
		font-size: 36px;
	}

	.boutique-tariffs-inner {
		width: 100%;
	}

	.boutique-price-group {
		margin-bottom: 40px;
	}

	.boutique-craft-note {
		margin: 80px auto 128px;
	}

	.boutique-craft-note br,
	.boutique-custom-order br {
		display: none;
	}

	.boutique-custom-order {
		padding: 56px 32px;
	}

	.boutique-custom-order h3 {
		font-size: 30px;
	}

	.boutique-custom-order > p:not(.kicker) {
		font-size: 16px;
	}

	.chevrerie-page {
		padding-top: 48px;
	}

	.chevrerie-container {
		padding-inline: 24px;
	}

	.chevrerie-title {
		padding-top: 32px;
		padding-bottom: 24px;
	}

	.chevrerie-title h1 {
		font-size: 36px;
	}

	.chevrerie-intro {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.chevrerie-intro-copy,
	.chevrerie-details {
		grid-column: auto;
	}

	.chevrerie-detail address,
	.chevrerie-detail ul {
		font-size: 18px;
	}

	.chevrerie-activities {
		padding-top: 48px;
		padding-bottom: 96px;
	}

	.chevrerie-activities-link {
		margin-bottom: 32px;
	}

	.chevrerie-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.chevrerie-gallery-item > span {
		font-size: 15px;
	}

	.chevrerie-lightbox {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		padding: 56px 8px 32px;
	}

	.chevrerie-lightbox button {
		font-size: 38px;
	}

	.chevrerie-lightbox-close {
		top: 10px;
		right: 12px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.territoire-neighbors ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 430px) {
	.layout-container,
	.site-nav {
		padding-inline: 20px;
	}

	.brand span {
		font-size: 16px;
	}

	.hero-heading h1 {
		font-size: 52px;
	}

	.footer-press li {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal,
	.scroll-reveal.is-visible {
		opacity: 1;
		transform: none;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
