/* NC Rénovation — Mobile-first styles */

:root {
	--nc-anthracite: #202020;
	--nc-bronze: #B28A57;
	--nc-blanc-casse: #F5F3EF;
	--nc-pierre: #D7CCBC;
	--nc-noir: #151515;
	--nc-white: #ffffff;
	--nc-font-heading: 'Montserrat', sans-serif;
	--nc-font-body: 'Inter', sans-serif;
	--nc-font-display: 'Cormorant Garamond', serif;
	--nc-container: 1200px;
	--nc-header-h: 72px;
	--nc-usp-h: 4.75rem;
	--nc-hero-ar-w: 1920;
	--nc-hero-ar-h: 1004;
	--nc-radius: 0;
	--nc-transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--nc-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--nc-anthracite);
	background: var(--nc-blanc-casse);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.nc-container {
	width: 100%;
	max-width: var(--nc-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.nc-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	background: var(--nc-bronze);
	color: var(--nc-white);
	padding: 0.75rem 1rem;
}

.nc-skip-link:focus { left: 0; }

/* Header */
.nc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--nc-noir);
	height: var(--nc-header-h);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.25rem;
	gap: 1rem;
	min-width: 0;
}

.nc-logo {
	flex-shrink: 0;
	min-width: 0;
}

.nc-logo img {
	height: 52px;
	width: auto;
	max-width: min(110px, 42vw);
	display: block;
}

@media (min-width: 992px) {
	.nc-logo img {
		height: 56px;
	}
}

.nc-header__cta { display: none; }

.nc-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 1001;
}

.nc-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--nc-white);
	margin: 0 auto;
	transition: transform 0.3s ease, opacity 0.2s ease;
	transform-origin: center;
}

.nc-nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nc-nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nc-nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nc-nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nc-nav-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nc-nav {
	position: fixed;
	top: var(--nc-header-h);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: linear-gradient(180deg, #1c1c1c 0%, var(--nc-noir) 100%);
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	visibility: hidden;
	pointer-events: none;
	-webkit-overflow-scrolling: touch;
}

.nc-nav.is-open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.nc-nav__panel {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - var(--nc-header-h));
	min-height: calc(100dvh - var(--nc-header-h));
}

.nc-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nc-header a:not(.nc-btn) {
	color: var(--nc-white);
}

.nc-nav__list > li > a,
.nc-nav__dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.05rem 1.5rem;
	font-family: var(--nc-font-heading);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: var(--nc-white) !important;
	text-transform: uppercase;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	transition: background var(--nc-transition), color var(--nc-transition);
}

.nc-nav__list > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nc-nav__list > li > a:hover,
.nc-nav__dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.03);
}

.nc-nav__list > li.is-active > a,
.nc-nav__list > li.is-active > .nc-nav__dropdown-toggle {
	color: var(--nc-bronze) !important;
	background: rgba(178, 138, 87, 0.08);
	box-shadow: inset 3px 0 0 var(--nc-bronze);
}

.nc-nav__dropdown-toggle::after {
	content: "";
	flex-shrink: 0;
	width: 0.5rem;
	height: 0.5rem;
	margin-left: 1rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.55;
	transition: transform 0.25s ease;
}

.nc-nav__dropdown.is-open .nc-nav__dropdown-toggle::after {
	transform: rotate(-135deg);
}

.nc-nav__submenu {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0 0.85rem;
	display: none;
	background: rgba(0, 0, 0, 0.22);
	border-left: 3px solid rgba(178, 138, 87, 0.35);
	margin-left: 1.5rem;
}

.nc-nav__dropdown.is-open .nc-nav__submenu { display: block; }

.nc-nav__submenu a {
	display: block;
	padding: 0.7rem 1.25rem;
	font-family: var(--nc-font-body);
	font-size: 0.92rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.78);
	transition: color var(--nc-transition), background var(--nc-transition);
}

.nc-nav__submenu a:hover {
	color: var(--nc-white);
	background: rgba(255, 255, 255, 0.04);
}

