/*
Theme Name: Blocksy Child — Les Optimistes Créateurs
Description: Thème enfant minimal de Blocksy pour le site Les Optimistes Créateurs.
Author: Les Optimistes Créateurs
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child-optimistes-createurs
*/

:root {
	--sand-light: #F5E9D7;
	--off-white: #FBF8F5;
	--ocean-blue: #1E6A87;
	--soft-blue: #6FB7C6;
	--ochre: #E0A44A;
	--terracotta: #D2694A;
	--oc-ink: #19333D;
	--oc-white: #FFFFFF;
	--oc-radius-sm: 0.5rem;
	--oc-radius-md: 1rem;
	--oc-radius-lg: 1.5rem;
	--oc-shadow-soft: 0 1rem 2.5rem rgba(25, 51, 61, 0.1);
	--oc-content-wide: 76rem;
	--oc-content-text: 46rem;
	--oc-section-space: clamp(4rem, 8vw, 8rem);
	--oc-grid-gap: clamp(1.25rem, 3vw, 2.5rem);
	--oc-font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
	--oc-font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Base et utilitaires légers pour les classes CSS Elementor. */
body {
	background: var(--off-white);
	color: var(--oc-ink);
}

.page-id-17 .site-main > .ct-container-full[data-vertical-spacing] {
	padding-top: 0;
}

@media (min-width: 1000px) {
	.page-id-17[data-header*="type-1"] {
		--header-height: 92px;
	}

	.page-id-17[data-header*="type-1"] .ct-header [data-row="middle"] {
		--height: 92px;
	}
}

.oc-container-wide {
	width: min(100% - 2rem, var(--oc-content-wide));
	margin-inline: auto;
}

.elementor-element.oc-container-wide {
	width: min(100% - 2rem, var(--oc-content-wide)) !important;
	max-width: var(--oc-content-wide);
	margin-inline: auto;
}

.oc-content-narrow {
	width: min(100%, var(--oc-content-text));
}

.oc-section-spacious {
	padding-block: var(--oc-section-space);
}

.oc-bg-sand {
	background-color: var(--sand-light);
}

.oc-bg-off-white {
	background-color: var(--off-white);
}

.oc-text-ocean {
	color: var(--ocean-blue);
}

.oc-title-display,
.oc-title-display .elementor-heading-title {
	max-width: 14ch;
	margin: 0;
	color: var(--oc-white);
	font-family: var(--oc-font-display);
	font-size: clamp(3rem, 5vw, 5rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.025em;
}

.oc-section-title,
.oc-section-title .elementor-heading-title {
	max-width: 32ch;
	margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
	color: var(--ocean-blue);
	font-size: clamp(1.75rem, 3vw, 2.875rem);
	font-weight: 400;
	line-height: 1.08;
}

.oc-subtitle,
.oc-subtitle .elementor-heading-title {
	margin: 0;
	color: var(--terracotta);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-intro,
.oc-intro p {
	max-width: var(--oc-content-text);
	margin-block: 0;
	font-size: clamp(1.125rem, 2vw, 1.4rem);
	line-height: 1.7;
}

.oc-button-primary:not(.elementor-widget-button),
.oc-button-primary .elementor-button,
.oc-button-secondary:not(.elementor-widget-button),
.oc-button-secondary .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.5rem;
	border: 2px solid transparent;
	border-radius: var(--oc-radius-sm);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.oc-button-primary:not(.elementor-widget-button),
.oc-button-primary .elementor-button {
	background-color: var(--ocean-blue);
}

.oc-button-primary:not(.elementor-widget-button):hover,
.oc-button-primary:not(.elementor-widget-button):focus-visible,
.oc-button-primary:hover .elementor-button,
.oc-button-primary:focus-within .elementor-button {
	border-color: var(--ocean-blue);
	background-color: var(--off-white);
	color: var(--ocean-blue);
}

.oc-button-secondary:not(.elementor-widget-button),
.oc-button-secondary .elementor-button {
	background-color: var(--ochre);
	color: #202020;
}

.oc-button-secondary:not(.elementor-widget-button):hover,
.oc-button-secondary:not(.elementor-widget-button):focus-visible,
.oc-button-secondary:hover .elementor-button,
.oc-button-secondary:focus-within .elementor-button {
	border-color: var(--ochre);
	background-color: var(--off-white);
	color: #202020;
}

.oc-button-primary:not(.elementor-widget-button):focus-visible,
.oc-button-primary .elementor-button:focus-visible,
.oc-button-secondary:not(.elementor-widget-button):focus-visible,
.oc-button-secondary .elementor-button:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 3px;
}

.oc-card {
	--width: 100%;
	box-sizing: border-box;
	min-width: 0;
	height: 100%;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid rgba(30, 106, 135, 0.12);
	border-radius: var(--oc-radius-md);
	background: var(--off-white);
	box-shadow: 0 0.75rem 2rem rgba(30, 106, 135, 0.07);
}

.oc-card > .e-con-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	height: 100%;
}

.oc-card .elementor-widget,
.oc-card .elementor-widget-container,
.oc-card .elementor-heading-title,
.oc-card .elementor-widget-text-editor {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
}

.oc-card > .e-con-inner::before {
	display: block;
	flex: 0 0 auto;
	width: clamp(4.5rem, 5vw, 5.25rem);
	height: clamp(4.5rem, 5vw, 5.25rem);
	margin-bottom: 1.5rem;
	align-self: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.oc-grid-three > .oc-card:nth-child(1) > .e-con-inner::before {
	background-image: url("assets/icons/card-discover.svg");
}

.oc-grid-three > .oc-card:nth-child(2) > .e-con-inner::before {
	background-image: url("assets/icons/card-participate.svg");
}

.oc-grid-three > .oc-card:nth-child(3) > .e-con-inner::before {
	background-image: url("assets/icons/card-create.svg");
}

.oc-card > .e-con-inner > .elementor-widget-button {
	width: auto;
	margin-top: auto;
	align-self: flex-start;
}

.oc-grid-three {
	--display: grid;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--oc-grid-gap);
	align-items: stretch;
}

.oc-presentation-short {
	padding: clamp(4rem, 7vw, 7rem) 0;
	background: var(--sand-light);
}

.oc-presentation-short__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.oc-presentation-short__media {
	position: relative;
	min-height: clamp(22rem, 36vw, 30rem);
	overflow: hidden;
	border: 1px solid rgba(30, 106, 135, 0.12);
	border-radius: var(--oc-radius-lg);
	background: rgba(111, 183, 198, 0.16);
}

.oc-presentation-short__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
}

