/* ══════════════════════════════════════════════
   FULL CONCIERGE — Design System v2
   DA: Blanc #FFFFFF + Navy #1F1C33
   ══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #1F1C33;
  --navy-mid:  #2D2A45;
  --navy-deep: #141228;
  --white:     #FFFFFF;
  --smoke:     #F6F5FA;
  --mist:      #ECEAF5;
  --gold:      #C9A96E;
  --gold-lt:   #DFC28E;
  --grey:      #7A7890;
  --grey-lt:   #E4E1F0;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.65; font-weight: 300; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; }

.t-eye  { font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.t-h1   { font-family: var(--serif); font-size: clamp(38px,5.5vw,78px); font-weight: 300; line-height: 1.05; letter-spacing: -.015em; }
.t-h2   { font-family: var(--serif); font-size: clamp(28px,3.8vw,52px); font-weight: 300; line-height: 1.1; letter-spacing: -.01em; }
.t-h3   { font-family: var(--serif); font-size: clamp(20px,2.5vw,30px); font-weight: 400; line-height: 1.2; }
.t-body { font-size: 14px; line-height: 1.8; }
em      { font-style: italic; }
.rule   { width: 44px; height: 1px; background: var(--gold); margin: 24px 0; }
.rule-c { margin: 24px auto; }

.sec     { padding: 100px 64px; }
.sec-lg  { padding: 140px 64px; }
.sec-sm  { padding: 64px 64px; }
.sec-navy{ background: var(--navy); color: var(--white); }
.sec-smoke{ background: var(--smoke); }
.container{ max-width: 1280px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; padding: 15px 36px; transition: all .35s var(--ease); border: none; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(31,28,51,.25); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,.35); }
.btn-ghost{ background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.lnk { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; transition: gap .3s, color .3s; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.lnk:hover { gap: 14px; color: var(--gold); }
.lnk-w { color: var(--white); }
.lnk-w:hover { color: var(--gold-lt); }

.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══ NAV — LOGO IMAGE (toujours visible, fond blanc) ═══════════ */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; display: flex; align-items: center; justify-content: space-between; padding: 10px 48px; background: rgba(255,255,255,.94); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid rgba(31,28,51,.06); transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s; }
#nav.scrolled { background: rgba(255,255,255,.98); padding: 6px 48px; box-shadow: 0 4px 24px rgba(31,28,51,.08); }
.nav-logo { display: flex; align-items: center; line-height: 1; transition: opacity .3s; }
.nav-logo:hover { opacity: .75; }
.nav-logo-img { height: 84px; width: auto; display: block; transition: height .3s var(--ease); }
#nav.scrolled .nav-logo-img { height: 68px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-dropdown { position: relative; }
.nav-links > li > a, .nav-dropdown > a { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(31,28,51,.72); padding: 10px 16px; display: flex; align-items: center; gap: 5px; transition: color .3s; cursor: pointer; }
.nav-links > li > a:hover, .nav-dropdown > a:hover { color: var(--navy); }
.nav-dropdown-menu { opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 0px); left: 0; background: var(--white); min-width: 260px; box-shadow: 0 16px 48px rgba(31,28,51,.18); border-top: 2px solid var(--gold); transition: opacity .25s var(--ease), visibility .25s var(--ease); padding: 8px 0; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.active .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a { display: block; padding: 12px 22px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(31,28,51,.75); transition: background .2s, color .2s, padding-left .2s; border-bottom: 1px solid rgba(31,28,51,.06); }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(201,169,110,.08); color: var(--gold); padding-left: 28px; }
.nav-cta { font-size: 10px; padding: 12px 24px; margin-left: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: .3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 490; overflow-y: auto; flex-direction: column; padding: 100px 40px 60px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 26px; font-weight: 300; color: rgba(255,255,255,.85); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 32px; color: var(--white); background: none; border: none; cursor: pointer; font-family: var(--serif); line-height: 1; }
.chevron { font-size: 8px; opacity: .6; transition: transform .25s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* ══ HERO ═════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 64px 88px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(31,28,51,.78) 0%, rgba(31,28,51,.92) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content .t-eye { animation: fu .8s .2s both; }
.hero-content .t-h1  { color: var(--white); animation: fu .9s .4s both; }
.hero-sub { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.72); max-width: 540px; margin: 22px 0 44px; animation: fu .9s .6s both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fu .9s .8s both; }
.hero-scroll { position: absolute; right: 64px; bottom: 36px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: sp 2s infinite; }
.hero-scroll span { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.4); writing-mode: vertical-rl; }
@keyframes fu { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
@keyframes sp { 0%,100%{opacity:.4} 50%{opacity:1} }

.stats { display: grid; grid-template-columns: repeat(4,1fr); background: var(--navy); }
.stat { padding: 44px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); transition: background .3s; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(201,169,110,.06); }
.stat-n { font-family: var(--serif); font-size: 46px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); }

