/* =========================================================================
   Geneva Home Relocation — feuille de style publique
   1.  Variables et bases
   2.  Utilitaires
   3.  Boutons et liens
   4.  En-tête et navigation
   5.  Bandeau principal
   6.  Bandeau de services
   7.  Sections de contenu
   8.  Biens
   9.  À propos et questions fréquentes
   10. Contact et formulaires
   11. Pages intérieures
   12. Pied de page
   13. Animations
   14. Adaptations mobiles et impression
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Variables et bases
   ------------------------------------------------------------------------- */

:root {
	--gh-ink: #14181b;
	--gh-ink-soft: #4d5459;
	--gh-ink-muted: #767c81;
	--gh-slate: #41566b;
	--gh-slate-dark: #35485b;
	--gh-navy: #2b3d4e;
	--gh-paper: #f6f3ec;
	--gh-paper-alt: #efeade;
	--gh-surface: #fffdf9;
	--gh-line: #ded5c6;
	--gh-line-soft: #e8e1d4;
	--gh-gold: #b8934f;
	--gh-gold-soft: #cdb07a;
	--gh-gold-light: #e9c588;

	--gh-sans: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--gh-serif: 'Lora', Georgia, 'Times New Roman', serif;

	/* Bandes latérales : le site est posé sur une surface centrée, le fond de
	   la fenêtre reste visible de chaque côté. */
	--gh-outer: #e4ddcf;
	--gh-shell: 1400px;
	--gh-band: clamp(0px, 5vw, 150px);
	--gh-shell-w: min(var(--gh-shell), calc(100vw - 2 * var(--gh-band)));

	--gh-gutter: clamp(20px, 5.5vw, 86px);
	--gh-container: 1280px;
	/* Marge gauche alignée sur le contenu du conteneur, même quand celui-ci
	   est centré : indispensable pour les blocs qui débordent à droite. */
	--gh-align: max(var(--gh-gutter), calc((var(--gh-shell-w) - var(--gh-container)) / 2 + var(--gh-gutter)));
	--gh-radius: 12px;
	--gh-radius-lg: 22px;

	--gh-header-height: 126px;
	--gh-shadow: 0 18px 40px rgba(20, 24, 27, .07);
	--gh-shadow-soft: 0 10px 24px rgba(20, 24, 27, .05);
	--gh-transition: 240ms cubic-bezier(.22, .61, .36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gh-header-height) + 20px);
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--gh-outer);
	color: var(--gh-ink);
	font-family: var(--gh-sans);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

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

h1, h2, h3, h4 {
	margin: 0;
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1.06;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button,
input,
textarea,
select {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--gh-gold);
	outline-offset: 3px;
	border-radius: 3px;
}

::selection {
	background: var(--gh-gold-light);
	color: var(--gh-ink);
}

/* -------------------------------------------------------------------------
   2. Utilitaires
   ------------------------------------------------------------------------- */

/* Surface du site, centrée entre les deux bandes latérales.
   `overflow-x: clip` borne les débordements sans casser `position: sticky`. */
.gh-shell {
	max-width: var(--gh-shell-w);
	margin: 0 auto;
	background: var(--gh-paper);
	overflow-x: clip;
	box-shadow: 0 0 60px rgba(20, 24, 27, .07);
}

.gh-container {
	width: 100%;
	max-width: var(--gh-container);
	margin: 0 auto;
	padding: 0 var(--gh-gutter);
}

.gh-container--narrow {
	max-width: 860px;
}

.screen-reader-text,
.gh-form__trap {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.gh-skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 999;
	padding: 12px 20px;
	background: var(--gh-ink);
	color: #fff;
	border-radius: 0 0 8px 8px;
	transition: top var(--gh-transition);
}

.gh-skip-link:focus {
	top: 0;
}

