/* ============================================================
   A&O Conciergerie — Design system
   Palette : nuit / or  —  thème « Nuit & Or »
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, svg { display: block; max-width: 100%; }
/* <picture> doit transmettre les dimensions du cadre à son <img> */
.hero__media picture, .split__media picture, .prop__media picture {
  width: 100%; height: 100%;
}
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- Tokens ---------- */
:root {
  --ink:#07090A;
  --ink-2:#0D1012;
  --ink-3:#161A1D;
  --paper:#111417;
  --paper-2:#171B1F;
  --paper-3:#1E2328;
  --brass:#D4A857;
  --brass-lt:#E7C580;
  --brass-glow:#F0DDB0;
  --moss:#25443A;
  --moss-lt:#38624F;

  --text:#ECE7DC;
  --text-soft:#A9AAA3;
  --text-faint:#888D89;
  --line:rgba(236,231,220,.13);

  --on-dark:#ECE7DC;
  --on-dark-soft:#A9AAA3;
  --on-dark-line:rgba(236,231,220,.14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --dur: .7s;

  --shadow-sm: 0 1px 2px rgba(12,13,12,.05), 0 4px 12px rgba(12,13,12,.05);
  --shadow-md: 0 2px 6px rgba(12,13,12,.06), 0 18px 44px -12px rgba(12,13,12,.16);
  --shadow-lg: 0 4px 10px rgba(12,13,12,.07), 0 34px 70px -18px rgba(12,13,12,.26);

  --header-h: 84px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  font-variant-ligatures: common-ligatures;
}

::selection { background: var(--ink); color: var(--paper); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.018em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  text-wrap: balance;
}

/* Fluid type scale */
.t-display { font-size: clamp(2.9rem, 7.4vw, 6rem); line-height: .98; letter-spacing: -.032em; }
.t-h1      { font-size: clamp(2.4rem, 5.6vw, 4.4rem); letter-spacing: -.028em; }
.t-h2      { font-size: clamp(2rem, 4.2vw, 3.3rem); letter-spacing: -.024em; }
.t-h3      { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -.016em; }
.t-lead    { font-family: var(--font-body); font-size: clamp(1.05rem, 1.55vw, 1.3rem); line-height: 1.6; color: var(--text-soft); font-weight: 350; text-wrap: pretty; }
.t-body    { color: var(--text-soft); text-wrap: pretty; }
.t-small   { font-size: .875rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-tight { max-width: 900px; }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.dark { background: var(--ink); color: var(--on-dark); }
.dark h1, .dark h2, .dark h3 { color: var(--on-dark); }
.dark .t-lead, .dark .t-body { color: var(--on-dark-soft); }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55;
}
.dark .eyebrow { color: var(--brass-lt); }

.sec-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .eyebrow { margin-bottom: 1.25rem; }
.sec-head h2 { margin-bottom: 1.1rem; }

/* Icônes inline : taille explicite (un SVG sans width/height s'étire en flex) */
svg.ico { width: 1.05em; height: 1.05em; flex: none; }
.btn .ico, .tlink .ico, .linkgrid a .ico { width: 16px; height: 16px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1rem 1.75rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .01em;
  white-space: nowrap; text-align: center;
  color: var(--btn-fg); background: var(--btn-bg);
  border-radius: 100px; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--brass);
  transform: translateY(101%); border-radius: 50% 50% 0 0;
  transition: transform .55s var(--ease), border-radius .55s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn:hover::after { transform: translateY(0); border-radius: 0; }
.btn:active { transform: translateY(0); }
.btn .ico { transition: transform .4s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { --btn-fg: #fff; box-shadow: inset 0 0 0 1px transparent; }
.dark .btn--ghost, .hero .btn--ghost, .phero .btn--ghost, .drawer .btn--ghost {
  --btn-fg: var(--on-dark); box-shadow: inset 0 0 0 1px rgba(243, 239, 231, .3);
}
.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--brass { --btn-bg: var(--brass); --btn-fg: #fff; }
.btn--brass::after { background: var(--ink); }
.btn--sm { padding: .7rem 1.25rem; font-size: .8rem; }

/* animated text link */
.tlink {
  position: relative; display: inline-flex; align-items: center; gap: .45rem;
  font-size: .875rem; font-weight: 500; padding-bottom: 2px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(1);
  transition: transform .45s var(--ease);
}
.tlink:hover::after { transform-origin: left; animation: linkSwipe .55s var(--ease); }
@keyframes linkSwipe { 0% { transform: scaleX(1); transform-origin: right; } 49% { transform: scaleX(0); transform-origin: right; } 50% { transform: scaleX(0); transform-origin: left; } 100% { transform: scaleX(1); transform-origin: left; } }
.tlink .ico { transition: transform .4s var(--ease); }
.tlink:hover .ico { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s var(--ease);
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.header.is-stuck { height: 66px; box-shadow: 0 1px 0 var(--line); }
.header.is-stuck::before { opacity: 1; }
.header.is-hidden { transform: translateY(-100%); transition: transform .4s var(--ease); }
.header__inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

/* Header over dark hero */
.header--onhero:not(.is-stuck) { color: var(--on-dark); }
.header--onhero:not(.is-stuck) .nav a { color: var(--on-dark); }
.header--onhero:not(.is-stuck) .btn--ghost { --btn-fg: var(--on-dark); box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.header--onhero:not(.is-stuck) .burger span { background: var(--on-dark); }

/* Logo — lockup typographique */
.logo { display: inline-flex; align-items: center; gap: .7rem; }
.logo__mono {
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
  letter-spacing: .04em; font-variation-settings: "opsz" 60;
  transition: letter-spacing .5s var(--ease);
}
.logo__mono em { font-style: italic; color: var(--brass); font-variation-settings: "SOFT" 60, "WONK" 1; }
.logo__rule { width: 1px; height: 22px; background: currentColor; opacity: .28; }
.logo__sub {
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  opacity: .72; line-height: 1; padding-top: 2px;
}
.logo:hover .logo__mono { letter-spacing: .09em; }
.header--onhero:not(.is-stuck) .logo__mono em, .footer .logo__mono em { color: var(--brass-lt); }
@media (max-width: 420px) { .logo__rule, .logo__sub { display: none; } }

/* Nav */
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a { position: relative; font-size: .875rem; font-weight: 450; padding: .35rem 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--brass); }
.header__actions { display: flex; align-items: center; gap: .75rem; }
@media (max-width: 1040px) { .nav, .header__actions .btn--ghost { display: none; } }

/* Burger + drawer */
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px; }
.burger span { display: block; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), width .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 15px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { width: 22px; transform: translateY(-3.25px) rotate(-45deg); }
@media (max-width: 1040px) { .burger { display: flex; } }

.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--header-h) var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0); pointer-events: none;
  transition: clip-path .7s var(--ease);
}
.drawer.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.drawer__nav { display: flex; flex-direction: column; gap: .4rem; }
.drawer__nav a {
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.8rem); line-height: 1.15;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; transition-delay: calc(.14s + var(--i) * .055s); }
.drawer__nav a:hover { color: var(--brass-lt); }
.drawer__foot { margin-top: auto; padding-top: 2.5rem; border-top: 1px solid var(--on-dark-line); display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; font-size: .875rem; color: var(--on-dark-soft); }
.drawer__foot a:hover { color: var(--brass-lt); }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 101; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--brass), var(--brass-glow)); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; background: var(--ink); color: var(--on-dark); overflow: hidden; padding-top: var(--header-h); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.08); animation: kenburns 22s var(--ease-io) infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); } }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(to top, var(--ink) 3%, rgba(12,13,12,.86) 34%, rgba(12,13,12,.52) 68%, rgba(12,13,12,.7) 100%); }
.hero__glow { position: absolute; z-index: 1; width: 60vw; height: 60vw; right: -12vw; top: -18vw; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,110,.16), transparent 62%); filter: blur(20px); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 5.5rem); padding-top: clamp(4rem, 12vw, 8rem); }
.hero h1 { max-width: 15ch; margin: 1.6rem 0 1.75rem; }
.hero .t-lead { max-width: 52ch; color: rgba(243,239,231,.78); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2.5rem; font-size: .82rem; color: var(--on-dark-soft); }
.stars { display: inline-flex; gap: 2px; color: var(--brass-lt); }
.stars svg { width: 14px; height: 14px; }