.page-header { position: relative; padding: 170px 64px 90px; overflow: hidden; background: var(--navy); }
.page-header-bg { position: absolute; inset: 0; opacity: .22; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-header-content { position: relative; z-index: 2; max-width: 760px; }
.page-header-content .t-h1 { color: var(--white); }
.page-header-content p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.65); margin-top: 20px; max-width: 580px; }

.s-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.s-card { overflow: hidden; transition: transform .4s var(--ease); cursor: pointer; }
.s-card:hover { transform: translateY(-5px); }
.s-card-img { height: 280px; overflow: hidden; }
.s-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.s-card:hover .s-card-img img { transform: scale(1.06); }
.s-card-body { background: var(--white); padding: 34px 32px 38px; }
.s-card.navy .s-card-body { background: var(--navy); }
.s-tag { display: inline-block; font-size: 9px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 5px 12px; margin-bottom: 14px; }
.s-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); padding: 6px 14px; margin-bottom: 12px; }
.s-card-name { font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.s-card.navy .s-card-name { color: var(--white); }
.s-card-desc { font-size: 13px; line-height: 1.75; color: var(--grey); margin-bottom: 22px; }
.s-card.navy .s-card-desc { color: rgba(255,255,255,.55); }

.biens-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.bien-card { overflow: hidden; background: var(--smoke); transition: transform .4s var(--ease), box-shadow .4s; cursor: pointer; display: flex; flex-direction: column; }
.bien-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(31,28,51,.12); }
.bien-img { overflow: hidden; aspect-ratio: 4/3; width: 100%; }
.bien-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); display: block; }
.bien-card:hover .bien-img img { transform: scale(1.07); }
.bien-info { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.bien-loc { font-size: 9px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.bien-name { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.bien-type { font-size: 11px; color: var(--grey); }

.hon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.hon-card { padding: 52px 44px; }
.hon-card.mid { background: var(--navy); }
.hon-tag { font-size: 9px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.hon-price { font-family: var(--serif); font-size: 52px; font-weight: 300; line-height: 1; margin-bottom: 8px; }
.hon-card.mid .hon-price { color: var(--white); }
.hon-base { font-size: 12px; color: var(--grey); margin-bottom: 32px; }
.hon-card.mid .hon-base { color: rgba(255,255,255,.5); }
.hon-list { list-style: none; }
.hon-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.6; padding: 8px 0; border-bottom: 1px solid var(--mist); color: var(--navy); }
.hon-card.mid .hon-list li { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.75); }
.hon-list li::before { content: '✓'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.avis-card { background: var(--white); padding: 34px 30px; border-bottom: 3px solid transparent; transition: border-color .3s, transform .3s, box-shadow .3s; }
.avis-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(31,28,51,.07); }
.avis-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); font-size: 14px; }
.avis-text { font-family: var(--serif); font-size: 15px; font-style: italic; font-weight: 400; line-height: 1.7; color: var(--navy); margin-bottom: 20px; }
.avis-author { display: flex; align-items: center; gap: 12px; }
.avis-av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--serif); font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avis-name { font-size: 13px; font-weight: 500; }
.avis-src { font-size: 11px; color: var(--grey); }