.nc-nav__cta-mobile {
	margin-top: auto;
	padding: 1.25rem 1.5rem 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nc-nav__cta-mobile .nc-btn {
	width: 100%;
	padding: 1rem 1.35rem;
	font-size: 0.75rem;
}

/* Buttons */
.nc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.35rem;
	font-family: var(--nc-font-heading);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--nc-transition);
	white-space: nowrap;
}

.nc-btn--primary {
	background: var(--nc-bronze);
	color: var(--nc-white);
	border-color: var(--nc-bronze);
}

.nc-btn--primary:hover {
	background: #9a7548;
	border-color: #9a7548;
}

.nc-btn--outline {
	background: transparent;
	color: var(--nc-white);
	border-color: var(--nc-white);
}

.nc-btn--outline:hover {
	background: rgba(255,255,255,0.1);
}

.nc-btn--outline-dark {
	background: transparent;
	color: var(--nc-anthracite);
	border-color: var(--nc-anthracite);
}

.nc-btn--outline-dark:hover {
	background: var(--nc-anthracite);
	color: var(--nc-white);
}

.nc-btn--lg { padding: 1rem 1.5rem; font-size: 0.75rem; }

.nc-btn__arrow { font-size: 1.1em; line-height: 1; }

/* Hero */
.nc-hero {
	background: var(--nc-noir);
	display: flex;
	flex-direction: column;
}

.nc-hero__stage {
	width: 100%;
	padding: 0;
}

.nc-hero__media {
	position: relative;
	width: 100%;
	height: min(
		calc(100vw * var(--nc-hero-ar-h) / var(--nc-hero-ar-w)),
		calc(100dvh - var(--nc-usp-h))
	);
	min-height: 240px;
	margin: 0 auto;
	line-height: 0;
	background: var(--nc-noir);
	overflow: hidden;
}

.nc-hero__carousel,
.nc-hero__track {
	position: absolute;
	inset: 0;
}

.nc-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.nc-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.nc-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-hero__dots {
	position: absolute;
	z-index: 3;
	bottom: 1rem;
	right: clamp(1rem, 4vw, 2rem);
	display: flex;
	gap: 0.5rem;
}

.nc-hero__dot {
	width: 2.5rem;
	height: 3px;
	padding: 0;
	border: none;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: background var(--nc-transition), transform var(--nc-transition);
}

.nc-hero__dot.is-active {
	background: var(--nc-bronze);
	transform: scaleY(1.4);
}

.nc-hero__dot:focus-visible {
	outline: 2px solid var(--nc-bronze);
	outline-offset: 3px;
}

.nc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(105deg, rgba(21,21,21,0.55) 0%, rgba(21,21,21,0.18) 40%, transparent 55%);
}

.nc-hero__content {
	position: absolute;
	z-index: 2;
	left: clamp(1rem, 5vw, 2.5rem);
	top: calc(var(--nc-header-h) + 1.5rem);
	transform: none;
	width: min(46%, 400px);
	padding: 0;
}

@media (min-width: 992px) {
	.nc-hero__content {
		top: 50%;
		transform: translateY(-40%);
		width: min(58%, 580px);
		max-width: calc(100% - 2rem);
	}
}

@media (min-width: 1200px) {
	.nc-hero__eyebrow,
	.nc-hero__title {
		white-space: nowrap;
	}
}

@media (max-width: 991px) {
	.nc-hero {
		padding-top: var(--nc-header-h);
	}

	.nc-hero__media {
		display: flex;
		flex-direction: column;
		width: 100%;
		min-height: 0;
		height: auto;
		overflow: visible;
	}

	.nc-hero__carousel,
	.nc-hero__track {
		position: relative;
		inset: auto;
		order: 2;
		width: 100%;
		aspect-ratio: var(--nc-hero-ar-w) / var(--nc-hero-ar-h);
	}

	.nc-hero__slide {
		position: absolute;
		inset: 0;
	}

	.nc-hero__img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.nc-hero__dots {
		bottom: 0.75rem;
		right: 1rem;
	}

	.nc-hero__content {
		order: 1;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		padding: 2rem 1.25rem 1.5rem;
		background: var(--nc-noir);
	}

	.nc-hero__overlay {
		display: none;
	}

	.nc-hero__text {
		max-width: none;
	}

	.nc-hero__actions {
		align-items: stretch;
	}

	.nc-hero__actions .nc-btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}

}