.gh-eyebrow {
	margin: 0 0 18px;
	color: var(--gh-gold);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.gh-rule {
	display: block;
	width: 68px;
	height: 1px;
	margin-bottom: 26px;
	background: var(--gh-gold);
}

.gh-icon {
	flex: none;
}

.gh-empty {
	margin: 0;
	padding: 46px 0;
	max-width: 640px;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: 19px;
	line-height: 1.55;
}

/* -------------------------------------------------------------------------
   3. Boutons et liens
   ------------------------------------------------------------------------- */

.gh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border: 0;
	border-radius: 999px;
	background: var(--gh-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .01em;
	white-space: nowrap;
	cursor: pointer;
	transition: transform var(--gh-transition), background-color var(--gh-transition), box-shadow var(--gh-transition);
}

.gh-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--gh-shadow-soft);
}

.gh-button--slate {
	background: var(--gh-slate);
}

.gh-button--slate:hover {
	background: var(--gh-slate-dark);
}

.gh-button--dark:hover {
	background: #000;
}

.gh-button--small {
	padding: 12px 22px;
	font-size: 13.5px;
}

.gh-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gh-slate);
	font-size: 15px;
	white-space: nowrap;
	border-bottom: 1px solid transparent;
	transition: gap var(--gh-transition), border-color var(--gh-transition);
}

.gh-link-arrow:hover {
	gap: 16px;
	border-bottom-color: var(--gh-gold);
}

/* -------------------------------------------------------------------------
   4. En-tête et navigation
   ------------------------------------------------------------------------- */

/* En-tête statique : il défile avec la page et ne recouvre jamais le
   bandeau principal. */
.gh-header {
	position: relative;
	z-index: 60;
	background: var(--gh-paper);
}

.gh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: var(--gh-container);
	margin: 0 auto;
	min-height: var(--gh-header-height);
	padding: 14px var(--gh-gutter);
}

.gh-brand {
	display: block;
	flex: none;
}

.gh-brand__logo {
	width: auto;
	max-width: min(240px, 42vw);
	height: clamp(58px, 7vw, 100px);
	object-fit: contain;
	object-position: left center;
}

.gh-nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 46px);
}

.gh-menu {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
}

.gh-menu > li {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
}

.gh-menu > li + li::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gh-gold);
	opacity: .85;
}

.gh-menu a {
	position: relative;
	display: inline-block;
	padding: 6px 0;
	color: var(--gh-ink-soft);
	font-size: 14.5px;
	/* Trois langues dans l'en-tête : les libellés ne doivent jamais se couper. */
	white-space: nowrap;
	transition: color var(--gh-transition);
}

.gh-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: var(--gh-gold);
	transition: right var(--gh-transition);
}

.gh-menu a:hover,
.gh-menu .current-menu-item > a {
	color: var(--gh-ink);
}

.gh-menu a:hover::after,
.gh-menu .current-menu-item > a::after {
	right: 0;
}

.gh-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	padding: 10px 0;
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: 10px;
	box-shadow: var(--gh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--gh-transition), transform var(--gh-transition), visibility var(--gh-transition);
}

.gh-menu li:hover > .sub-menu,
.gh-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gh-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
}

.gh-nav__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.gh-language {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	letter-spacing: .1em;
}

.gh-language ul {
	display: flex;
	gap: 8px;
}

.gh-language__link {
	color: var(--gh-ink-muted);
	transition: color var(--gh-transition);
}

.gh-language__link + .gh-language__link::before {
	content: "/";
	margin-right: 8px;
	color: var(--gh-line);
}

.gh-language__link:hover {
	color: var(--gh-ink);
}

.gh-language__link.is-current {
	color: var(--gh-gold);
	font-weight: 500;
}

.gh-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.gh-burger__bar {
	display: block;
	width: 24px;
	height: 1.5px;
	margin: 0 auto;
	background: var(--gh-ink);
	transition: transform var(--gh-transition), opacity var(--gh-transition);
}

.gh-burger[aria-expanded="true"] .gh-burger__bar:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.gh-burger[aria-expanded="true"] .gh-burger__bar:nth-child(2) {
	opacity: 0;
}

.gh-burger[aria-expanded="true"] .gh-burger__bar:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* -------------------------------------------------------------------------
   5. Bandeau principal
   ------------------------------------------------------------------------- */

