/* ==========================================================================
   Conciergerie Normandie Prestige — CSS unifié
   ========================================================================== */

:root {
  --bg: #F6F0E6;
  --paper: #FBF7F0;
  --ink: #1E1A14;
  --muted: rgba(30,26,20,.68);
  --muted2: rgba(30,26,20,.52);
  --btn: #073937;
  --line: rgba(30,26,20,.10);
  --line2: rgba(30,26,20,.06);
  --accent: #B79A6A;
  --accent2: #D3BE97;
  --shadow: 0 22px 70px rgba(30,26,20,.10);
  --shadow2: 0 16px 40px rgba(30,26,20,.08);
  --radius: 22px;
  --radius2: 34px;
  --max: 1160px;
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --header-h: 70px;
}

* { box-sizing: border-box; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1100px 640px at 18% 10%, rgba(183,154,106,.10), transparent 60%),
    radial-gradient(900px 620px at 88% 18%, rgba(211,190,151,.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #F2E8D8 55%, #EFE4D1 100%);
  letter-spacing: .02em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--max), 100% - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: multiply;
}

/* ==========================================================================
   HEADER + NAV (responsive avec menu hamburger)
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  z-index: 101;
  background: #FBF7F0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line2);
}

/* Barre header pleine largeur, contenu aligné sur le .container du site */
header .nav {
  width: 100%;
  background: #FBF7F0;
  position: relative;
  z-index: 102;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* .nav-inner a la classe .container → même largeur et padding que le reste du site */

.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: .03em;
  line-height: 1.1;
}
.brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted2);
  margin-top: 2px;
}

/* Bouton hamburger (visible sur tablette / mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  gap: 5px;
}
.nav-toggle:hover { background: rgba(183,154,106,.12); border-color: rgba(183,154,106,.35); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu desktop */
nav.menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.875rem;
}
nav.menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
nav.menu a:hover {
  background: rgba(183,154,106,.12);
  color: var(--ink);
}
nav.menu a.active {
  background: rgba(183,154,106,.15);
  color: var(--btn);
  font-weight: 500;
}

.actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.nav-inner > .actions { display: flex; }

/* Overlay : filtre noir transparent sur le contenu uniquement (sous le header et le menu) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 10, 5, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Menu mobile (drawer) : au-dessus de l’overlay, fond plein, jamais assombri */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 100;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line2);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  box-shadow: 0 16px 40px rgba(30, 26, 20, 0.12);
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-drawer .menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav-drawer .menu a {
  display: block;
  padding: 1rem 1rem;
  border-radius: 14px;
  font-size: 1rem;
}
.nav-drawer .actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line2);
  flex-direction: column;
  align-items: stretch;
}
.nav-drawer .actions .btn { justify-content: center; }

@media (max-width: 1200px) {
  .nav-toggle { display: flex; }
  .nav-inner .menu { display: none; }
  .nav-inner > .actions { display: none; }
  .nav-overlay,
  .nav-drawer { display: block; }
}

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.125rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--btn);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--paper);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  border-color: rgba(183,154,106,.35);
}
.btn.primary {
  border-color: rgba(183,154,106,.55);
  background: linear-gradient(180deg, rgba(183,154,106,.18), rgba(183,154,106,.06));
  color: var(--btn);
}

/* ==========================================================================
   HERO + SECTIONS GLOBALES
   ========================================================================== */