.hist-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hist-img { position: relative; min-height: 600px; overflow: hidden; }
.hist-img img { width: 100%; height: 100%; object-fit: cover; }
.hist-body { background: var(--navy); padding: 100px 80px 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.hist-body .t-h2 { color: var(--white); margin-bottom: 24px; }
.hist-body p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.hist-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.hist-val { border-left: 2px solid var(--gold); padding-left: 16px; }
.hist-val strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.hist-val span { font-size: 12px; color: rgba(255,255,255,.5); }

/* ══ FOUNDER (Clément photo storytelling) ═══ */
.founder { display: grid; grid-template-columns: 1fr 1.4fr; background: var(--smoke); align-items: stretch; }
.founder-img { position: relative; overflow: hidden; min-height: 620px; background: var(--navy); }
.founder-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.founder-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; background: linear-gradient(to top, rgba(31,28,51,.95), transparent); color: var(--white); }
.founder-img-overlay .n { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 4px; }
.founder-img-overlay .r { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.founder-body { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.founder-quote { font-family: var(--serif); font-size: 24px; font-weight: 400; font-style: italic; line-height: 1.5; color: var(--navy); padding-left: 24px; border-left: 2px solid var(--gold); margin: 32px 0; }
.founder-sign { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--grey); margin-top: 12px; }

.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--grey-lt); margin-top: 60px; }
.proc-step { padding: 48px 36px 48px 0; border-right: 1px solid var(--grey-lt); transition: background .3s; }
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: rgba(201,169,110,.04); }
.proc-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--grey-lt); line-height: 1; margin-bottom: 20px; }
.proc-title { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.proc-desc { font-size: 13px; line-height: 1.75; color: var(--grey); }

/* ══ FAQ ══ */
.faq-wrap { max-width: 860px; margin-top: 52px; }
.faq-wrap.narrow { max-width: 780px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.sec-smoke .faq-item, .faq-item.light { border-color: var(--grey-lt); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 24px; }
.faq-q-txt { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.3; }
.sec-smoke .faq-q-txt, .faq-item.light .faq-q-txt { color: var(--navy); }
.faq-ico { width: 28px; height: 28px; flex-shrink: 0; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; transition: transform .3s, border-color .3s; }
.sec-smoke .faq-ico, .faq-item.light .faq-ico { border-color: var(--grey-lt); }
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-in { padding: 0 0 22px; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); }
.sec-smoke .faq-a-in, .faq-item.light .faq-a-in { color: var(--grey); }
.faq-a-in strong { color: var(--gold); font-weight: 400; }
.faq-item.open .faq-a { max-height: 700px; }
.faq-cat-title { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-top: 56px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; color: var(--navy); }

/* ══ BLOG ══ */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.blog-card { overflow: hidden; background: var(--white); transition: transform .4s var(--ease), box-shadow .4s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(31,28,51,.1); }
.blog-img { overflow: hidden; }
.blog-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:first-child .blog-img img { height: 320px; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px 24px 28px; }
.blog-cat { font-size: 9px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-title { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
.blog-card:first-child .blog-title { font-size: 23px; }
.blog-exc { font-size: 13px; line-height: 1.7; color: var(--grey); margin-bottom: 16px; }
.blog-date { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey); }

.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.journal-card { overflow: hidden; background: var(--white); transition: transform .4s var(--ease), box-shadow .4s; display: block; }
.journal-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(31,28,51,.12); }
.journal-img { overflow: hidden; height: 260px; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.journal-card:hover .journal-img img { transform: scale(1.06); }
.journal-body { padding: 26px 26px 30px; }

.article-header { position: relative; padding: 170px 64px 80px; overflow: hidden; background: var(--navy); }
.article-header-bg { position: absolute; inset: 0; opacity: .32; }
.article-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.article-header-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(31,28,51,.4), rgba(31,28,51,.95)); }
.article-header-content { position: relative; z-index: 2; max-width: 820px; }
.article-cat-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 14px; margin-bottom: 24px; }
.article-title { font-family: var(--serif); font-size: clamp(32px,4.8vw,58px); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 24px; letter-spacing: -.01em; }
.article-meta { display: flex; gap: 20px; font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; flex-wrap: wrap; }