/* La photo file jusqu'au bord de la surface du site — donc elle s'arrête net
   sur la bande latérale, sans arrondi visible. Le texte reste aligné sur le
   conteneur du reste de la page. */
.gh-hero {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	align-items: center;
	gap: 0;
	padding: clamp(30px, 3.4vw, 56px) 0 clamp(46px, 5vw, 82px) var(--gh-align);
}

.gh-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding-right: clamp(12px, 1.6vw, 30px);
}

.gh-hero__title {
	margin: 0 0 30px;
	font-size: clamp(2.7rem, 5.6vw, 5.1rem);
	font-weight: 300;
	line-height: .97;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.gh-hero__text {
	max-width: 27ch;
	margin: 0 0 34px;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	line-height: 1.5;
}

.gh-hero__media {
	position: relative;
	min-width: 0;
}

/* La forme est découpée par le tracé SVG défini dans le gabarit : bord gauche
   penché, bord haut qui remonte et bord bas qui descend vers la droite, gros
   arrondis à gauche. Les angles de droite sortent du cadre : la photo s'arrête
   net sur la bande latérale. Aucun zoom n'est appliqué à l'image. */
.gh-hero__clip {
	position: absolute;
	width: 0;
	height: 0;
}

.gh-hero__shape {
	position: relative;
	height: clamp(360px, 52vw, 780px);
	margin-left: clamp(16px, 2.4vw, 48px);
	margin-right: calc(-1 * clamp(40px, 4vw, 80px));
	overflow: hidden;
	background: linear-gradient(140deg, #b9cbd8, #efdfc6 52%, #7d97a9);
	/* Repli si `clip-path: url()` n'est pas géré. */
	border-radius: clamp(60px, 9vw, 170px) 0 0 clamp(52px, 8vw, 150px);
	clip-path: url(#gh-hero-shape);
}

.gh-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Cadrage calé pour centrer le Jet d'eau dans la partie visible. */
	object-position: 94% 50%;
}

/* Légende en verre dépoli, posée sur la photo. */
.gh-hero__caption {
	position: absolute;
	left: clamp(18px, 2vw, 30px);
	bottom: clamp(18px, 2vw, 30px);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 9px 17px 9px 14px;
	max-width: calc(100% - 2 * clamp(18px, 2vw, 30px));
	background: rgba(20, 24, 27, .42);
	backdrop-filter: saturate(150%) blur(10px);
	-webkit-backdrop-filter: saturate(150%) blur(10px);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	color: #fffdf9;
	font-size: 13px;
	letter-spacing: .02em;
	line-height: 1.3;
}

.gh-hero__caption .gh-icon {
	color: var(--gh-gold-light);
}

/* -------------------------------------------------------------------------
   6. Bandeau de services
   ------------------------------------------------------------------------- */

.gh-services {
	max-width: var(--gh-container);
	margin: 0 auto;
	padding: clamp(28px, 3.5vw, 46px) var(--gh-gutter) clamp(34px, 4vw, 54px);
}

.gh-services__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--gh-line);
	padding-bottom: clamp(26px, 3vw, 40px);
}

.gh-services__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 0 clamp(8px, 1.5vw, 22px);
	text-align: center;
	border-right: 1px solid var(--gh-gold);
}

.gh-services__item:last-child {
	border-right: 0;
}

.gh-services__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--gh-paper-alt);
	border: 1px solid var(--gh-line-soft);
	color: var(--gh-slate);
	transition: background-color var(--gh-transition), color var(--gh-transition);
}

.gh-services__item:hover .gh-services__icon {
	background: var(--gh-slate);
	color: #fff;
}

.gh-services__label {
	color: var(--gh-slate);
	font-size: 14.5px;
	line-height: 1.35;
}

/* -------------------------------------------------------------------------
   7. Sections de contenu
   ------------------------------------------------------------------------- */

.gh-section {
	padding: clamp(60px, 8vw, 118px) 0;
}

.gh-section--paper {
	background: linear-gradient(118deg, var(--gh-paper-alt), var(--gh-paper) 62%);
}

.gh-section-heading {
	max-width: 900px;
	margin-bottom: clamp(34px, 4vw, 58px);
}