.nc-hero__eyebrow {
	font-family: var(--nc-font-heading);
	font-size: clamp(0.85rem, 2.2vw, 1.05rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--nc-bronze);
	text-transform: uppercase;
	margin: 0 0 1rem;
	line-height: 1.35;
}

.nc-hero__title {
	font-family: var(--nc-font-display);
	font-size: clamp(2.25rem, 8vw, 3.75rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--nc-white);
	margin: 0 0 1.25rem;
}

.nc-hero__text {
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.88);
	margin: 0 0 2rem;
	max-width: 420px;
}

.nc-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* USP bar — below hero image */
.nc-usp-bar {
	position: relative;
	z-index: 3;
	background: rgba(21, 21, 21, 0.95);
	border-top: 1px solid rgba(178, 138, 87, 0.25);
}

.nc-usp-bar__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-items: center;
	gap: 0.75rem 1rem;
	padding: 1.25rem 0;
}

.nc-usp-bar__item:last-child {
	grid-column: 1 / -1;
}

.nc-usp-bar__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: max-content;
	max-width: 100%;
	color: var(--nc-bronze);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.nc-usp-bar__label {
	color: var(--nc-white);
}

.nc-usp-bar__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: 1.5px solid var(--nc-bronze);
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
}

/* Icons — crisp stroke SVGs (24 viewBox, round caps) */
.nc-icon--interlocutor {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.nc-icon--complete {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 3l9 7.5'/%3E%3Cpath d='M5 9.5V21h14V9.5'/%3E%3Cpath d='M9 21v-7h6v7'/%3E%3C/svg%3E");
}
.nc-icon--quote {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='1'/%3E%3Cpath d='M9 12h6M9 16h4'/%3E%3C/svg%3E");
}
.nc-icon--quality {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4.5 6.5v5.2c0 4.7 3.2 8.1 7.5 9.3 4.3-1.2 7.5-4.6 7.5-9.3V6.5L12 3z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.nc-icon--location {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.35 7-11a7 7 0 1 0-14 0c0 6.65 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.nc-icon--renovation {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}
.nc-icon--shower {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4v2.5A6.5 6.5 0 0 0 10.5 13H12'/%3E%3Cpath d='M12 13a4 4 0 0 0 4-4V4H8'/%3E%3Cpath d='M8 19v1M12 17v1M16 19v1M6 15v1M18 15v1'/%3E%3C/svg%3E");
}
.nc-icon--tiles {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}
.nc-icon--plumbing {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.7c.4 1.2 2 3.6 2 5.3a2 2 0 1 1-4 0c0-1.7 1.6-4.1 2-5.3z'/%3E%3Cpath d='M8.2 11.2c.5 1.4 2.3 4 2.3 5.8a1.5 1.5 0 1 1-3 0c0-1.8 1.3-4.1 1.7-5.8z'/%3E%3Cpath d='M15.8 11.2c.4 1.7 1.7 4 1.7 5.8a1.5 1.5 0 1 1-3 0c0-1.8 1.8-4.4 2.3-5.8z'/%3E%3C/svg%3E");
}
.nc-icon--heating {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 14.5C7 12.5 7 10 8.5 8c1 2 3 2.5 3 5 0 1.5-1 2.5-2.5 1.5z'/%3E%3Cpath d='M12 22c4-3.2 6-6.4 6-10a6 6 0 1 0-12 0c0 3.6 2 6.8 6 10z'/%3E%3C/svg%3E");
}
.nc-icon--finishing {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B28A57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m14.7 6.3 3 3'/%3E%3Cpath d='M5 19.5 15.5 9a2.1 2.1 0 0 1 3 3L8 22.5H5v-3z'/%3E%3Cpath d='M12 22h7'/%3E%3C/svg%3E");
}

/* Section heading */
.nc-section-heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	min-width: 0;
}

.nc-section-heading__title {
	font-family: var(--nc-font-heading);
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
	min-width: 0;
}

.nc-section-heading__dark { color: var(--nc-anthracite); }
.nc-section-heading__bronze { color: var(--nc-bronze); }

.nc-section-heading__line {
	flex: 1;
	height: 1px;
	background: var(--nc-bronze);
	min-width: 40px;
}

.nc-section-heading--light .nc-section-heading__dark { color: var(--nc-anthracite); }

/* Services grid */
.nc-services {
	padding: 4rem 0;
	background: var(--nc-blanc-casse);
}

.nc-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.nc-service-card {
	display: block;
	overflow: hidden;
	background: var(--nc-noir);
	transition: transform var(--nc-transition);
}

.nc-service-card:hover { transform: translateY(-3px); }

.nc-service-card__visual {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--nc-noir);
}

.nc-service-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-service-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(21, 21, 21, 0.72) 0%,
		rgba(21, 21, 21, 0.28) 38%,
		rgba(21, 21, 21, 0.04) 68%,
		transparent 100%
	);
	pointer-events: none;
}