.article-body { max-width: 780px; margin: 0 auto; padding: 80px 32px; }
.article-body .lead { font-family: var(--serif); font-size: 22px; font-weight: 400; font-style: italic; line-height: 1.55; color: var(--navy); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--grey-lt); }
.article-body h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 52px 0 20px; color: var(--navy); }
.article-body h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 36px 0 16px; color: var(--navy); }
.article-body p  { font-size: 15px; line-height: 1.9; margin-bottom: 20px; color: #333; }
.article-body ul, .article-body ol { margin: 16px 0 24px 20px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 15px; line-height: 1.85; margin-bottom: 8px; color: #333; }
.article-body li::marker { color: var(--gold); }
.article-body strong { color: var(--navy); font-weight: 500; }
.article-body em { color: var(--navy); }
.article-body a { color: var(--gold); border-bottom: 1px solid var(--gold); transition: background .2s; padding-bottom: 1px; }
.article-body a:hover { background: rgba(201,169,110,.12); }
.article-body blockquote { margin: 32px 0; padding: 24px 32px; border-left: 3px solid var(--gold); background: var(--smoke); font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--navy); }
.article-body .callout { background: var(--navy); color: var(--white); padding: 32px; margin: 36px 0; }
.article-body .callout h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--gold); margin-bottom: 12px; }
.article-body .callout p { color: rgba(255,255,255,.75); margin-bottom: 0; font-size: 14px; }
.article-body .callout .btn { color: var(--navy) !important; display: inline-flex; background: var(--gold); padding: 14px 32px; font-size: 11px; font-weight: 600; letter-spacing: .18em; margin-top: 10px; }
.article-body .callout .btn:hover { background: var(--gold-lt); color: var(--navy) !important; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,.35); }
.article-body .callout a { color: var(--gold); border-bottom: 1px solid currentColor; }
.article-body .callout a.btn { border-bottom: none; }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-body th { background: var(--navy); color: var(--white); padding: 14px; text-align: left; font-weight: 500; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.article-body td { padding: 14px; border-bottom: 1px solid var(--mist); color: #333; }
.article-body td:first-child { font-weight: 500; color: var(--navy); }

/* ══ APARTMENT TEMPLATE ══ */
.apt-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 560px; padding-top: 76px; }
.apt-gallery > *:first-child { grid-row: span 2; }
.apt-gallery .img-wrap { overflow: hidden; cursor: pointer; position: relative; }
.apt-gallery .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.apt-gallery .img-wrap:hover img { transform: scale(1.04); }
.apt-gallery .img-more { position: relative; }
.apt-gallery .img-more::after { content: 'Toutes les photos →'; position: absolute; inset: 0; background: rgba(31,28,51,.72); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; transition: background .3s; }
.apt-gallery .img-more:hover::after { background: rgba(31,28,51,.88); }

.apt-header { display: block; padding: 60px 64px; border-bottom: 1px solid var(--mist); max-width: 980px; }
.apt-loc { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.apt-name { font-family: var(--serif); font-size: clamp(36px,4.5vw,56px); font-weight: 300; line-height: 1.05; margin-bottom: 16px; letter-spacing: -.01em; }
.apt-tagline { font-size: 15px; line-height: 1.7; color: var(--grey); max-width: 560px; }
.apt-specs { display: flex; flex-direction: column; gap: 14px; }
.apt-spec-item { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--mist); }
.apt-spec-item:last-child { border: none; }
.apt-spec-ico { font-size: 18px; width: 28px; color: var(--gold); }
.apt-spec-item .v { font-size: 14px; color: var(--navy); font-weight: 500; }
.apt-spec-item .k { font-size: 11px; color: var(--grey); letter-spacing: .1em; text-transform: uppercase; }

.apt-content { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; padding: 80px 64px; }
.apt-description h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 20px; }
.apt-description p { font-size: 15px; line-height: 1.9; color: #333; margin-bottom: 18px; }
.apt-amenities-title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 48px 0 28px; }
.apt-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.apt-amenity { display: flex; align-items: center; gap: 16px; font-size: 14px; padding: 14px 0; border-bottom: 1px solid var(--mist); color: var(--navy); }
.apt-amenity svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 1.4; fill: none; flex-shrink: 0; opacity: .75; }

.apt-sidebar { position: sticky; top: 120px; align-self: start; }
.apt-sidebar-card { background: var(--navy); color: var(--white); padding: 36px 32px; }
.apt-sidebar-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.apt-sidebar-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; }
.apt-sidebar-card .btn { width: 100%; justify-content: center; }
.apt-sidebar-info { background: var(--smoke); padding: 28px; margin-top: 4px; }
.apt-sidebar-info-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--mist); font-size: 13px; }
.apt-sidebar-info-item:last-child { border: none; }
.apt-sidebar-info-item .k { color: var(--grey); }
.apt-sidebar-info-item .v { color: var(--navy); font-weight: 500; }