/* Headline word reveal */
.reveal-words span { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-words span > i {
  display: inline-block; font-style: inherit;
  transform: translateY(105%); opacity: 0;
  transition: transform .95s var(--ease), opacity .7s var(--ease);
  transition-delay: calc(var(--w) * .062s);
}
.is-ready .reveal-words span > i { transform: none; opacity: 1; }
.hl { color: var(--brass-lt); font-style: italic; font-variation-settings: "SOFT" 60, "WONK" 1; }

/* Scroll cue */
.scrollcue { position: absolute; z-index: 2; right: var(--gutter); bottom: clamp(3rem, 7vw, 5.5rem); display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--on-dark-soft); }
.scrollcue i { display: block; width: 1px; height: 54px; background: linear-gradient(var(--brass-lt), transparent); position: relative; overflow: hidden; }
.scrollcue i::after { content: ""; position: absolute; inset: 0; background: var(--brass-glow); animation: cue 2.2s var(--ease-io) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }
@media (max-width: 780px) { .scrollcue { display: none; } }

/* ---------- Stats ---------- */
.stats { border-block: 1px solid var(--line); background: var(--paper-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.8rem, 4vw, 2.75rem) clamp(1rem, 2.5vw, 2rem); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat__n { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1; letter-spacing: -.03em; }
.stat__n sub { font-size: .42em; vertical-align: baseline; color: var(--brass); margin-left: .1em; }
.stat__l { margin-top: .6rem; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 780px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- Service cards ---------- */
.svc {
  position: relative; padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; isolation: isolate;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  clip-path: circle(0% at 50% 100%); transition: clip-path .75s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc:hover::before { clip-path: circle(140% at 50% 100%); }
.svc:hover, .svc:hover h3 { color: var(--on-dark); }
.svc:hover .svc__n { color: var(--brass-lt); }
.svc:hover .svc__ico { border-color: var(--on-dark-line); color: var(--brass-lt); }
.svc:hover .t-body { color: var(--on-dark-soft); }
.svc__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.svc__ico { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--brass); transition: color .5s var(--ease), border-color .5s var(--ease); }
.svc__ico svg { width: 21px; height: 21px; }
.svc__n { font-family: var(--font-display); font-size: .95rem; color: var(--text-faint); transition: color .5s; }
.svc h3 { margin-bottom: .75rem; transition: color .5s; }
.svc .t-body { font-size: .95rem; transition: color .5s; }
.svc__more { margin-top: 1.5rem; display: inline-flex; }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 6rem 1fr auto; gap: clamp(1rem, 3vw, 3rem); align-items: start; padding-block: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--on-dark-line); }
.step:last-child { border-bottom: 1px solid var(--on-dark-line); }
.step__n { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--brass-lt); line-height: 1; }
.step h3 { margin-bottom: .6rem; }
.step__line { width: 100%; }
@media (max-width: 780px) { .step { grid-template-columns: 1fr; gap: .75rem; } }