.oc-presentation-short__content {
	max-width: 34rem;
	min-width: 0;
}

.oc-presentation-short__content h2,
.oc-presentation-short__content p {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.oc-presentation-short__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--terracotta);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-presentation-short h2 {
	margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	line-height: 1.08;
}

.oc-presentation-short__content > p:not(.oc-presentation-short__eyebrow) {
	margin: 0 0 1rem;
	color: var(--oc-ink);
	font-family: var(--oc-font-body);
	line-height: 1.75;
}

.oc-presentation-short__button {
	margin-top: 0.75rem;
}

.oc-creations-selection {
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	background: var(--off-white);
}

.oc-creations-selection__header {
	max-width: 50rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.oc-creations-selection__header h2 {
	margin: 0 0 1rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	line-height: 1.08;
}

.oc-creations-selection__header p {
	max-width: 44rem;
	margin: 0;
	color: var(--oc-ink);
	font-family: var(--oc-font-body);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.7;
}

.oc-creations-selection__gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: minmax(17rem, 1.25fr) minmax(10rem, 0.75fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

.oc-creation-preview {
	display: flex;
	min-width: 0;
	margin: 0;
	flex-direction: column;
}

.oc-creation-preview--featured {
	grid-area: 1 / 1 / 3 / 8;
}

.oc-creation-preview:nth-child(2) {
	grid-area: 1 / 8 / 2 / 13;
}

.oc-creation-preview:nth-child(3) {
	grid-area: 2 / 8 / 3 / 11;
}

.oc-creation-preview:nth-child(4) {
	grid-area: 2 / 11 / 3 / 13;
}

.oc-creation-preview__media {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(30, 106, 135, 0.1);
	border-radius: var(--oc-radius-md);
	background: linear-gradient(145deg, rgba(111, 183, 198, 0.2), rgba(245, 233, 215, 0.72));
}

.oc-creation-preview__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oc-creation-preview--featured .oc-creation-preview__media img {
	object-position: 50% 58%;
}

.oc-creation-preview:nth-child(2) .oc-creation-preview__media img {
	object-position: 50% 58%;
}

.oc-creation-preview:nth-child(3) .oc-creation-preview__media img {
	object-position: center;
}

.oc-creation-preview:nth-child(4) .oc-creation-preview__media img {
	object-fit: contain;
	object-position: center;
}

.oc-creation-preview figcaption {
	margin-top: 0.75rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-body);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.oc-creations-selection__action {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 3.5rem);
}

.oc-collective-experience {
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	border-top: 1px solid rgba(30, 106, 135, 0.08);
	background: var(--off-white);
}

.oc-collective-experience__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.oc-collective-experience__content {
	min-width: 0;
}

.oc-collective-experience__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--terracotta);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-collective-experience h2 {
	margin: 0 0 1.5rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	font-weight: 400;
	line-height: 1.08;
}