.nc-service-card__footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1rem;
	min-height: 64px;
}

.nc-service-card__icon {
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--nc-bronze);
	border-radius: 50%;
	flex-shrink: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.nc-service-card__label {
	font-family: var(--nc-font-heading);
	font-size: clamp(0.58rem, 2.5vw, 0.65rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--nc-white);
	text-transform: uppercase;
	line-height: 1.3;
	hyphens: auto;
	overflow-wrap: anywhere;
}

/* Réalisations */
.nc-realisations-teaser {
	padding: 4rem 0;
	background: var(--nc-white);
}

.nc-realisations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.nc-realisations__grid--archive {
	grid-template-columns: 1fr;
}

.nc-realisation-card {
	background: var(--nc-white);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	transition: transform var(--nc-transition);
}

.nc-realisation-card:hover { transform: translateY(-4px); }

.nc-realisation-card__image {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.nc-realisation-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-realisation-card__body {
	padding: 1.25rem;
}

.nc-realisation-card__body h2,
.nc-realisation-card__body h3 {
	font-family: var(--nc-font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nc-realisation-card__body p {
	margin: 0;
	font-size: 0.875rem;
	color: #666;
}

.nc-realisation-card__link {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: var(--nc-bronze);
	font-weight: 600;
}

.nc-section-cta { text-align: center; margin-top: 2rem; }

/* Values */
.nc-values {
	padding: 4rem 0;
	background: var(--nc-noir);
	color: var(--nc-white);
}

.nc-values__inner {
	display: grid;
	gap: 2rem;
}

.nc-values__text h2 {
	font-family: var(--nc-font-display);
	font-size: clamp(1.75rem, 5vw, 2.5rem);
	font-weight: 400;
	margin: 0 0 1rem;
}

.nc-values__text p {
	color: rgba(255,255,255,0.8);
	margin: 0;
}

.nc-values__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.nc-values__list li {
	font-family: var(--nc-font-heading);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--nc-bronze);
	padding-left: 1.5rem;
	position: relative;
}

.nc-values__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	background: var(--nc-bronze);
	transform: translateY(-50%) rotate(45deg);
}

/* CTA devis band */
.nc-cta-devis {
	padding: 3rem 0;
	background: var(--nc-pierre);
}

.nc-cta-devis__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

.nc-cta-devis h2 {
	font-family: var(--nc-font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nc-cta-devis p { margin: 0; }

/* Page templates */
.nc-page-hero {
	padding: calc(var(--nc-header-h) + 2.5rem) 0 2rem;
	background: var(--nc-noir);
	color: var(--nc-white);
}

.nc-page-hero--compact { padding-bottom: 1.5rem; }

.nc-page-hero h1 {
	font-family: var(--nc-font-display);
	font-size: clamp(2rem, 6vw, 3rem);
	font-weight: 400;
	margin: 0;
}

.nc-page-hero__intro {
	color: rgba(255,255,255,0.85);
	max-width: 720px;
	margin: 1rem 0 0;
}

.nc-page-hero__meta {
	color: var(--nc-bronze);
	margin: 0.5rem 0 0;
}

.nc-page {
	padding: 3rem 0;
}

.nc-page--narrow {
	width: 100%;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.nc-content h2 {
	font-family: var(--nc-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 2rem 0 1rem;
	color: var(--nc-anthracite);
}

.nc-content h3 {
	font-family: var(--nc-font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	margin: 1.5rem 0 0.75rem;
}

.nc-content p,
.nc-content li {
	margin-bottom: 1rem;
}

.nc-content ul {
	padding-left: 1.25rem;
}

.nc-content img,
.nc-content table,
.nc-content iframe {
	max-width: 100%;
	height: auto;
}

/* Contact */
.nc-contact-grid {
	display: grid;
	gap: 2rem;
}

.nc-contact-card {
	background: var(--nc-white);
	padding: 2rem;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.nc-contact-card h2 {
	font-family: var(--nc-font-heading);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1.25rem;
}

.nc-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nc-contact-list li {
	margin-bottom: 1rem;
}

.nc-contact-list strong {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--nc-bronze);
	margin-bottom: 0.25rem;
}

.nc-contact-actions { margin-top: 1.5rem; }

.nc-map-embed {
	border-radius: 2px;
	overflow: hidden;
}

/* Devis form */
.nc-devis-progress {
	margin-bottom: 1.25rem;
}

.nc-devis-progress__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.35rem;
}

.nc-devis-progress__item {
	min-width: 0;
}

.nc-devis-progress__btn {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 0.25rem;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #888;
	font: inherit;
	position: relative;
}

.nc-devis-progress__btn:disabled {
	cursor: default;
	opacity: 0.55;
}

.nc-devis-progress__btn:not(:disabled):hover {
	color: var(--nc-anthracite);
}

.nc-devis-progress__index {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--nc-font-heading);
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1;
	background: var(--nc-white);
	transition: background var(--nc-transition), border-color var(--nc-transition), color var(--nc-transition);
}

.nc-devis-progress__label {
	font-family: var(--nc-font-heading);
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nc-devis-progress__item.is-active .nc-devis-progress__btn,
.nc-devis-progress__item.is-done .nc-devis-progress__btn {
	color: var(--nc-anthracite);
	opacity: 1;
}

.nc-devis-progress__item.is-active .nc-devis-progress__index {
	background: var(--nc-bronze);
	border-color: var(--nc-bronze);
	color: var(--nc-white);
}

.nc-devis-progress__item.is-done .nc-devis-progress__index {
	background: rgba(178, 138, 87, 0.18);
	border-color: var(--nc-bronze);
	color: var(--nc-bronze);
}

.nc-devis-progress__item.is-done .nc-devis-progress__index::before {
	content: "✓";
	font-size: 0.7rem;
}

.nc-devis-progress__item.is-done .nc-devis-progress__index {
	font-size: 0;
}

.nc-devis-progress__status {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	color: #666;
	text-align: center;
}

.nc-devis-form {
	background: var(--nc-white);
	padding: 1.5rem 1.25rem;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	position: relative;
}

.nc-hp {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nc-devis-step__title {
	margin: 0 0 0.35rem;
	font-family: var(--nc-font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--nc-anthracite);
}

.nc-devis-step__intro {
	margin: 0 0 1.5rem;
	font-size: 0.925rem;
	color: #666;
}

.nc-devis-nav {
	display: flex;
	flex-direction: column-reverse;
	gap: 0.75rem;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nc-devis-nav .nc-btn {
	width: 100%;
	justify-content: center;
}

.nc-devis-nav .nc-btn[hidden],
.nc-devis-step[hidden] {
	display: none !important;
}

.nc-form-field--error input,
.nc-form-field--error select,
.nc-form-field--error textarea {
	border-color: #c0392b;
}

.nc-form-field--error .nc-radio-label {
	border-color: rgba(192, 57, 43, 0.35);
}

.nc-form-field.is-invalid,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
	outline-color: #c0392b;
}

.nc-form-grid {
	display: grid;
	gap: 1rem;
}

.nc-form-grid--2 { grid-template-columns: 1fr; }

.nc-form-field {
	margin-bottom: 1.25rem;
}

.nc-form-field label,
.nc-form-field legend {
	display: block;
	font-family: var(--nc-font-heading);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
	color: var(--nc-anthracite);
}

.nc-form-field input[type="text"],
.nc-form-field input[type="email"],
.nc-form-field input[type="tel"],
.nc-form-field select,
.nc-form-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--nc-pierre);
	background: var(--nc-blanc-casse);
	font-family: var(--nc-font-body);
	font-size: 1rem;
	color: var(--nc-anthracite);
}

.nc-form-field input:focus,
.nc-form-field select:focus,
.nc-form-field textarea:focus {
	outline: 2px solid var(--nc-bronze);
	outline-offset: 1px;
	border-color: var(--nc-bronze);
}

.nc-form-field fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.nc-radio-grid {
	display: grid;
	gap: 0.5rem;
}

.nc-radio-label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.925rem;
	cursor: pointer;
	padding: 0.65rem 0.85rem;
	background: var(--nc-blanc-casse);
	border: 1px solid transparent;
	transition: var(--nc-transition);
}

.nc-radio-label:has(input:checked) {
	border-color: var(--nc-bronze);
	background: rgba(178,138,87,0.08);
}

.nc-radio-label input { margin-top: 0.2rem; accent-color: var(--nc-bronze); }

.nc-form-help {
	font-size: 0.875rem;
	color: #666;
	margin: 0.5rem 0 0.75rem;
}

.nc-info-box {
	background: rgba(178,138,87,0.12);
	border-left: 3px solid var(--nc-bronze);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: 0.925rem;
}

.nc-info-box p { margin: 0; }

.nc-form-actions { margin-top: 2rem; }

.nc-form-footnote {
	font-size: 0.875rem;
	color: #666;
	margin: 1rem 0 0;
}

.nc-notice {
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-size: 0.925rem;
}

.nc-notice--success {
	background: #e8f5e9;
	border-left: 3px solid #2e7d32;
}

.nc-notice--error {
	background: #ffebee;
 border-left: 3px solid #c62828;
}

/* Realisation single — phase journey carousel */
.nc-realisation-single__intro {
	margin-bottom: 2rem;
}

.nc-realisation-journey {
	margin-top: 0.5rem;
}

.nc-realisation-journey__stage {
	position: relative;
	background: var(--nc-noir);
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.nc-realisation-journey__track {
	position: relative;
	aspect-ratio: 4 / 3;
}

.nc-realisation-journey__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.nc-realisation-journey__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.nc-realisation-journey__link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.nc-realisation-journey__link::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(21, 21, 21, 0.72) 0%, rgba(21, 21, 21, 0.08) 42%, transparent 100%);
	pointer-events: none;
	transition: opacity var(--nc-transition);
}

.nc-realisation-journey__link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.nc-realisation-journey__link:hover img,
.nc-realisation-journey__link:focus-visible img {
	transform: scale(1.02);
}

.nc-realisation-journey__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	padding: 1rem 1.15rem;
	pointer-events: none;
}

.nc-realisation-journey__caption-label {
	font-family: var(--nc-font-heading);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-white);
}