/* ---------- Property cards ---------- */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.4vw, 2rem); }
@media (max-width: 1040px) { .props { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .props { grid-template-columns: 1fr; } }

.prop { position: relative; display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.prop:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.prop__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.prop__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.prop:hover .prop__media img { transform: scale(1.07); }
.prop__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,13,12,.55), transparent 45%); opacity: .9; }
.prop__ph { position: absolute; inset: 0; display: grid; place-items: center; background:
  radial-gradient(120% 90% at 30% 10%, #2A2E33, #101214 70%); color: rgba(243,239,231,.35); }
.prop__ph svg { width: 54px; height: 54px; }
.prop__badge { position: absolute; z-index: 2; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .75rem; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; background: rgba(247,243,236,.94); color: var(--ink); border-radius: 100px; backdrop-filter: blur(6px); }
.prop__badge--new { background: var(--brass); color: #fff; }
.prop__rating { position: absolute; z-index: 2; top: 1rem; right: 1rem; display: inline-flex; align-items: center; gap: .3rem; padding: .35rem .6rem; font-size: .72rem; font-weight: 600; background: rgba(12,13,12,.66); color: var(--paper); border-radius: 100px; backdrop-filter: blur(6px); }
.prop__rating svg { width: 12px; height: 12px; color: var(--brass-lt); }
.prop__loc { position: absolute; z-index: 2; left: 1rem; bottom: .9rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,243,236,.9); }
.prop__body { padding: 1.4rem 1.4rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.prop__body h3 { font-size: 1.32rem; margin-bottom: .55rem; }
.prop__body p { font-size: .9rem; color: var(--text-soft); flex: 1; }
.prop__meta { display: flex; gap: 1.15rem; margin: 1.15rem 0 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--text-soft); }
.prop__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.prop__meta svg { width: 15px; height: 15px; color: var(--brass); }
.prop__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem; }
.chip { padding: .55rem 1.1rem; font-size: .82rem; border-radius: 100px; box-shadow: inset 0 0 0 1px var(--line); transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease); }
.chip:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.prop.is-hidden { display: none; }