.oc-collective-experience__content > p:not(.oc-collective-experience__eyebrow):not(.oc-collective-experience__highlight) {
	margin: 0 0 1rem;
	line-height: 1.75;
}

.oc-collective-experience__highlight {
	margin: 1.5rem 0;
	padding: 0.75rem 0 0.75rem 1rem;
	border-left: 3px solid var(--ochre);
	color: var(--ocean-blue);
	font-weight: 700;
}

.oc-collective-experience__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.oc-collective-experience__steps li {
	display: flex;
	gap: 0.65rem;
	min-width: 0;
	align-items: flex-start;
}

.oc-collective-experience__steps li > span {
	display: grid;
	flex: 0 0 1.75rem;
	width: 1.75rem;
	height: 1.75rem;
	place-items: center;
	border: 1px solid rgba(30, 106, 135, 0.2);
	border-radius: 50%;
	color: var(--ocean-blue);
	font-size: 0.75rem;
	font-weight: 700;
}

.oc-collective-experience__steps strong {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--ocean-blue);
	font-size: 0.9rem;
}

.oc-collective-experience__steps p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.oc-collective-experience__button {
	margin-top: 0.25rem;
}

.oc-collective-experience__media {
	position: relative;
	min-height: clamp(26rem, 38vw, 34rem);
	overflow: hidden;
	border: 1px solid rgba(30, 106, 135, 0.1);
	border-radius: var(--oc-radius-lg);
	background: var(--sand-light);
}

.oc-collective-experience__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.oc-appointments {
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	background: var(--sand-light);
}

.oc-appointments__header {
	max-width: var(--oc-content-text);
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.oc-appointments__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--terracotta);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-appointments__header h2 {
	margin: 0 0 1rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.1;
}

.oc-appointments__header > p:last-child {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.7;
}

.oc-appointments__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.oc-appointment-card {
	display: flex;
	min-width: 0;
	min-height: 23rem;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid rgba(30, 106, 135, 0.12);
	border-radius: var(--oc-radius-lg);
	background: var(--off-white);
}

.oc-appointment-card__status {
	display: inline-flex;
	min-height: 2rem;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 0.35rem 0.8rem;
	border: 1px solid rgba(30, 106, 135, 0.12);
	border-radius: 999px;
	background: rgba(111, 183, 198, 0.16);
	color: var(--ocean-blue);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.oc-appointment-card:nth-child(2) .oc-appointment-card__status {
	background: rgba(224, 164, 74, 0.14);
}

.oc-appointment-card:nth-child(3) .oc-appointment-card__status {
	background: rgba(245, 233, 215, 0.85);
}

.oc-appointment-card h3 {
	margin: 0 0 1rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(1.5rem, 2.25vw, 2rem);
	font-weight: 400;
	line-height: 1.18;
}

.oc-appointment-card p {
	margin: 0 0 1.75rem;
	line-height: 1.7;
}

.oc-appointment-card__button {
	margin-top: auto;
}

.oc-appointments__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
	justify-content: center;
	margin-top: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.oc-appointments__cta p {
	margin: 0;
	color: var(--ocean-blue);
	font-weight: 700;
}

.oc-project-invitation {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	background: var(--ocean-blue);
	color: var(--off-white);
}

.oc-project-invitation::before {
	position: absolute;
	z-index: -1;
	right: -12rem;
	bottom: -16rem;
	width: 42rem;
	height: 32rem;
	border: 1px solid rgba(111, 183, 198, 0.18);
	border-radius: 50%;
	content: "";
	transform: rotate(-12deg);
}

.oc-project-invitation__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3rem, 7vw, 6rem);
	align-items: center;
}