.nc-realisation-journey__caption-hint {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.65);
}

.nc-realisation-journey__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(21, 21, 21, 0.55);
	color: var(--nc-white);
	font-size: 1.15rem;
	line-height: 1;
	cursor: pointer;
	transition: background var(--nc-transition), border-color var(--nc-transition), color var(--nc-transition);
}

.nc-realisation-journey__arrow:hover,
.nc-realisation-journey__arrow:focus-visible {
	background: var(--nc-bronze);
	border-color: var(--nc-bronze);
	outline: none;
}

.nc-realisation-journey__arrow--prev { left: 0.75rem; }
.nc-realisation-journey__arrow--next { right: 0.75rem; }

.nc-realisation-journey__nav {
	display: flex;
	margin-top: 0;
	background: var(--nc-noir);
	border-top: 1px solid rgba(178, 138, 87, 0.35);
}

.nc-realisation-journey__step {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 4.5rem;
	padding: 0.85rem 0.5rem;
	border: none;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: color var(--nc-transition), background var(--nc-transition);
}

.nc-realisation-journey__step:last-child {
	border-right: none;
}

.nc-realisation-journey__step::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--nc-bronze);
	transform: scaleX(0);
	transition: transform var(--nc-transition);
}

.nc-realisation-journey__step.is-active,
.nc-realisation-journey__step:hover,
.nc-realisation-journey__step:focus-visible {
	color: var(--nc-white);
	background: rgba(178, 138, 87, 0.12);
	outline: none;
}