/* ---------- Zones ---------- */
.zone-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.zone-tag { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.15rem; font-size: .875rem; border-radius: 100px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease); }
.zone-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); transition: background .35s; }
.zone-tag:hover { transform: translateY(-2px); background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.zone-tag:hover::before { background: var(--brass-lt); }
.dark .zone-tag { background: transparent; box-shadow: inset 0 0 0 1px var(--on-dark-line); color: var(--on-dark); }
.dark .zone-tag:hover { background: var(--paper); color: var(--ink); }

.dept { padding: 1.6rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.dept:hover { transform: translateY(-4px); border-color: var(--brass); box-shadow: var(--shadow-md); }
.dept h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.dept p { font-size: .875rem; color: var(--text-soft); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--on-dark-line); padding-block: 1.25rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marq 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track a, .marquee__track span { display: inline-flex; align-items: center; gap: 3rem; font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--on-dark-soft); white-space: nowrap; transition: color .3s; }
.marquee__track a:hover { color: var(--brass-lt); }
.marquee__track a::after, .marquee__track span::after { content: "◆"; font-size: .42em; color: var(--brass); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Testimonials ---------- */
.rail { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.5rem; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.rail::-webkit-scrollbar { display: none; }
.quote { flex: 0 0 min(420px, 82vw); scroll-snap-align: start; display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 2.25rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote .stars { margin-bottom: 1.1rem; }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; letter-spacing: -.01em; flex: 1; }
.quote figcaption { margin-top: 1.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .82rem; }
.quote figcaption b { display: block; font-weight: 600; margin-bottom: .15rem; }
.quote figcaption span { color: var(--text-faint); }
.rail-nav { display: flex; gap: .6rem; }
.rail-btn { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); transition: background .3s, color .3s, box-shadow .3s, transform .3s; }
.rail-btn:hover { background: var(--ink); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink); }
.rail-btn:disabled { opacity: .3; cursor: default; }
.rail-btn svg { width: 17px; height: 17px; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 3/4; }

.checks { display: grid; gap: .9rem; margin-top: 2rem; }
.checks li { display: flex; gap: .85rem; align-items: flex-start; font-size: .95rem; }
.checks svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--brass); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__glow { position: absolute; inset: auto 50% -40% auto; transform: translateX(50%); width: 90vw; height: 60vw; max-height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(168,126,69,.22), transparent 62%); filter: blur(30px); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .t-lead { max-width: 54ch; margin: 1.25rem auto 2.25rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.cinfo { display: grid; gap: 1.5rem; margin-top: 2.25rem; }
.cinfo__row { display: flex; gap: 1.1rem; align-items: flex-start; }
.cinfo__ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--paper-2); color: var(--brass); }
.dark .cinfo__ico { background: rgba(255,255,255,.06); }
.cinfo__ico svg { width: 19px; height: 19px; }
.cinfo dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .3rem; }
.dark .cinfo dt { color: var(--on-dark-soft); }
.cinfo dd { font-size: 1.02rem; }
.cinfo dd a { position: relative; }
.cinfo dd a:hover { color: var(--brass); }