.gh-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.gh-section-title {
	margin: 0;
	font-size: clamp(2.1rem, 4.2vw, 3.9rem);
	font-weight: 300;
	line-height: 1.02;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.gh-section-intro {
	max-width: 62ch;
	margin: 24px 0 0;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Cartes numérotées « accompagnement » */

.gh-approach__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 28px);
}

.gh-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(26px, 2.6vw, 38px);
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: var(--gh-radius);
	transition: transform var(--gh-transition), box-shadow var(--gh-transition);
}

.gh-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gh-shadow);
}

.gh-card__number {
	margin: 0 0 20px;
	color: var(--gh-gold);
	font-size: 21px;
	font-weight: 300;
	letter-spacing: .04em;
}

.gh-card__title {
	margin: 0 0 14px;
	font-family: var(--gh-serif);
	font-size: clamp(1.3rem, 1.7vw, 1.6rem);
	font-weight: 500;
	letter-spacing: -.01em;
	line-height: 1.2;
}

.gh-card__text {
	margin: 0 0 30px;
	color: var(--gh-ink-soft);
	font-size: 15px;
	line-height: 1.6;
}

.gh-card__arrow {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-top: auto;
	border-radius: 50%;
	background: var(--gh-slate);
	color: #fff;
	transition: transform var(--gh-transition), background-color var(--gh-transition);
}

.gh-card__arrow:hover {
	background: var(--gh-ink);
	transform: translateX(4px);
}

/* Déroulé « comment ça marche » */

.gh-process__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 2.4vw, 34px);
	counter-reset: gh-step;
}

.gh-process__step {
	position: relative;
	padding-top: 34px;
	border-top: 1px solid var(--gh-line);
}

.gh-process__marker {
	position: absolute;
	top: -1px;
	left: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--gh-paper);
	border: 1px solid var(--gh-gold);
	color: var(--gh-gold);
	font-size: 13px;
	letter-spacing: .05em;
}

.gh-process__title {
	margin: 0 0 12px;
	font-family: var(--gh-serif);
	font-size: 1.28rem;
	font-weight: 500;
	line-height: 1.25;
}

.gh-process__text {
	margin: 0;
	color: var(--gh-ink-soft);
	font-size: 15px;
	line-height: 1.6;
}

/* -------------------------------------------------------------------------
   8. Biens
   ------------------------------------------------------------------------- */

.gh-properties__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.gh-properties__head .gh-section-heading {
	margin-bottom: clamp(24px, 3vw, 40px);
}

.gh-properties__head .gh-link-arrow {
	margin-bottom: clamp(28px, 3.4vw, 46px);
}

.gh-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(18px, 2.2vw, 30px);
}

.gh-property {
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: var(--gh-radius);
	overflow: hidden;
	transition: transform var(--gh-transition), box-shadow var(--gh-transition);
}

.gh-property:hover {
	transform: translateY(-4px);
	box-shadow: var(--gh-shadow);
}

.gh-property__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--gh-paper-alt);
	overflow: hidden;
}

.gh-property__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms cubic-bezier(.22, .61, .36, 1);
}

.gh-property:hover .gh-property__media img {
	transform: scale(1.05);
}

.gh-property__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--gh-gold);
}

.gh-property__status {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 14px;
	background: rgba(20, 24, 27, .82);
	color: #fff;
	border-radius: 999px;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.gh-property__body {
	padding: clamp(20px, 2vw, 28px);
}

.gh-property__title {
	margin: 0 0 10px;
	font-family: var(--gh-serif);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.22;
}

.gh-property__address {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 18px;
	color: var(--gh-ink-muted);
	font-size: 14px;
}

.gh-property__facts {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 16px;
	padding-top: 16px;
	border-top: 1px solid var(--gh-line-soft);
	color: var(--gh-ink-soft);
	font-size: 14px;
}

.gh-property__price {
	margin-left: auto;
	color: var(--gh-gold);
	font-size: 16px;
	white-space: nowrap;
}

.gh-property__price span {
	color: var(--gh-ink-muted);
	font-size: 12.5px;
}

.gh-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(26px, 3vw, 40px);
}