.nc-realisation-journey__step.is-active::after {
	transform: scaleX(1);
}

.nc-realisation-journey__step-index {
	font-family: var(--nc-font-heading);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--nc-bronze);
}

.nc-realisation-journey__step-label {
	font-family: var(--nc-font-heading);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
}

@media (min-width: 640px) {
	.nc-realisation-journey__track {
		aspect-ratio: 16 / 10;
	}

	.nc-realisation-journey__caption {
		padding: 1.35rem 1.5rem;
	}

	.nc-realisation-journey__caption-label {
		font-size: 0.9rem;
	}

	.nc-realisation-journey__step {
		min-height: 5rem;
		padding: 1rem;
	}

	.nc-realisation-journey__step-label {
		font-size: 0.72rem;
	}
}

/* Generic gallery (legacy / multi-image) */
.nc-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.nc-gallery__item {
	display: block;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.nc-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.nc-gallery__item:hover img { transform: scale(1.03); }

/* Lightbox */
.nc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,0.92);
	display: none;
	align-items: center;
 justify-content: center;
	padding: 1rem;
}

.nc-lightbox.is-open { display: flex; }

.nc-lightbox img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

.nc-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	background: var(--nc-bronze);
	border: none;
	color: var(--nc-white);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Footer */
.nc-footer {
	background: var(--nc-noir);
	color: rgba(255,255,255,0.75);
	padding: 3rem 0 0;
}