.oc-project-invitation__content {
	min-width: 0;
}

.oc-project-invitation__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--ochre);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-project-invitation h2 {
	margin: 0 0 1.5rem;
	color: var(--off-white);
	font-family: var(--oc-font-display);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 400;
	line-height: 1.08;
}

.oc-project-invitation__content > p:not(.oc-project-invitation__eyebrow):not(.oc-project-invitation__conclusion) {
	margin: 0 0 1rem;
	line-height: 1.75;
}

.oc-project-invitation__conclusion {
	margin: 1.5rem 0 0;
	padding-left: 1rem;
	border-left: 3px solid var(--ochre);
	color: var(--off-white);
	font-weight: 700;
	line-height: 1.65;
}

.oc-project-invitation__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-top: 2rem;
}

.oc-project-invitation .oc-button-primary:not(.elementor-widget-button) {
	background: var(--ochre);
	color: #202020;
}

.oc-project-invitation .oc-button-primary:not(.elementor-widget-button):hover,
.oc-project-invitation .oc-button-primary:not(.elementor-widget-button):focus-visible {
	border-color: var(--ochre);
	background: var(--off-white);
	color: var(--ocean-blue);
}

.oc-project-invitation .oc-button-secondary:not(.elementor-widget-button) {
	border-color: rgba(251, 248, 245, 0.75);
	background: transparent;
	color: var(--off-white);
}

.oc-project-invitation .oc-button-secondary:not(.elementor-widget-button):hover,
.oc-project-invitation .oc-button-secondary:not(.elementor-widget-button):focus-visible {
	border-color: var(--off-white);
	background: var(--off-white);
	color: var(--ocean-blue);
}

.oc-project-types {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

.oc-project-type {
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: 1px solid rgba(251, 248, 245, 0.18);
	border-radius: var(--oc-radius-md);
	background: rgba(251, 248, 245, 0.06);
}

.oc-project-type img {
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
}

.oc-project-type h3 {
	margin: 0 0 0.45rem;
	color: var(--off-white);
	font-family: var(--oc-font-display);
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 400;
	line-height: 1.2;
}

.oc-project-type p {
	margin: 0;
	color: rgba(251, 248, 245, 0.86);
	font-size: 0.9rem;
	line-height: 1.55;
}

.oc-home-values {
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	background: var(--off-white);
}

.oc-home-values__header {
	max-width: var(--oc-content-text);
	margin: 0 auto clamp(3rem, 6vw, 5rem);
	text-align: center;
}

.oc-home-values__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--terracotta);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-home-values__header h2 {
	margin: 0 0 1rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.1;
}

.oc-home-values__header > p:last-child {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.7;
}

.oc-home-values__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.oc-value {
	min-width: 0;
	text-align: center;
}

.oc-value img {
	display: block;
	width: clamp(3.5rem, 5vw, 4.5rem);
	height: clamp(3.5rem, 5vw, 4.5rem);
	margin: 0 auto 1.25rem;
}

.oc-value h3 {
	margin: 0 0 0.45rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-body);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 700;
	line-height: 1.25;
}

.oc-value p {
	max-width: 15rem;
	margin: 0 auto;
	color: rgba(25, 51, 61, 0.8);
	font-size: 0.875rem;
	line-height: 1.55;
}

.oc-final-call {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background: var(--sand-light);
}