.gh-filters__item {
	padding: 9px 20px;
	border: 1px solid var(--gh-line);
	border-radius: 999px;
	color: var(--gh-ink-soft);
	font-size: 14px;
	transition: background-color var(--gh-transition), color var(--gh-transition), border-color var(--gh-transition);
}

.gh-filters__item:hover,
.gh-filters__item.is-current {
	background: var(--gh-ink);
	border-color: var(--gh-ink);
	color: #fff;
}

/* Fiche d'un bien */

.gh-property-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
	gap: clamp(26px, 3.5vw, 52px);
	align-items: start;
}

.gh-property-single__media {
	margin: 0 0 clamp(24px, 3vw, 40px);
	border-radius: var(--gh-radius-lg);
	overflow: hidden;
}

.gh-property-single__aside {
	position: sticky;
	top: calc(var(--gh-header-height) + 24px);
	padding: clamp(24px, 2.6vw, 34px);
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: var(--gh-radius);
}

.gh-property-single__facts {
	margin: 0 0 26px;
}

.gh-property-single__facts > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--gh-line-soft);
}

.gh-property-single__facts dt {
	color: var(--gh-ink-muted);
	font-size: 13.5px;
	letter-spacing: .04em;
}

.gh-property-single__facts dd {
	margin: 0;
	font-size: 15px;
	text-align: right;
}

.gh-property-single__aside .gh-button {
	width: 100%;
}

.gh-breadcrumb {
	display: flex;
	gap: 10px;
	margin-bottom: 26px;
	color: var(--gh-ink-muted);
	font-size: 13.5px;
}

.gh-breadcrumb a:hover {
	color: var(--gh-gold);
}

/* -------------------------------------------------------------------------
   9. À propos et questions fréquentes
   ------------------------------------------------------------------------- */

.gh-about__inner {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(28px, 5vw, 80px);
	align-items: start;
}

.gh-about__head .gh-section-heading {
	margin-bottom: 0;
}

.gh-about__text {
	max-width: 58ch;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: clamp(1.02rem, 1.3vw, 1.14rem);
	line-height: 1.72;
}

.gh-about__text p + p {
	margin-top: 1.1em;
}

.gh-about__body .gh-button {
	margin-top: clamp(28px, 3vw, 40px);
}

.gh-faq__inner {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(28px, 4vw, 70px);
	align-items: start;
}

.gh-faq__head {
	position: sticky;
	top: calc(var(--gh-header-height) + 30px);
}

.gh-faq__head .gh-section-heading {
	margin-bottom: 0;
}

.gh-faq__item {
	border-bottom: 1px solid var(--gh-line);
}

.gh-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
	cursor: pointer;
	font-size: 1.06rem;
	line-height: 1.4;
	list-style: none;
	transition: color var(--gh-transition);
}

.gh-faq__question::-webkit-details-marker {
	display: none;
}

.gh-faq__question:hover {
	color: var(--gh-gold);
}

.gh-faq__sign {
	display: grid;
	place-items: center;
	flex: none;
	width: 34px;
	height: 34px;
	border: 1px solid var(--gh-line);
	border-radius: 50%;
	color: var(--gh-gold);
	transition: transform var(--gh-transition), background-color var(--gh-transition);
}

.gh-faq__item[open] .gh-faq__sign {
	transform: rotate(45deg);
	background: var(--gh-paper-alt);
}

.gh-faq__answer {
	padding: 0 60px 26px 0;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: 1rem;
	line-height: 1.65;
}

/* -------------------------------------------------------------------------
   10. Contact et formulaires
   ------------------------------------------------------------------------- */

.gh-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(30px, 4vw, 66px);
	align-items: start;
}

.gh-contact__details {
	display: grid;
	gap: 18px;
	margin-top: clamp(26px, 3vw, 38px);
}

.gh-contact__details li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: var(--gh-ink-soft);
	font-size: 15.5px;
}

.gh-contact__details address {
	font-style: normal;
	line-height: 1.5;
}