.apt-location-map { padding: 80px 64px; background: var(--smoke); }
.apt-location-map h2 { font-family: var(--serif); font-size: 34px; font-weight: 300; margin-bottom: 12px; }
.apt-location-map .loc-tag { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.apt-location-map p { font-size: 14px; line-height: 1.75; color: var(--grey); max-width: 720px; margin-bottom: 36px; }
.apt-location-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.apt-location-feat { background: var(--white); padding: 28px 24px; transition: transform .3s; }
.apt-location-feat:hover { transform: translateY(-3px); }
.apt-location-feat .n { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.apt-location-feat .l { font-size: 12px; color: var(--navy); font-weight: 500; margin-bottom: 2px; }
.apt-location-feat .d { font-size: 11px; color: var(--grey); }

.apt-other { background: var(--navy); padding: 80px 64px; }
.apt-other > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.apt-other h2 { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 36px; }
.apt-other .biens-grid { grid-template-columns: repeat(3,1fr); }
.apt-other .bien-card { background: rgba(255,255,255,.04); }
.apt-other .bien-name { color: var(--white); }
.apt-other .bien-type { color: rgba(255,255,255,.5); }

/* ══ SPLIT ══ */
.split { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.split-img { position: relative; overflow: hidden; min-height: 560px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split:hover .split-img img { transform: scale(1.04); }
.split-img-ov { position: absolute; inset: 0; }
.split-body { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.split-body.navy { background: var(--navy); }
.split-body .t-h2 { margin-bottom: 24px; }
.split-body.navy .t-h2 { color: var(--white); }
.split-body.navy p { color: rgba(255,255,255,.6); }
.split-body p { font-size: 14px; line-height: 1.85; margin-bottom: 14px; }
.adv-list { margin: 28px 0 40px; }
.adv-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.adv-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.adv-ico { width: 30px; height: 30px; flex-shrink: 0; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; margin-top: 2px; }
.adv-txt strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.adv-txt span { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

.cta-band { position: relative; overflow: hidden; padding: 110px 64px; }
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-ov { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,28,51,.93), rgba(31,28,51,.75)); }
.cta-band-ct { position: relative; z-index: 2; max-width: 620px; }
.cta-band-ct .t-h2 { color: var(--white); margin-bottom: 18px; }
.cta-band-ct p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.68); margin-bottom: 38px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-contact { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.5); }
.cta-contact a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s; }
.cta-contact a:hover { border-color: var(--gold); }

/* ══ LEGAL ══ */
.legal-body { max-width: 860px; margin: 0 auto; padding: 80px 32px; }
.legal-body h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 44px 0 16px; color: var(--navy); padding-bottom: 8px; border-bottom: 1px solid var(--gold); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 28px 0 12px; color: var(--navy); }
.legal-body p  { font-size: 14px; line-height: 1.85; margin-bottom: 14px; color: #333; }
.legal-body ul { margin: 12px 0 20px 20px; list-style: disc; }
.legal-body li { font-size: 14px; line-height: 1.75; margin-bottom: 6px; }
.legal-body strong { color: var(--navy); }
.legal-body a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-form-wrap { padding: 80px 72px; }
.contact-info-wrap { background: var(--navy); padding: 80px 72px; }
/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-form-wrap { padding: 80px 72px; }
.contact-info-wrap { background: var(--navy); padding: 80px 72px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--grey-lt); background: var(--smoke); color: var(--navy); font-family: var(--sans); font-size: 14px; font-weight: 300; transition: border-color .3s, background .3s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-ico { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 16px; }
.contact-info-label { font-size: 9px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.contact-info-val { font-size: 14px; color: var(--white); }
.contact-info-val a { color: var(--white); transition: color .3s; }
.contact-info-val a:hover { color: var(--gold); }

/* ══ WECHAT PAGE ══ */
.wechat-page { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 140px 32px 80px; }
.wechat-card { background: var(--white); max-width: 420px; width: 100%; padding: 44px 40px; text-align: center; }
.wechat-card h1 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 8px; color: var(--navy); }
.wechat-card p.sub { font-size: 13px; color: var(--grey); margin-bottom: 28px; }
.wechat-qr-wrap { background: var(--white); padding: 0; margin-bottom: 20px; }
.wechat-qr-wrap img { width: 100%; height: auto; display: block; }
.wechat-card .footer-txt { font-size: 12px; color: var(--grey); line-height: 1.7; margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--mist); }

/* ══ FOOTER ══ */
footer { background: var(--navy-deep); }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 52px; padding: 80px 64px 64px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo { display: flex; flex-direction: column; line-height: 1; color: var(--white); margin-bottom: 20px; }
.ft-logo-img { height: 110px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.ft-tagline { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 260px; margin-bottom: 24px; }
.ft-contact-item { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.ft-contact-item a { color: rgba(255,255,255,.5); transition: color .3s; }
.ft-contact-item a:hover { color: var(--gold); }
.ft-socials { display: flex; gap: 10px; margin-top: 20px; }
.ft-soc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 15px; transition: all .3s; }
.ft-soc:hover { border-color: var(--gold); color: var(--gold); }
.ft-col-title { font-size: 9px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.ft-links li { margin-bottom: 10px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .3s; }
.ft-links a:hover { color: var(--white); }
.ft-insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 20px; }
.ft-insta-thumb { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.ft-insta-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ft-insta-thumb:hover img { transform: scale(1.1); }
.ft-wechat-link { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.1); transition: border-color .3s, background .3s; }
.ft-wechat-link:hover { border-color: var(--gold); background: rgba(201,169,110,.06); }
.ft-wechat-link-ico { font-size: 22px; color: var(--gold); flex-shrink: 0; }
.ft-wechat-link-txt { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.55); text-transform: uppercase; }
.ft-wechat-link-txt strong { display: block; color: var(--white); font-weight: 500; margin-bottom: 2px; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 64px; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .06em; }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 11px; color: rgba(255,255,255,.25); transition: color .3s; }
.ft-legal a:hover { color: rgba(255,255,255,.6); }