.hero {
  padding: 5rem 0 3.5rem;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-head {
  margin: 0 auto;
  text-align: center;
}
.hero-head.hero-head--wide { max-width: 62ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: .02em;
  color: var(--btn);
}

.lead {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 70ch;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}
.cta-row--start { justify-content: flex-start; }
.cta-row--end { justify-content: flex-end; }
.cta-row--mt { margin-top: 1.125rem; }

.micro {
  margin-top: 1rem;
  color: var(--muted2);
  font-size: 0.8125rem;
  line-height: 1.6;
}

section { padding: 3rem 0; }
.section-head {
  max-width: 80ch;
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
.section-head--tight { margin-bottom: 1.75rem; }

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin: 0;
  line-height: 1.1;
}
.sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Hero media (bande visuelle) */
.hero-media {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius2) + 10px);
  padding: 12px;
  background: rgba(251,247,240,.6);
  border: 1px solid rgba(30,26,20,.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media-inner {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(30,26,20,.14);
  background: rgba(251,247,240,.78);
}
.hero-media .img {
  height: 420px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.9), rgba(255,255,255,.32)),
    radial-gradient(900px 360px at 30% 25%, rgba(211,190,151,.34), transparent 60%),
    radial-gradient(860px 320px at 80% 80%, rgba(183,154,106,.18), transparent 60%);
  background-image: url("https://primary.jwwb.nl/pexels/29/29870781.jpeg?enable-io=true&enable=upscale&crop=1920%2C960%2Cx0%2Cy960%2Csafe&width=1020&height=510");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(30,26,20,.08);
  background: rgba(255,255,255,.4);
}
.hero-stat {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(30,26,20,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .n {
  font-family: var(--serif);
  font-size: 1.875rem;
  color: var(--accent);
  margin: 0 0 4px;
  letter-spacing: .02em;
}
.hero-stat .t {
  margin: 0;
  color: var(--muted2);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ==========================================================================
   CARDS SERVICES (accueil)
   ========================================================================== */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.card {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.78);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(183,154,106,.35);
}
.card .top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.cap {
  font-size: 0.75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
}
.card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.card p {
  margin: 0.875rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted2);
  font-size: 0.875rem;
  line-height: 1.65;
}
.bullets li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.tick {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(183,154,106,.45);
  background: rgba(183,154,106,.08);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ==========================================================================
   LOGEMENTS (teaser props)
   ========================================================================== */
.props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.prop {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.75);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.prop:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(183,154,106,.35);
}
.thumb {
  height: 210px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.85), rgba(255,255,255,.35)),
    radial-gradient(800px 300px at 30% 25%, rgba(211,190,151,.32), transparent 60%),
    radial-gradient(740px 260px at 80% 80%, rgba(183,154,106,.18), transparent 60%);
  background-size: cover;
  background-position: center;
}
.prop .body { padding: 1.25rem; }
.prop h3 { margin: 0; font-size: 1rem; font-weight: 600; }
.prop p { margin: 0.5rem 0 0; color: var(--muted); line-height: 1.65; font-size: 0.875rem; }
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.875rem; }
.tag {
  border: 1px solid rgba(183,154,106,.35);
  color: rgba(132,102,62,1);
  padding: 0.4rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* ==========================================================================
   AVIS (quotes)
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.quote {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.75);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  padding: 1.5rem;
}
.quote p { margin: 0 0 0.875rem; color: var(--muted); line-height: 1.7; font-size: 0.875rem; }
.quote .who {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted2);
  font-size: 0.8rem;
}
.stars { color: var(--accent); letter-spacing: 2px; }

/* ==========================================================================
   CTA BANDE
   ========================================================================== */
.cta {
  border-radius: 36px;
  border: 1px solid rgba(183,154,106,.35);
  background: rgba(251,247,240,.82);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin: 0 0 0.5rem;
  line-height: 1.05;
}
.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
  font-size: 0.9375rem;
}

.section-cta { padding-top: 0; }
.hero-page { padding: 4rem 0 2.5rem; }
.story--mt { margin-top: 1.125rem; }
.service-meta--mt { margin-top: 0.875rem; }
.tags--mt { margin-top: 1rem; }

/* ==========================================================================
   ABOUT (section présentation home)
   ========================================================================== */
#presentation { padding: 4rem 0; }
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  align-items: center;
}
.about-media {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.about-photo {
  height: 520px;
  background-size: cover;
  background-position: center;
  filter: saturate(.96);
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.about-content { padding: 0.25rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  background: rgba(251,247,240,.55);
}
.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.125rem;
  align-items: start;
}
footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(30,26,20,.75);
}
footer a,
footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
footer .links { display: grid; gap: 0.5rem; }
footer .brand { min-width: auto; }
footer > .container.foot > div:first-child p { margin-top: 0.875rem; }
footer .brand img { width: 50px; height: 50px; }
.bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted2);
  font-size: 0.8rem;
}

/* ==========================================================================
   PAGE SERVICES
   ========================================================================== */