.gh-contact__details a:hover {
	color: var(--gh-gold);
}

.gh-contact__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--gh-paper-alt);
	color: var(--gh-slate);
}

.gh-contact__form-wrap {
	padding: clamp(26px, 3vw, 44px);
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: var(--gh-radius-lg);
	box-shadow: var(--gh-shadow-soft);
}

.gh-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gh-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 18px;
}

.gh-field label {
	color: var(--gh-ink-soft);
	font-size: 13.5px;
	letter-spacing: .04em;
}

.gh-field input[type="text"],
.gh-field input[type="email"],
.gh-field input[type="tel"],
.gh-field textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-radius: 8px;
	font-size: 15px;
	transition: border-color var(--gh-transition), background-color var(--gh-transition);
}

.gh-field input:focus,
.gh-field textarea:focus {
	background: #fff;
	border-color: var(--gh-gold);
	outline: none;
}

.gh-field [aria-invalid="true"] {
	border-color: #b1503f;
}

.gh-field textarea {
	resize: vertical;
	min-height: 130px;
}

.gh-field__error {
	color: #b1503f;
	font-size: 13px;
}

.gh-field--consent label {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 13.5px;
	line-height: 1.45;
	cursor: pointer;
}

.gh-field--consent input {
	margin-top: 3px;
	accent-color: var(--gh-slate);
}

.gh-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	padding: 16px 20px;
	border-radius: 10px;
	font-size: 15px;
}

.gh-notice--success {
	background: #e8f0e6;
	border: 1px solid #bcd3b5;
	color: #37582f;
}

.gh-notice--error {
	background: #f7e7e3;
	border: 1px solid #e0b6ac;
	color: #8d3e30;
}

/* -------------------------------------------------------------------------
   11. Pages intérieures
   ------------------------------------------------------------------------- */

.gh-page {
	padding: clamp(46px, 6vw, 92px) 0 clamp(60px, 8vw, 110px);
}

.gh-page--center {
	text-align: center;
}

.gh-page--center .gh-rule {
	margin-inline: auto;
}

.gh-page__header {
	margin-bottom: clamp(30px, 4vw, 52px);
}

.gh-page__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 300;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.gh-page__intro {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 60ch;
	margin: 20px 0 0;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: 1.08rem;
	line-height: 1.6;
}

.gh-page__media {
	margin: 0 0 clamp(26px, 3vw, 44px);
	border-radius: var(--gh-radius-lg);
	overflow: hidden;
}

.gh-page__actions {
	margin-top: 30px;
}

.gh-prose {
	max-width: 72ch;
	color: var(--gh-ink-soft);
	font-family: var(--gh-serif);
	font-size: 1.08rem;
	line-height: 1.72;
}

.gh-prose h2,
.gh-prose h3,
.gh-prose h4 {
	margin: 1.8em 0 .6em;
	color: var(--gh-ink);
	font-family: var(--gh-sans);
	font-weight: 400;
}

.gh-prose h2 {
	font-size: 1.9rem;
}

.gh-prose h3 {
	font-size: 1.45rem;
}

.gh-prose a {
	color: var(--gh-gold);
	border-bottom: 1px solid currentColor;
}

.gh-prose ul,
.gh-prose ol {
	margin: 0 0 1.2em;
	padding-left: 1.3em;
	list-style: disc;
}

.gh-prose ol {
	list-style: decimal;
}

.gh-prose li {
	margin-bottom: .5em;
}

.gh-prose blockquote {
	margin: 1.6em 0;
	padding-left: 24px;
	border-left: 2px solid var(--gh-gold);
	font-style: italic;
}

.gh-prose img {
	border-radius: var(--gh-radius);
}

.gh-post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(18px, 2.2vw, 30px);
}

.gh-post-card {
	display: flex;
	flex-direction: column;
	background: var(--gh-surface);
	border: 1px solid var(--gh-line-soft);
	border-radius: var(--gh-radius);
	overflow: hidden;
}

.gh-post-card__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.gh-post-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(20px, 2vw, 28px);
}