@media(max-width:1100px){
  .s-grid, .hon-grid { grid-template-columns: 1fr; }
  .biens-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-column: span 2; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .apt-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; height: auto; }
  .apt-gallery > *:first-child { grid-row: span 1; grid-column: span 2; }
  .apt-content { grid-template-columns: 1fr; }
  .apt-sidebar { position: static; }
}
@media(max-width:900px){
  .stats { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 380px; }
  .split-img-ov { background: linear-gradient(to bottom, transparent 50%, var(--navy)); }
  .split-body { padding: 60px 40px; }
  .hist-grid { grid-template-columns: 1fr; }
  .hist-img { min-height: 360px; }
  .hist-body { padding: 72px 40px; }
  .founder { grid-template-columns: 1fr; }
  .founder-img { min-height: 420px; }
  .founder-body { padding: 60px 40px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .apt-header { grid-template-columns: 1fr; gap: 28px; padding: 48px 32px; }
  .apt-amenities { grid-template-columns: 1fr; }
  .apt-location-features { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px){
  #nav, #nav.scrolled { padding: 8px 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-logo-img { height: 58px; }
  #nav.scrolled .nav-logo-img { height: 50px; }
  .hero { padding: 0 24px 64px; min-height: 88vh; }
  .hero-scroll { display: none; }
  .hero-content .t-h1 { font-size: 38px; line-height: 1.05; }
  .sec, .sec-lg, .sec-sm { padding: 64px 22px; }
  .page-header, .article-header { padding: 120px 22px 56px; }
  .page-header .t-h1 { font-size: 32px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(even) { border-right: none; }
  .biens-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bien-info { padding: 14px 14px 18px; }
  .bien-name { font-size: 17px !important; }
  .bien-loc { font-size: 10px !important; }
  .bien-type { font-size: 11px !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }
  .journal-grid { grid-template-columns: 1fr; }
  .hist-vals { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 64px 22px; }
  .ft-top, .ft-bottom { padding-left: 22px; padding-right: 22px; }
  .ft-top { grid-template-columns: 1fr; gap: 36px; }
  .ft-logo-img { height: 88px; }
  .contact-form-wrap, .contact-info-wrap { padding: 56px 22px; }
  .contact-switch { grid-template-columns: 1fr; gap: 14px; }
  .article-body { padding: 56px 22px; }
  .apt-content { padding: 56px 22px; }
  .apt-location-map { padding: 42px 22px; }
  .apt-location-features { grid-template-columns: 1fr; }
  .apt-gallery { padding-top: 64px; }
}

/* ══ CONTACT SWITCH (dual path proprio/voyageur) ═══════════════════ */
.contact-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-switch-card { display: block; padding: 44px 40px; background: #fff; border: 1px solid #e8e5ee; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; text-decoration: none; color: var(--navy); }
.contact-switch-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(31,28,51,.1); border-color: var(--gold); }
.contact-switch-card.alt { background: var(--navy); border-color: var(--navy); color: var(--white); }
.contact-switch-card.alt:hover { background: var(--navy-deep); border-color: var(--gold); }
.contact-switch-eye { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.contact-switch-title { font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.2; margin-bottom: 14px; color: var(--navy); }
.contact-switch-card.alt .contact-switch-title { color: var(--white); }
.contact-switch-title em { font-style: italic; color: var(--gold); }
.contact-switch-desc { font-size: 14px; line-height: 1.7; color: var(--grey); margin-bottom: 24px; }
.contact-switch-card.alt .contact-switch-desc { color: rgba(255,255,255,.72); }
.contact-switch-cta { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 3px; display: inline-block; }
.contact-switch-card.alt .contact-switch-cta { color: var(--gold); }

/* ══ TRAVELER FORM ════════════════════════════════════════════════ */
.traveler-form { background: #fff; padding: 48px; border: 1px solid #e8e5ee; max-width: 760px; }

/* ══ LANG SWITCHER ═══════════════════════════════════════════════ */
.lang-link { font-size: 10px !important; letter-spacing: .15em !important; opacity: .7; }
.lang-link:hover { opacity: 1; }

/* ══ CONTACT SWITCH RESPONSIVE ═══════════════════════════════════ */
@media(max-width: 768px){
  .contact-switch { grid-template-columns: 1fr; }
  .contact-switch-card { padding: 32px 24px; }
  .contact-switch-title { font-size: 22px; }
  .traveler-form { padding: 28px 20px; }
}

/* ══ CONTACT — DUAL PATH SWITCH ══ */
.contact-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-switch-card { background: var(--white); border: 1px solid var(--mist); padding: 42px 44px; transition: all .4s var(--ease); text-decoration: none; display: block; }
.contact-switch-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(31,28,51,.1); }
.contact-switch-card.alt { background: var(--navy); border-color: var(--navy); }
.contact-switch-card.alt:hover { background: var(--navy-deep); border-color: var(--gold); }
.contact-switch-eye { font-size: 10px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.contact-switch-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.contact-switch-card.alt .contact-switch-title { color: var(--white); }
.contact-switch-title em { font-style: italic; color: var(--gold); }
.contact-switch-desc { font-size: 14px; line-height: 1.75; color: var(--grey); margin-bottom: 24px; }
.contact-switch-card.alt .contact-switch-desc { color: rgba(255,255,255,.78); }
.contact-switch-cta { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.contact-switch-card.alt .contact-switch-cta { color: var(--gold); }
.contact-switch-card:hover .contact-switch-cta { color: var(--gold); }

/* ══ TRAVELER FORM ══ */
.traveler-form { max-width: 720px; }
.traveler-form .form-group input, .traveler-form .form-group select, .traveler-form .form-group textarea { background: var(--white); }

/* ══ NAV LANGUAGE SWITCHER ══ */
.lang-link { font-size: 10px !important; font-weight: 600 !important; letter-spacing: .2em !important; opacity: .6; border: 1px solid rgba(31,28,51,.15); padding: 6px 10px !important; border-radius: 2px; transition: all .3s; }
.lang-link:hover { opacity: 1; border-color: var(--gold); color: var(--gold) !important; }

/* ══ HERO SPACING — compensate for taller nav ══ */
.hero-content { padding-top: 100px; }
@media(max-width:768px){
  .hero-content { padding-top: 80px; }
  .contact-switch { grid-template-columns: 1fr; gap: 16px; }
  .contact-switch-card { padding: 28px 24px; }
  .contact-switch-title { font-size: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info-wrap { padding: 48px 22px; }
  .traveler-form .form-group, .traveler-form div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* ══ LEGAL PAGES — add top padding for fixed nav ══ */
.legal-body { padding-top: 140px !important; }

/* ══ UNIFIED ICON SYSTEM ══════════════════════════════════════ */
.i-ico { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }
.i-ico .i-svg { width: 18px; height: 18px; color: var(--navy); opacity: .78; flex-shrink: 0; }

/* Footer contact items — bigger, aligned icons */
.ft-contact-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.5; }
.ft-contact-item .i-ico .i-svg { color: var(--gold); opacity: 1; width: 16px; height: 16px; }
.ft-contact-item a { color: rgba(255,255,255,.72); transition: color .3s; }
.ft-contact-item a:hover { color: var(--gold); }

/* Contact page info items — icons in circular gold frames */
.contact-info-item .contact-ico .i-ico .i-svg { width: 20px; height: 20px; color: var(--gold); opacity: 1; }

/* FAQ category titles — larger icons aligned */
.faq-cat-title .i-ico .i-svg { width: 22px; height: 22px; color: var(--gold); opacity: 1; margin-right: 10px; }

/* Article meta (date, read time, author) */
.article-meta .i-ico .i-svg { width: 14px; height: 14px; color: var(--gold); opacity: 1; margin-right: 4px; }

/* Service cards on courte-duree, moyenne-duree pages */
.adv-item .i-ico, .split-body .i-ico { flex-shrink: 0; }
.adv-item .i-ico .i-svg { width: 28px; height: 28px; color: var(--gold); opacity: 1; }

/* Check marks in benefit lists — gold, bigger */
.benefit-list .i-ico .i-svg,
[class*="list"] .i-ico .i-svg { width: 18px; height: 18px; color: var(--gold); opacity: 1; }

/* Apartment page specs */
.apt-specs .i-ico .i-svg, .apt-header .i-ico .i-svg { width: 16px; height: 16px; color: var(--gold); opacity: 1; }

/* Hero review stars & nav — keep clean */
.stat .i-ico .i-svg { width: 22px; height: 22px; }

/* ══ PARTNERS STRIP (logo marquee) ═════════════════════════════ */
.partners { padding: 56px 64px 48px; background: var(--smoke); border-top: 1px solid rgba(31,28,51,.06); border-bottom: 1px solid rgba(31,28,51,.06); overflow: hidden; }
.partners-eye { font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--grey); text-align: center; margin-bottom: 36px; }
.partners-track { display: flex; animation: pscroll 45s linear infinite; width: max-content; align-items: center; }
.partners-track:hover { animation-play-state: paused; }
.partners-item { flex-shrink: 0; padding: 0 44px; display: flex; align-items: center; justify-content: center; min-width: 170px; height: 56px; }
.partners-item span { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: .04em; color: var(--navy); opacity: .48; transition: opacity .3s; white-space: nowrap; }
.partners-item:hover span { opacity: 1; color: var(--gold); }
.partners-item.bold span { font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; }
.partners-item.italic span { font-style: italic; }
@keyframes pscroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media(max-width:768px) {
  .partners { padding: 40px 20px 32px; }
  .partners-item { padding: 0 28px; min-width: 130px; }
  .partners-item span { font-size: 18px; }
  .partners-item.bold span { font-size: 14px; }
}

/* ══ SERVICES CONCIERGERIE (luxury lifestyle page) ════════════ */
.concierge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.concierge-card { background: var(--white); border: 1px solid rgba(31,28,51,.08); padding: 40px 36px; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.concierge-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(31,28,51,.1); border-color: var(--gold); }
.concierge-card-ico { width: 48px; height: 48px; margin-bottom: 22px; color: var(--gold); }
.concierge-card-ico svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.25; fill: none; }
.concierge-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.concierge-card p { font-size: 14px; line-height: 1.7; color: var(--grey); margin-bottom: 0; }
@media(max-width:980px) { .concierge-grid { grid-template-columns: 1fr 1fr; gap: 20px; } .concierge-card { padding: 30px 26px; } }
@media(max-width:640px) { .concierge-grid { grid-template-columns: 1fr; } }

/* ══ APARTMENT MAP (Highstay style) ════════════════════════════ */
.apt-map-section { margin-top: 60px; padding: 60px 64px 0; border-top: 1px solid rgba(31,28,51,.08); max-width: 1200px; }
.apt-map-heading { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.apt-map-address { font-size: 14px; color: var(--grey); margin-bottom: 32px; letter-spacing: .04em; }
.apt-map-wrap { position: relative; width: 100%; max-width: 720px; aspect-ratio: 21 / 9; background: #ecebe6; overflow: hidden; border: 1px solid rgba(31,28,51,.08); border-radius: 4px; }
.apt-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(25%) contrast(1.05); }
.apt-map-wrap.blurred iframe { filter: grayscale(35%) contrast(1.05) blur(6px); }

/* Apartment services section (concierge inside apartment) — proper padding */
.apt-services-section { padding: 70px 64px; background: var(--smoke); margin-top: 0; }
.apt-services-section > .narrow { max-width: 1100px; margin: 0 auto; }
@media(max-width:768px) {
  .apt-services-section { padding: 48px 22px; }
  .apt-map-section { padding: 48px 22px 0; margin-top: 30px; }
  .apt-map-wrap { aspect-ratio: 16 / 10; }
}
.apt-map-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(201, 169, 110, .18); border: 2px solid var(--gold); pointer-events: none; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.apt-map-marker::before { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.apt-map-note { font-size: 12px; color: var(--grey); margin-top: 14px; font-style: italic; }

/* ══ PRICE BADGE on bien cards ═════════════════════════════════ */
.bien-price { display: block; font-size: 12px; color: var(--grey); margin-top: 8px; letter-spacing: .04em; }
.bien-price strong { color: var(--navy); font-weight: 500; }
.bien-info { display: flex; flex-direction: column; }

/* Apartment page — "from X€/month" */
.apt-price-from { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(31,28,51,.08); font-size: 13px; color: var(--grey); letter-spacing: .04em; }
.apt-price-from strong { font-family: var(--serif); font-size: 24px; color: var(--navy); font-weight: 400; }
.apt-price-from small { font-size: 12px; opacity: .7; margin-left: 6px; }

/* ══ NAV — slightly taller for logo breathing room ═════════════ */
#nav { padding-top: 22px; padding-bottom: 22px; }
#nav.scrolled { padding-top: 14px; padding-bottom: 14px; }


/* ══ Force GOLD checkmarks in dark sections ════════════════════ */
[style*="color:var(--gold)"] .i-svg,
[style*="color: var(--gold)"] .i-svg { color: var(--gold) !important; opacity: 1 !important; }

/* ══ Concierge page — photo bands between sections ═════════════ */
.concierge-photo-band { width: 100%; height: 360px; overflow: hidden; margin: 0; position: relative; }
.concierge-photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concierge-photo-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,28,51,0) 0%, rgba(31,28,51,.15) 100%); pointer-events: none; }
@media(max-width:768px) { .concierge-photo-band { height: 220px; } }

/* ══ Concierge page — hero image inside a section ══════════════ */
.concierge-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch; margin: 0 -64px; }
.concierge-feature-img { position: relative; min-height: 460px; background: var(--smoke); overflow: hidden; }
.concierge-feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.concierge-feature-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.concierge-feature.alt { direction: rtl; }
.concierge-feature.alt > * { direction: ltr; }
@media(max-width:880px) {
  .concierge-feature { grid-template-columns: 1fr; margin: 0 -22px; }
  .concierge-feature-img { min-height: 280px; }
  .concierge-feature-content { padding: 50px 22px; }
}