.oc-final-call::before {
	position: absolute;
	z-index: -1;
	top: 18%;
	left: 50%;
	width: min(72rem, 92vw);
	height: 70%;
	border: 2px solid rgba(30, 106, 135, 0.08);
	border-right-color: transparent;
	border-radius: 50%;
	content: "";
	transform: translateX(-50%) rotate(-4deg);
}

.oc-final-call__inner {
	display: flex;
	max-width: 54rem;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.oc-final-call__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--terracotta);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.oc-final-call h2 {
	margin: 0 0 1.25rem;
	color: var(--ocean-blue);
	font-family: var(--oc-font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.06;
}

.oc-final-call__text {
	max-width: 46rem;
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
}

.oc-final-call__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	justify-content: center;
	margin-top: 2rem;
}

.oc-final-call__contact {
	margin-top: 1.25rem;
	color: var(--ocean-blue);
	font-size: 0.9rem;
	font-weight: 700;
	text-underline-offset: 0.2em;
}

.oc-final-call__contact:hover,
.oc-final-call__contact:focus-visible {
	color: var(--terracotta);
}

[data-footer*="type-1"] .ct-footer {
	background-color: #1E6A87 !important;
	background-image: none !important;
	color: #FBF8F5 !important;
}

[data-footer*="type-1"] .ct-footer [data-row="bottom"],
[data-footer*="type-1"] .ct-footer [data-row="bottom"] > div {
	background-color: transparent !important;
	background-image: none !important;
}

[data-footer*="type-1"] .ct-footer [data-row="bottom"] > .ct-container {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

[data-footer*="type-1"] .ct-footer [data-column="copyright"],
[data-footer*="type-1"] .ct-footer .ct-footer-copyright {
	--theme-link-initial-color: #FBF8F5;
	--theme-link-hover-color: #F5E9D7;
	--theme-text-color: #FBF8F5;
	width: 100%;
	margin: 0;
	color: #FBF8F5 !important;
	text-align: left;
}

.oc-site-footer {
	padding-top: clamp(3rem, 6vw, 5rem);
	font-family: var(--oc-font-body);
}

.oc-site-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}

.oc-site-footer__identity,
.oc-site-footer__navigation,
.oc-site-footer__contact {
	min-width: 0;
}

.oc-site-footer__logo {
	display: inline-flex;
	width: min(15rem, 100%);
	padding: 0.65rem 0.9rem;
	border-radius: var(--oc-radius-sm);
	background: var(--off-white);
}

.oc-site-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.oc-site-footer__tagline {
	margin: 1.1rem 0 0.45rem;
	color: #FBF8F5 !important;
	font-family: var(--oc-font-display);
	font-size: 1.15rem;
	line-height: 1.3;
}

.oc-site-footer__description,
.oc-site-footer__contact p {
	margin: 0;
	color: rgba(251, 248, 245, 0.86) !important;
	font-size: 0.9rem;
	line-height: 1.65;
}

.oc-site-footer h2 {
	margin: 0 0 1rem;
	color: #FBF8F5 !important;
	font-family: var(--oc-font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.oc-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.oc-site-footer__navigation ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem 1.25rem;
}

.oc-site-footer a:not(.oc-site-footer__logo) {
	color: #FBF8F5 !important;
	text-decoration-color: rgba(111, 183, 198, 0.55);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

.oc-site-footer a:not(.oc-site-footer__logo):hover,
.oc-site-footer a:not(.oc-site-footer__logo):focus-visible {
	color: #F5E9D7 !important;
	text-decoration-color: currentColor;
	text-decoration-thickness: 2px;
}

.oc-site-footer a:focus-visible {
	outline: 3px solid #FBF8F5;
	outline-offset: 4px;
	box-shadow: 0 0 0 2px #1E6A87, 0 0 0 4px #E0A44A;
}

.oc-site-footer__contact > a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	margin-top: 0.75rem;
	font-weight: 700;
}

.oc-site-footer__bottom {
	display: flex;
	gap: 1rem 2rem;
	align-items: center;
	justify-content: space-between;
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-block: 1.25rem;
	border-top: 1px solid rgba(251, 248, 245, 0.18);
}

.oc-site-footer__bottom > p {
	margin: 0;
	color: rgba(251, 248, 245, 0.86) !important;
	font-size: 0.8rem;
}

.oc-site-footer__legal ul {
	display: flex;
	gap: 0.75rem 1.5rem;
	flex-wrap: wrap;
}

.oc-site-footer__legal a {
	font-size: 0.8rem;
}

.oc-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(0.75rem, 2vw, 1.5rem);
}