.gh-post-card__date {
	margin: 0;
	color: var(--gh-gold);
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.gh-post-card__title {
	margin: 0;
	font-family: var(--gh-serif);
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.25;
}

.gh-post-card__excerpt {
	color: var(--gh-ink-soft);
	font-size: 15px;
}

.gh-post-card__excerpt p {
	margin: 0;
}

.gh-search {
	display: flex;
	gap: 10px;
	max-width: 520px;
}

.gh-search__field {
	flex: 1;
	min-width: 0;
	padding: 13px 16px;
	background: var(--gh-surface);
	border: 1px solid var(--gh-line);
	border-radius: 999px;
	font-size: 15px;
}

.gh-search__field:focus {
	border-color: var(--gh-gold);
	outline: none;
}

.gh-comments {
	max-width: 72ch;
	margin-top: clamp(40px, 5vw, 70px);
	padding-top: clamp(28px, 3vw, 44px);
	border-top: 1px solid var(--gh-line);
}

.gh-comments__title {
	margin: 0 0 26px;
	font-size: 1.5rem;
	font-weight: 400;
}

.gh-comments__list,
.gh-comments__list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-comments__list .children {
	margin-left: clamp(16px, 3vw, 42px);
}

.gh-comments__list .comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--gh-line-soft);
	font-size: 15px;
}

.gh-comments__list .comment-author img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	border-radius: 50%;
}

.gh-comments__list .comment-meta {
	margin-bottom: 10px;
	color: var(--gh-ink-muted);
	font-size: 13px;
}

.gh-comments .comment-form p {
	margin-bottom: 16px;
}

.gh-comments .comment-form input[type="text"],
.gh-comments .comment-form input[type="email"],
.gh-comments .comment-form input[type="url"],
.gh-comments .comment-form textarea {
	width: 100%;
	padding: 13px 16px;
	background: var(--gh-surface);
	border: 1px solid var(--gh-line);
	border-radius: 8px;
	font-size: 15px;
}

.gh-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(36px, 4vw, 56px);
	padding-top: 26px;
	border-top: 1px solid var(--gh-line);
	font-size: 14.5px;
}

.pagination,
.gh-page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: clamp(36px, 4vw, 56px);
}

.pagination .page-numbers,
.gh-page-links a {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--gh-line);
	border-radius: 999px;
	font-size: 14px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--gh-ink);
	border-color: var(--gh-ink);
	color: #fff;
}

.pagination .screen-reader-text {
	display: none;
}

/* -------------------------------------------------------------------------
   12. Pied de page
   ------------------------------------------------------------------------- */

.gh-footer {
	background: var(--gh-navy);
	color: rgba(255, 253, 249, .82);
}

.gh-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(180px, 1fr));
	gap: clamp(28px, 4vw, 60px);
	max-width: var(--gh-container);
	margin: 0 auto;
	padding: clamp(52px, 6vw, 88px) var(--gh-gutter);
}

.gh-footer .gh-brand__logo {
	height: clamp(66px, 7vw, 88px);
}

.gh-footer__tagline {
	max-width: 34ch;
	margin: 24px 0;
	font-family: var(--gh-serif);
	font-size: 15.5px;
	line-height: 1.6;
}

.gh-footer .gh-language__link {
	color: rgba(255, 253, 249, .66);
}

.gh-footer .gh-language__link.is-current,
.gh-footer .gh-language__link:hover {
	color: var(--gh-gold-light);
}

.gh-footer .gh-language__link + .gh-language__link::before {
	color: rgba(255, 253, 249, .3);
}

.gh-footer__heading {
	margin: 0 0 20px;
	color: var(--gh-gold-light);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.gh-footer__list {
	display: grid;
	gap: 13px;
	font-size: 14.5px;
}

.gh-footer__list li {
	display: flex;
	align-items: center;
	gap: 11px;
}

.gh-footer__list a:hover {
	color: var(--gh-gold-light);
}

.gh-footer__list--links li {
	display: block;
}

.gh-footer__address {
	margin: 0 0 24px;
	font-style: normal;
	font-size: 14.5px;
	line-height: 1.6;
}

.gh-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	max-width: var(--gh-container);
	margin: 0 auto;
	padding: 22px var(--gh-gutter);
	border-top: 1px solid rgba(255, 253, 249, .13);
	color: rgba(255, 253, 249, .55);
	font-size: 13px;
}