.page-services .subnav {
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 15;
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(251,247,240,.72);
  backdrop-filter: blur(10px);
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-services .subnav a {
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.875rem;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.page-services .subnav a:hover {
  background: rgba(183,154,106,.1);
  color: var(--ink);
  border-color: rgba(183,154,106,.2);
}

.svc-intro { padding-top: 0; padding-bottom: 4rem; }
.intro-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(30,26,20,.08);
  padding: 2.5rem;
}
.intro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(4px);
  transform: scale(1.08);
  z-index: 0;
}
.intro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246,240,230,.82), rgba(246,240,230,.72));
  z-index: 1;
}
.intro-hero > * { position: relative; z-index: 2; }
.intro-text h2 { margin: 0.5rem 0 0.75rem; }
.intro-badges {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.875rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.badge-item {
  padding: 0.75rem 0.875rem;
  border-radius: 18px;
  border: 1px solid rgba(30,26,20,.08);
  background: rgba(251,247,240,.76);
}
.badge-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 0.375rem;
  letter-spacing: .02em;
}
.badge-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}
.intro-caption {
  margin-top: 1rem;
  color: rgba(30,26,20,.6);
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-rows { display: grid; gap: 1.125rem; }
.service-row {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.78);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 340px;
}
.service-row.alt { grid-template-columns: .95fr 1.05fr; }
.service-content {
  padding: 2.25rem;
  display: grid;
  align-content: start;
  gap: 0.5rem;
}
.service-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.service-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.925rem;
  max-width: 75ch;
}
.service-media {
  position: relative;
  background:
    linear-gradient(120deg, rgba(255,255,255,.85), rgba(255,255,255,.2)),
    radial-gradient(900px 360px at 30% 25%, rgba(211,190,151,.3), transparent 60%),
    radial-gradient(860px 320px at 80% 80%, rgba(183,154,106,.18), transparent 60%);
  border-left: 1px solid rgba(30,26,20,.08);
  min-height: 340px;
  background-size: cover;
  background-position: center;
}
.service-row.alt .service-media {
  order: -1;
  border-left: none;
  border-right: 1px solid rgba(30,26,20,.08);
}
.service-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.page-services .owner-sec { padding-top: 0; }
.page-services .owner-slab {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.72);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  overflow: hidden;
}
.page-services .owner-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(30,26,20,.08);
  background: rgba(255,255,255,.35);
}
.page-services .owner-metric {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(30,26,20,.08);
}
.page-services .owner-metric:last-child { border-right: none; }
.page-services .owner-metric .n {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 1.625rem;
  margin: 0 0 4px;
}
.page-services .owner-metric .t {
  margin: 0;
  color: var(--muted2);
  font-size: 0.8125rem;
  line-height: 1.6;
}
.page-services .owner-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
}
.page-services .owner-main { padding: 2rem; }
.page-services .owner-title {
  margin: 0.5rem 0;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.page-services .owner-main .service-text { margin: 0 0 1rem; }
.page-services .owner-side {
  padding: 1.75rem 1.5rem;
  border-left: 1px solid rgba(30,26,20,.08);
  background: rgba(255,255,255,.32);
}
.page-services .side-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.page-services .side-head h4 {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(30,26,20,.75);
}
.page-services .side-head span {
  color: rgba(30,26,20,.55);
  font-size: 0.8rem;
}
.page-services .side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.page-services .side-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.page-services .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(183,154,106,.55);
  background: rgba(183,154,106,.1);
  margin-top: 7px;
  flex: 0 0 auto;
}