.nc-footer__grid {
	display: grid;
	gap: 2rem;
	padding-bottom: 2rem;
}

.nc-footer__brand img {
	height: 48px;
	width: auto;
	margin-bottom: 1rem;
}

.nc-footer__tagline {
	color: var(--nc-bronze);
	font-style: italic;
	font-family: var(--nc-font-display);
	font-size: 1.1rem;
}

.nc-footer__col h3 {
	font-family: var(--nc-font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nc-white);
	margin: 0 0 1rem;
}

.nc-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nc-footer__col li { margin-bottom: 0.5rem; }

.nc-footer__col a:hover { color: var(--nc-bronze); }

.nc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.25rem 0 1.5rem;
}

.nc-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.8rem;
	text-align: center;
}

.nc-footer__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
}

.nc-footer__legal,
.nc-footer__values,
.nc-footer__credit {
	margin: 0;
	line-height: 1.5;
}

.nc-footer__values {
	color: rgba(255, 255, 255, 0.55);
}

.nc-footer__credit {
	width: 100%;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
}

.nc-footer__credit a {
	color: rgba(255, 255, 255, 0.7);
}

.nc-footer__credit a:hover {
	color: var(--nc-bronze);
}

.nc-pagination {
	margin-top: 2rem;
	text-align: center;
}

.nc-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.nc-pagination a,
.nc-pagination span {
	padding: 0.5rem 0.85rem;
	background: var(--nc-white);
	border: 1px solid var(--nc-pierre);
}

.nc-pagination .current {
	background: var(--nc-bronze);
	color: var(--nc-white);
	border-color: var(--nc-bronze);
}

main { padding-top: 0; }

/* Small phones */
@media (max-width: 479px) {
	.nc-section-heading {
		flex-wrap: wrap;
	}

	.nc-section-heading__line {
		flex-basis: 100%;
		min-width: 0;
	}

	.nc-devis-form {
		padding: 1.25rem;
	}

	.nc-devis-progress__label {
		font-size: 0.55rem;
	}
}