.gh-footer__bottom p {
	margin: 0;
}

/* -------------------------------------------------------------------------
   13. Animations
   ------------------------------------------------------------------------- */

.gh-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 640ms cubic-bezier(.22, .61, .36, 1), transform 640ms cubic-bezier(.22, .61, .36, 1);
}

.gh-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* -------------------------------------------------------------------------
   14. Adaptations mobiles et impression
   ------------------------------------------------------------------------- */

/* En-tête resserré : la navigation reste sur une ligne dans les trois langues. */
@media (max-width: 1420px) {
	.gh-nav {
		gap: clamp(14px, 2vw, 26px);
	}

	.gh-menu,
	.gh-menu > li {
		gap: clamp(10px, 1.4vw, 18px);
	}

	.gh-menu a {
		font-size: 13.5px;
	}

	.gh-header .gh-button--small {
		padding: 11px 17px;
		font-size: 12.5px;
	}
}

@media (max-width: 1180px) {
	.gh-hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.gh-process__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 28px;
	}
}

@media (max-width: 1120px) {
	:root {
		--gh-header-height: 96px;
		/* Pas de bandes latérales sur les petits écrans. */
		--gh-band: 0px;
	}

	.gh-burger {
		display: flex;
		order: 3;
	}

	.gh-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		max-height: calc(100vh - var(--gh-header-height));
		overflow-y: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 26px;
		padding: 30px var(--gh-gutter) 40px;
		background: var(--gh-paper);
		border-top: 1px solid var(--gh-line-soft);
		box-shadow: 0 24px 40px rgba(20, 24, 27, .1);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--gh-transition), transform var(--gh-transition), visibility var(--gh-transition);
	}

	.gh-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.gh-nav__menu {
		width: 100%;
	}

	.gh-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		width: 100%;
	}

	.gh-menu > li {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		border-bottom: 1px solid var(--gh-line-soft);
	}

	.gh-menu > li + li::before {
		display: none;
	}

	.gh-menu a {
		display: block;
		width: 100%;
		padding: 15px 0;
		font-size: 17px;
	}

	.gh-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0 0 10px 16px;
		border: 0;
		background: none;
		box-shadow: none;
	}

	.gh-nav__actions {
		width: 100%;
		justify-content: space-between;
	}

	.gh-hero {
		grid-template-columns: 1fr;
		padding: 30px 0 24px var(--gh-gutter);
		gap: 40px;
	}

	.gh-hero__copy {
		max-width: none;
		padding-right: var(--gh-gutter);
	}

	.gh-hero__text {
		max-width: 40ch;
	}

	.gh-hero__shape {
		height: clamp(300px, 58vw, 460px);
		margin-left: 0;
		margin-right: -24px;
		border-radius: 72px 0 0 62px;
	}

	.gh-approach__grid {
		grid-template-columns: 1fr;
	}

	.gh-about__inner,
	.gh-faq__inner,
	.gh-contact__inner {
		grid-template-columns: 1fr;
	}

	.gh-faq__head,
	.gh-property-single__aside {
		position: static;
	}

	.gh-property-single__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.gh-services__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 0;
	}

	.gh-services__item:nth-child(2n) {
		border-right: 0;
	}

	.gh-hero__title {
		font-size: clamp(2.3rem, 11vw, 3.2rem);
	}

	.gh-process__list {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.gh-form__row {
		grid-template-columns: 1fr;
	}

	.gh-faq__answer {
		padding-right: 0;
	}

	.gh-footer__inner {
		grid-template-columns: 1fr;
	}

	.gh-properties__head .gh-link-arrow {
		margin-bottom: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}

	.gh-reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.gh-header,
	.gh-footer,
	.gh-burger,
	.gh-contact__form-wrap {
		display: none;
	}

	body {
		background: #fff;
		color: #000;
	}
}