.page-services .inv-sec { padding-top: 0; }
.page-services .case {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(251,247,240,.72);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}
.page-services .case-media {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border-right: 1px solid rgba(30,26,20,.08);
  position: relative;
}
.page-services .case-body { padding: 2rem; }
.page-services .case-title {
  margin: 0.5rem 0;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.page-services .case-body .service-text { margin: 0; }
.page-services .case-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}
.page-services .point {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(30,26,20,.08);
}
.page-services .point:first-child { border-top: none; padding-top: 0; }
.page-services .point b {
  font-size: 0.75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(30,26,20,.7);
}
.page-services .point span {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.story { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
.story-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
.step {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(251,247,240,.78);
  box-shadow: 0 18px 50px rgba(30,26,20,.06);
  padding: 1.25rem;
}
.step .align {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.step .n {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(183,154,106,.45);
  background: rgba(183,154,106,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: rgba(132,102,62,1);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* ==========================================================================
   PAGE CONTACT
   ========================================================================== */
.page-contact { padding-bottom: 5rem; }
.page-contact .contact-hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42vh;
}
.page-contact .contact-hero .wrap { max-width: 920px; margin: 0 auto; }
.page-contact .contact-hero .micro { margin-top: 0.875rem; }
.page-contact .contact-hero .meta {
  margin-top: 0.875rem;
  color: rgba(30,26,20,.55);
  font-size: 0.8125rem;
  line-height: 1.7;
}
.page-contact .contact-hero .meta b { color: rgba(30,26,20,.78); }
.page-contact .form-wrap {
  width: min(820px, 100%);
  margin: 0 auto;
  padding-top: 0.25rem;
}
.page-contact .contact-alert {
  padding: 1rem 1.125rem;
  border-radius: 18px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.page-contact .contact-alert--success {
  background: rgba(7, 57, 55, 0.08);
  border: 1px solid rgba(7, 57, 55, 0.22);
  color: var(--btn);
}
.page-contact .contact-alert--error {
  background: rgba(140, 40, 40, 0.08);
  border: 1px solid rgba(140, 40, 40, 0.22);
  color: #5c2020;
}
.page-contact .contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.page-contact form { margin-top: 1.25rem; display: grid; gap: 0.875rem; position: relative; }
.page-contact .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.page-contact .field { position: relative; }
.page-contact .input,
.page-contact .textarea,
.page-contact .select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  padding: 1rem 0.875rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.page-contact .textarea {
  min-height: 170px;
  resize: vertical;
  padding-top: 1.125rem;
}
.page-contact .select { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.page-contact .input:focus,
.page-contact .textarea:focus,
.page-contact .select:focus {
  border-color: rgba(183,154,106,.6);
  box-shadow: 0 0 0 5px rgba(183,154,106,.12);
  background: rgba(255,255,255,.72);
}
.page-contact .label {
  position: absolute;
  left: 0.875rem;
  top: 0.8125rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(246,240,230,.92);
  color: rgba(30,26,20,.62);
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  transform-origin: left top;
  transition: transform .18s, color .18s, border .18s, background .18s;
}
.page-contact .input:focus + .label,
.page-contact .textarea:focus + .label,
.page-contact .input:not(:placeholder-shown) + .label,
.page-contact .textarea:not(:placeholder-shown) + .label {
  transform: translateY(-1.125rem) scale(.92);
  color: rgba(132,102,62,1);
  border: 1px solid rgba(183,154,106,.25);
  background: rgba(251,247,240,.95);
}
.page-contact .label-top {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(30,26,20,.62);
}
.page-contact .actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.page-contact #contact-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}
.page-contact .contact-submit-loading { font-style: normal; }
.page-contact .contact-line {
  margin-top: 1.125rem;
  text-align: center;
  color: rgba(30,26,20,.55);
  font-size: 0.8125rem;
  line-height: 1.8;
}
.page-contact .contact-line a {
  color: var(--ink);
  border-bottom: 1px solid rgba(183,154,106,.35);
  padding-bottom: 2px;
  text-decoration: none;
}
.page-contact .fineprint {
  text-align: center;
  color: rgba(30,26,20,.52);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-top: 0.25rem;
}

.page-contact .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(30,26,20,.62);
  line-height: 1.6;
}
.page-contact .consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
}

/* ==========================================================================
   PAGE LOGEMENTS (inputs recherche)
   ========================================================================== */
.sh-input {
  appearance: none;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  padding: 0.75rem 0.875rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.sh-input:focus {
  border-color: rgba(183,154,106,.55);
  box-shadow: 0 0 0 4px rgba(183,154,106,.12);
}
#logements-search > div {
  display: grid;
  gap: 0.5rem;
}

/* Section logements iframe */
.page-logements .hero { padding: 4rem 0 2.5rem; }
.page-logements .booking-section { padding: 0 0 5rem; }

.booking-iframe-wrap {
  position: relative;
  min-height: 800px;
}
#bookingengine { display: block; width: 100%; height: 3879px; border: 0; border-radius: 22px; }

.booking-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--paper);
  z-index: 2;
  transition: opacity .35s ease, visibility .35s ease;
}
.booking-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.booking-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--line2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: booking-spin 0.9s linear infinite;
}
.booking-loader__text {
  font-size: 0.9375rem;
  color: var(--muted);
}
@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE GLOBAL
   ========================================================================== */
@media (max-width: 1200px) {
  .container { width: min(var(--max), 100% - 2.5rem); padding: 0 1.25rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero-media .img { height: 360px; }
  .grid3,
  .props,
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .foot { grid-template-columns: 1fr 1fr; }
  .cta { padding: 2rem; }
}

@media (max-width: 1200px) {
  :root { --header-h: 64px; }
  .container { width: min(100%, 100% - 3rem); padding: 0 1.5rem; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero-media .img { height: 320px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat {
    border-right: none;
    border-top: 1px solid rgba(30,26,20,.08);
  }
  .hero-stat:first-child { border-top: none; }
  .grid3,
  .props,
  .quotes { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; align-items: stretch; text-align: center; }
  .cta .cta-row { justify-content: center; }
  .about { grid-template-columns: 1fr; }
  .about-photo { height: 360px; }
  .about-content { padding: 0; }
  #presentation { padding: 3rem 0; }
  .page-services .subnav { top: 72px; }
  .intro-hero { padding: 1.5rem; }
  .intro-badges { grid-template-columns: 1fr; }
  .service-row,
  .service-row.alt {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-row.alt .service-media { order: 0; border-right: none; border-bottom: 1px solid rgba(30,26,20,.08); }
  .service-media {
    min-height: 260px;
    border-left: none;
    border-bottom: 1px solid rgba(30,26,20,.08);
  }
  .service-content { padding: 1.75rem; }
  .page-services .owner-bar { grid-template-columns: 1fr; }
  .page-services .owner-metric {
    border-right: none;
    border-top: 1px solid rgba(30,26,20,.08);
  }
  .page-services .owner-metric:first-child { border-top: none; }
  .page-services .owner-grid { grid-template-columns: 1fr; }
  .page-services .owner-side {
    border-left: none;
    border-top: 1px solid rgba(30,26,20,.08);
  }
  .page-services .owner-main,
  .page-services .owner-side { padding: 1.5rem; }
  .page-services .case { grid-template-columns: 1fr; }
  .page-services .case-media {
    border-right: none;
    border-bottom: 1px solid rgba(30,26,20,.08);
    min-height: 280px;
  }
  .page-services .case-body { padding: 1.5rem; }
  .story-steps { grid-template-columns: repeat(2, 1fr); }
  .page-services .point { grid-template-columns: 1fr; }
  #logements-search > div { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { width: 100%; padding: 0 1.5rem; max-width: 100%; }
  .nav-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; min-height: var(--header-h); gap: 1rem; }
  .brand strong { font-size: 1.35rem; }
  .brand span { font-size: 0.6875rem; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding: 3rem 0 2rem; }
  .hero-head { padding: 0 0.5rem; }
  h1 { font-size: clamp(3.1rem, 7vw, 4rem); }
  .hero-media .img { height: 260px; }
  section { padding: 2.5rem 0; }
  .section-head { margin-bottom: 1.5rem; }
  .cta { padding: 1.5rem; border-radius: 24px; }
  .cta h3 { font-size: 1.5rem; }
  .foot { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .bottom { flex-direction: column; align-items: center; text-align: center; }
  .about-photo { height: 280px; }
  #presentation { padding: 2.5rem 0; }
  .page-services .subnav { position: relative; top: 0; margin-top: 0; }
  .svc-intro { padding-bottom: 2.5rem; }
  .intro-hero { padding: 1.25rem; }
  .service-content { padding: 1.25rem; }
  .page-services .owner-main,
  .page-services .owner-side,
  .page-services .case-body { padding: 1.25rem; }
  .story-steps { grid-template-columns: repeat(2, 1fr); }
  .step .align { flex-wrap: wrap; }
  .step .n { margin-bottom: 0; }
  .page-contact .contact-hero {
    padding: 3rem 0 2rem;
    min-height: auto;
  }
  .page-contact .row { grid-template-columns: 1fr; }
  #logements-search > div { grid-template-columns: 1fr; }
  .page-logements .hero { padding: 3rem 0 2rem; }
  .page-logements .booking-section { padding: 0 0 3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .nav-inner { gap: 0.5rem; }
  .actions { width: 100%; }
  .actions .btn { flex: 1; min-width: 0; justify-content: center; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .hero-media .img { height: 220px; }
  .cta-row { flex-direction: column; width: 100%; }
  .cta-row .btn { width: 100%; }
  .card,
  .quote,
  .prop .body { padding: 1.25rem; }
  .page-services .owner-metric,
  .page-services .owner-main,
  .page-services .owner-side,
  .page-services .case-body { padding: 1rem; }
  .page-contact .form-wrap { padding: 0; }
}

/* ==========================================================================
   SuperHote iframe theme (référence — à injecter côté SuperHote si besoin)
   ========================================================================== */
/*
#external-booking, #external-rental-detail, #detail-checkout {
  background: #f6f0e5 !important;
  color: #1E1A14 !important;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif !important;
}
#external-booking .rentals-list .rental {
  border-radius: 34px !important;
  border: 1px solid rgba(30,26,20,.10) !important;
  background: rgba(251,247,240,.75) !important;
}
*/