.oc-gallery-grid > :nth-child(3n + 1) {
	grid-column: span 7;
}

.oc-gallery-grid > :nth-child(3n + 2) {
	grid-column: span 5;
}

.oc-gallery-grid > :nth-child(3n) {
	grid-column: span 12;
}

.oc-values-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border-radius: var(--oc-radius-md);
	background: rgba(30, 106, 135, 0.2);
}

.oc-value-item {
	min-height: 8rem;
	padding: 1.25rem;
	background: var(--off-white);
	text-align: center;
}

.oc-value-placeholder {
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0 auto 0.75rem;
	border: 2px dashed var(--soft-blue);
	border-radius: 50%;
}

.page-id-17 .oc-logo-band {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.625rem, 1vw, 1rem) 1rem;
	background: var(--off-white);
}

.page-id-17 .oc-logo-band__image {
	display: block;
	width: clamp(16.875rem, 47vw, 32.5rem);
	max-width: 100%;
	height: auto;
}

.oc-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: clamp(34rem, 62svh, 44rem) !important;
	align-items: stretch;
	justify-content: center !important;
	overflow: hidden;
	padding-block: clamp(5rem, 9vw, 8rem);
	background-color: var(--ocean-blue);
	background-image: url("assets/images/hero/hero-sunset-sand-hd.jpg");
	background-position: 58% center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--oc-white);
	font-family: var(--oc-font-body);
}

.oc-hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(30, 106, 135, 0.52) 0%,
		rgba(30, 106, 135, 0.34) 32%,
		rgba(30, 106, 135, 0.12) 48%,
		rgba(30, 106, 135, 0.03) 62%,
		rgba(30, 106, 135, 0) 75%
	);
	content: "";
	pointer-events: none;
}

.oc-hero-media-placeholder {
	display: none !important;
}

.oc-hero > .oc-container-wide {
	position: relative;
	z-index: 2;
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	justify-content: center;
}