/* Tablet */
@media (min-width: 640px) {
	.nc-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.nc-services__grid { grid-template-columns: repeat(2, 1fr); }
	.nc-realisations__grid { grid-template-columns: repeat(2, 1fr); }
	.nc-form-grid--2 { grid-template-columns: 1fr 1fr; }
	.nc-gallery { grid-template-columns: repeat(2, 1fr); }
	.nc-contact-grid { grid-template-columns: 1fr 1fr; }
	.nc-cta-devis__inner { grid-template-columns: 1fr auto; }
	.nc-values__inner { grid-template-columns: 1.2fr 1fr; align-items: center; }
	.nc-footer__grid { grid-template-columns: repeat(2, 1fr); }

	.nc-devis-form {
		padding: 2rem;
	}

	.nc-devis-progress__label {
		font-size: 0.65rem;
		white-space: normal;
	}

	.nc-devis-nav {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.nc-devis-nav .nc-btn {
		width: auto;
		min-width: 10rem;
	}

	.nc-devis-nav [data-devis-next],
	.nc-devis-nav [data-devis-submit] {
		margin-left: auto;
	}
}

/* Desktop */
@media (min-width: 992px) {
	:root { --nc-header-h: 80px; }

	.nc-nav-toggle { display: none; }

	.nc-nav-backdrop { display: none; }

	.nc-nav {
		position: static;
		transform: none;
		padding: 0;
		background: transparent;
		overflow: visible;
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		visibility: visible;
		pointer-events: auto;
		min-width: 0;
	}

	.nc-header__cta {
		flex-shrink: 0;
	}

	.nc-nav__panel {
		display: flex;
		align-items: center;
		min-height: 0;
	}

	.nc-nav__list {
		display: flex;
		align-items: center;
		gap: 0.25rem;
	}

	.nc-nav__list > li {
		border-bottom: none;
	}

	.nc-nav__list > li > a,
	.nc-nav__dropdown-toggle {
		display: block;
		padding: 0.5rem 0.85rem;
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	.nc-nav__list > li.is-active > a,
	.nc-nav__list > li.is-active > .nc-nav__dropdown-toggle {
		background: transparent;
		box-shadow: inset 0 -2px 0 var(--nc-bronze);
	}

	.nc-nav__dropdown-toggle::after {
		display: none;
	}

	.nc-nav__dropdown { position: relative; }

	.nc-nav__submenu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 240px;
		background: var(--nc-noir);
		padding: 0.5rem 0;
		margin: 0;
		border: 1px solid rgba(255,255,255,0.08);
		border-left: none;
		box-shadow: 0 8px 24px rgba(0,0,0,0.3);
	}

	.nc-nav__submenu a {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}

	.nc-nav__dropdown:hover .nc-nav__submenu,
	.nc-nav__dropdown:focus-within .nc-nav__submenu {
		display: block;
	}

	.nc-nav__cta-mobile { display: none; }
	.nc-header__cta { display: block; }

	.nc-usp-bar__inner {
		grid-template-columns: repeat(5, 1fr);
		gap: 1rem;
	}

	.nc-nav:not(.is-open) {
		visibility: visible;
		pointer-events: auto;
	}

	.nc-usp-bar__item {
		font-size: 0.78rem;
		gap: 0.75rem;
	}

	.nc-usp-bar__item:last-child {
		grid-column: auto;
	}

	.nc-services__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

	.nc-realisations__grid,
	.nc-realisations__grid--archive { grid-template-columns: repeat(3, 1fr); }

	.nc-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }

	.nc-footer__meta {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1.5rem;
		text-align: left;
	}

	.nc-footer__legal {
		flex-shrink: 0;
	}

	.nc-footer__values {
		text-align: right;
		white-space: nowrap;
	}

	.nc-gallery { grid-template-columns: repeat(3, 1fr); }

	.nc-section-heading__title {
		white-space: nowrap;
	}
}

@media (min-width: 640px) and (max-width: 991px) {
	.nc-hero__actions .nc-btn {
		width: auto;
		flex: 1 1 220px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nc-nav__list > li > a,
	.nc-nav__dropdown-toggle {
		padding: 0.5rem 0.55rem;
		font-size: 0.62rem;
		letter-spacing: 0.08em;
	}

	.nc-header__cta .nc-btn {
		padding: 0.75rem 1rem;
		font-size: 0.65rem;
	}
}