.form { display: grid; gap: 1.1rem; align-content: start; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.15rem 1.15rem .55rem; font-size: .95rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.dark .field input, .dark .field textarea { background: rgba(255,255,255,.04); border-color: var(--on-dark-line); color: var(--on-dark); }
.field textarea { min-height: 148px; resize: vertical; padding-top: 1.55rem; }
.field label { position: absolute; left: 1.15rem; top: .95rem; font-size: .95rem; color: var(--text-faint); pointer-events: none; transform-origin: left top; transition: transform .28s var(--ease), color .28s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(168,126,69,.13); }
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-.6rem) scale(.74); color: var(--brass);
}
.form__note { font-size: .78rem; color: var(--text-faint); }
.dark .form__note { color: var(--on-dark-soft); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.dark .faq { border-color: var(--on-dark-line); }
.faq__item { border-bottom: 1px solid var(--line); }
.dark .faq__item { border-color: var(--on-dark-line); }
.faq__q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.35; transition: color .3s; }
.faq__q:hover { color: var(--brass); }
.faq__ico { flex: none; width: 26px; height: 26px; position: relative; margin-top: 4px; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: currentColor; transition: transform .45s var(--ease); }
.faq__ico::after { transform: rotate(90deg); }
.faq__item.is-open .faq__ico::after { transform: rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.6rem; max-width: 72ch; color: var(--text-soft); font-size: .97rem; }
.dark .faq__a p { color: var(--on-dark-soft); }

/* ---------- Page hero (inner pages) ---------- */
.phero { position: relative; padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 7rem)); padding-bottom: clamp(3rem, 6vw, 5rem); background: var(--ink); color: var(--on-dark); overflow: hidden; }
.phero__glow { position: absolute; width: 70vw; height: 45vw; right: -10vw; top: -14vw; border-radius: 50%; background: radial-gradient(circle, rgba(168,126,69,.2), transparent 62%); filter: blur(24px); }
.phero .wrap { position: relative; z-index: 1; }
.phero h1 { max-width: 18ch; margin: 1.35rem 0 1.35rem; }
.phero .t-lead { max-width: 62ch; color: rgba(243,239,231,.78); }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .78rem; color: var(--on-dark-soft); }
.crumbs a:hover { color: var(--brass-lt); }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; opacity: .4; }
.crumbs li { display: inline-flex; align-items: center; }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-top: 2.75rem; }
.prose h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin-top: 2rem; }
.prose p, .prose li { color: var(--text-soft); }
.prose ul { display: grid; gap: .6rem; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.prose a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); text-decoration-thickness: 1px; }
.prose a:hover { color: var(--brass); }
.prose strong { color: var(--text); font-weight: 600; }

/* City page bits */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { padding: .5rem 1rem; font-size: .82rem; border-radius: 100px; background: var(--paper-2); color: var(--text-soft); }
.linkgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .5rem; }
.linkgrid a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .85rem 1.1rem; font-size: .875rem; border: 1px solid var(--line); border-radius: var(--radius); transition: background .3s, color .3s, border-color .3s, transform .3s; }
.linkgrid a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.linkgrid a svg { width: 14px; height: 14px; opacity: .5; }
.dark .linkgrid a { border-color: var(--on-dark-line); }
.dark .linkgrid a:hover { background: var(--paper); color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--on-dark-line); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand p { margin-top: 1.25rem; font-size: .9rem; color: var(--on-dark-soft); max-width: 34ch; }
.footer h4 { font-family: var(--font-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 1.25rem; }
.footer ul { display: grid; gap: .65rem; }
.footer ul a, .footer address a { font-size: .9rem; color: var(--on-dark-soft); transition: color .3s, padding-left .3s; }
.footer ul a:hover { color: var(--on-dark); padding-left: 5px; }
.footer address { font-style: normal; font-size: .9rem; color: var(--on-dark-soft); display: grid; gap: .65rem; }
.footer address a:hover { color: var(--brass-lt); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .78rem; color: var(--on-dark-soft); }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__bottom a:hover { color: var(--brass-lt); }

/* ---------- Floating call (mobile) ---------- */
.fab { position: fixed; z-index: 90; right: 1rem; bottom: 1rem; display: none; align-items: center; gap: .55rem; padding: .95rem 1.35rem; background: var(--ink); color: var(--paper); border-radius: 100px; box-shadow: var(--shadow-lg); font-size: .875rem; font-weight: 500; transform: translateY(120%); transition: transform .5s var(--ease); }
.fab.is-in { transform: none; }
.fab svg { width: 17px; height: 17px; }
@media (max-width: 780px) { .fab { display: inline-flex; } }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: calc(var(--d, 0) * 85ms); will-change: opacity, transform; }
.rv.is-in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-24px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: calc(var(--d, 0) * 85ms); }
.rv-l.is-in { opacity: 1; transform: none; }
.rv-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease); transition-delay: calc(var(--d, 0) * 85ms); }
.rv-clip.is-in { clip-path: inset(0 0 0 0); }
.rv-scale img { transform: scale(1.16); transition: transform 1.4s var(--ease); }
.rv-scale.is-in img { transform: scale(1); }