.oc-hero .oc-title-display {
	position: absolute;
	width: 1px !important;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Le titre reste le H1 sémantique du Hero, sans doubler visuellement le logo. */
.oc-hero .oc-title-display .elementor-heading-title {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.oc-hero .elementor-element-496ef0d0 {
	display: none !important;
}

.oc-hero .elementor-heading-title,
.oc-hero .elementor-widget-text-editor,
.oc-hero .elementor-widget-text-editor p {
	color: var(--oc-white);
}

.oc-hero .elementor-widget-heading,
.oc-hero .elementor-widget-text-editor {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.oc-hero h2.elementor-heading-title {
	max-width: 28ch;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	line-height: 1.15;
}

.oc-hero .oc-intro {
	text-shadow: 0 1px 1rem rgba(25, 51, 61, 0.35);
}

.oc-hero .elementor-widget-button {
	width: auto;
	align-self: flex-start;
}

.oc-image-full-width,
.oc-image-full-width img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	.oc-hero {
		min-height: clamp(38rem, 68svh, 44rem) !important;
	}

	.oc-grid-three {
		--display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oc-grid-three > :last-child {
		grid-column: 1 / -1;
	}

	.oc-values-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oc-site-footer__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oc-site-footer__contact {
		grid-column: 1 / -1;
	}

	.oc-appointments__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oc-appointment-card:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 0.625rem);
		justify-self: center;
	}

	.oc-creations-selection__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.oc-creation-preview,
	.oc-creation-preview:nth-child(2),
	.oc-creation-preview:nth-child(3),
	.oc-creation-preview:nth-child(4) {
		grid-area: auto;
	}

	.oc-creation-preview--featured,
	.oc-creation-preview:nth-child(4) {
		grid-column: 1 / -1;
	}

	.oc-creation-preview__media {
		flex: none;
		aspect-ratio: 4 / 3;
	}

	.oc-creation-preview--featured .oc-creation-preview__media,
	.oc-creation-preview:nth-child(4) .oc-creation-preview__media {
		aspect-ratio: 16 / 7;
	}
}

@media (max-width: 900px) {
	.oc-presentation-short__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.oc-collective-experience__inner {
		grid-template-columns: 1fr;
	}

	.oc-collective-experience__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.oc-project-invitation__inner {
		grid-template-columns: 1fr;
	}

	.oc-home-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oc-presentation-short__media,
	.oc-presentation-short__content {
		width: 100%;
		max-width: none;
	}

	.oc-presentation-short__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 767px) {
	.oc-container-wide {
		width: min(100% - 1.25rem, var(--oc-content-wide));
	}

	.elementor-element.oc-container-wide {
		width: min(100% - 1.25rem, var(--oc-content-wide)) !important;
	}

	.page-id-17 .elementor-element-5155db2f.oc-container-wide {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-presentation-short__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-creations-selection__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-collective-experience__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-appointments__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-project-invitation__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-home-values__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.page-id-17 .oc-final-call__inner {
		width: calc(100% - 3rem) !important;
		max-width: calc(100% - 3rem);
	}

	.oc-card > .e-con-inner::before {
		width: 4.5rem;
		height: 4.5rem;
	}

	.oc-presentation-short {
		padding-block: 3.5rem;
	}

	.oc-presentation-short h2 {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.oc-creations-selection {
		padding-block: 4rem;
	}

	.oc-creations-selection__header h2 {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.oc-collective-experience {
		padding-block: 4rem;
	}

	.oc-collective-experience h2 {
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.oc-collective-experience__steps {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.oc-appointments {
		padding-block: 4rem;
	}

	.oc-appointments__grid {
		grid-template-columns: 1fr;
	}

	.oc-appointment-card,
	.oc-appointment-card:last-child {
		grid-column: auto;
		width: 100%;
		min-height: 0;
	}

	.oc-appointments__cta {
		flex-direction: column;
	}

	.oc-project-invitation {
		padding-block: 4rem;
	}

	.oc-project-types {
		grid-template-columns: 1fr;
	}

	.oc-project-invitation__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.oc-home-values {
		padding-block: 4rem;
	}

	.oc-home-values__grid {
		gap: 2.75rem 1.25rem;
	}

	.oc-final-call {
		padding-block: 4rem;
	}

	.oc-final-call h2 {
		font-size: clamp(2.25rem, 11vw, 3.25rem);
	}

	.oc-final-call__actions {
		align-items: center;
		flex-direction: column;
	}

	.oc-site-footer__main {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.oc-site-footer__contact {
		grid-column: auto;
	}

	.oc-site-footer__navigation ul {
		grid-template-columns: 1fr;
	}

	.oc-site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.oc-creations-selection__gallery {
		grid-template-columns: minmax(0, 1fr);
	}

	.oc-creation-preview--featured,
	.oc-creation-preview:nth-child(4) {
		grid-column: auto;
	}

	.oc-creation-preview__media,
	.oc-creation-preview--featured .oc-creation-preview__media,
	.oc-creation-preview:nth-child(4) .oc-creation-preview__media {
		aspect-ratio: 4 / 3;
	}

	.oc-grid-three,
	.oc-values-band {
		grid-template-columns: minmax(0, 1fr);
	}

	.oc-grid-three > :last-child,
	.oc-gallery-grid > * {
		grid-column: 1 / -1;
	}

	.oc-hero {
		min-height: clamp(36rem, 78svh, 42rem) !important;
		padding-block: 3rem;
		background-position: 56% center;
	}

	.oc-hero h2.elementor-heading-title {
		max-width: 100%;
		font-size: 1.5rem;
		overflow-wrap: anywhere;
	}

	.oc-hero .elementor-widget-button,
	.oc-card .elementor-widget-button {
		width: auto;
		max-width: 100%;
	}
}

@media (max-width: 360px) {
	.oc-home-values__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oc-button-primary,
	.oc-button-primary .elementor-button,
	.oc-button-secondary,
	.oc-button-secondary .elementor-button {
		transition: none;
	}
}