/* Utilities */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; } .between { justify-content: space-between; } .center { align-items: center; }
.wrapf { flex-wrap: wrap; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -9999px; z-index: 999; padding: 1rem 1.5rem; background: var(--ink); color: var(--paper); }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv, .rv-l { opacity: 1 !important; transform: none !important; }
  .rv-clip { clip-path: none !important; }
  .rv-scale img { transform: none !important; }
  .reveal-words span > i { transform: none !important; opacity: 1 !important; }
  .hero__media img { animation: none; transform: scale(1.02); }
}

/* ---------- Print ---------- */
@media print {
  .header, .drawer, .fab, .progress, .scrollcue, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- Filter re-entry animation (used by JS) ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   Thème « Nuit & Or » — ajustements de composants
   Les couleurs vivent dans les tokens :root ci-dessus. Ce bloc
   ne corrige que les cas où le clair était codé en dur.
   ============================================================ */

::selection { background: var(--brass); color: #0B0D0E; }

/* Boutons : l'encre servait de fond, elle disparaîtrait sur fond sombre */
.btn { --btn-bg: var(--brass); --btn-fg: #0B0D0E; }
.btn::after { background: var(--brass-lt); }
.btn:hover { color: #0B0D0E; }
.btn--light { --btn-bg: var(--brass); --btn-fg: #0B0D0E; }
.btn--brass { --btn-bg: var(--brass); --btn-fg: #0B0D0E; }
.btn--brass::after { background: var(--brass-lt); }
/* déclaré après .btn ci-dessus, donc --btn-bg doit être redonné explicitement */
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); box-shadow: inset 0 0 0 1px rgba(236,231,220,.24); }
.btn--ghost:hover { --btn-fg: #0B0D0E; box-shadow: inset 0 0 0 1px transparent; }
.burger span { background: var(--text); }

/* Surfaces : une carte « papier » sur un fond « papier » a besoin d'un liseré */
.prop, .quote { background: var(--paper-2); box-shadow: 0 0 0 1px var(--line); }
.prop:hover, .quote:hover { box-shadow: 0 0 0 1px rgba(212,168,87,.35), var(--shadow-lg); }
.svc::before { background: var(--ink-3); }
.prop__badge { background: rgba(17,20,23,.92); color: var(--text); }
.prop__rating { background: rgba(0,0,0,.72); color: var(--text); }
.stats { background: var(--paper-2); }

/* États actifs : l'or remplace l'encre */
.chip:hover { box-shadow: inset 0 0 0 1px var(--brass); }
.chip[aria-pressed="true"] { background: var(--brass); color: #0B0D0E; box-shadow: inset 0 0 0 1px var(--brass); }
.zone-tag:hover, .dark .zone-tag:hover { background: var(--brass); color: #0B0D0E; box-shadow: inset 0 0 0 1px var(--brass); }
.linkgrid a:hover, .dark .linkgrid a:hover { background: var(--brass); color: #0B0D0E; border-color: var(--brass); }
.rail-btn:hover { background: var(--brass); color: #0B0D0E; box-shadow: inset 0 0 0 1px var(--brass); }

/* Photo d'ouverture : un peu moins voilée, le fond est déjà sombre */
.hero__media img { opacity: .44; }

/* Confirmation d'envoi du formulaire */
.form__ok {
  padding: 2rem 1.5rem; text-align: center; line-height: 1.7;
  border: 1px solid var(--brass); border-radius: var(--radius-lg);
  background: rgba(212,168,87,.07); color: var(--text);
}

/* Champs de formulaire : détachés du fond de page */
.field input, .field textarea { background: var(--paper-2); }

/* Logo A&O en pied de page */
.footer__mark { display: inline-block; }
.footer__mark img { width: 150px; height: auto; }
