/* ============================================================
   YOURPLACETOBE — Luxury Property Concierge, Da Nang
   Feuille de style principale
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --ivory:      #FBF8F2;
  --ivory-warm: #F5EFE4;
  --sand:       #EFE7D9;
  --sand-deep:  #E0D2BA;
  --ink:        #141815;
  --ink-soft:   #2A302B;
  --jade:       #14251F;
  --jade-mid:   #1E3A31;
  --jade-light: #2F4F43;
  --gold:       #B8945A;
  --gold-light: #E4C287;
  --muted:      #6E6A5F;
  --line:       rgba(20, 24, 21, .12);
  --line-light: rgba(255, 255, 255, .16);

  --font-display: 'Cormorant Garamond', 'Noto Serif SC', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1280px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --sect: clamp(5rem, 10vw, 9rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-sm: 0 2px 12px rgba(20, 24, 21, .06);
  --shadow-md: 0 18px 50px -22px rgba(20, 24, 21, .30);
  --shadow-lg: 0 40px 90px -40px rgba(20, 24, 21, .45);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.005em;
  margin: 0;
}
h1 { font-size: clamp(2.9rem, 7.2vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p  { margin: 0 0 1.15em; }

::selection { background: var(--gold); color: #fff; }

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

/* Langues CJK : hauteur de ligne et graisse ajustées */
html[lang^="zh"] body { font-weight: 400; line-height: 1.9; letter-spacing: .02em; }
html[lang^="zh"] h1, html[lang^="zh"] h2, html[lang^="zh"] h3 { font-weight: 400; line-height: 1.32; }
html[lang="vi"] h1, html[lang="vi"] h2 { line-height: 1.22; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--ivory { background: var(--ivory); }
.section--sand  { background: var(--ivory-warm); }
.section--dark  { background: var(--jade); color: var(--ivory); }
.section--dark h2, .section--dark h3 { color: var(--ivory); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- 4. Éléments de marque ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.25rem;
}
.eyebrow::before { content: ''; width: 2.25rem; height: 1px; background: currentColor; opacity: .6; }
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--gold-light); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted); max-width: 62ch;
}
.section--dark .lead { color: rgba(251, 248, 242, .74); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.section--dark .rule { background: var(--line-light); }

.head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head--center .lead { margin-inline: auto; }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.05rem 2.1rem;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .45s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold  { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: #A6834B; border-color: #A6834B; }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn--dark  { background: var(--jade); color: var(--ivory); border-color: var(--jade); }
.btn--dark:hover { background: var(--jade-light); border-color: var(--jade-light); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); }
.btn--wide { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); padding-bottom: .3rem;
  border-bottom: 1px solid rgba(184, 148, 90, .35);
  transition: gap .4s var(--ease), border-color .4s var(--ease);
}
.link-arrow:hover { gap: 1rem; border-color: var(--gold); }
.link-arrow svg { width: 15px; height: 15px; }

/* ---------- 5. En-tête ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 84px;
  transition: height .5s var(--ease);
}
.header.is-stuck {
  background: rgba(251, 248, 242, .94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header.is-stuck .header__inner { height: 70px; }

.brand { display: flex; align-items: center; gap: .85rem; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .45); border-radius: 3px;
  font-family: var(--font-display); font-size: 1.15rem; color: #fff;
  transition: border-color .5s var(--ease), color .5s var(--ease);
}
.brand__text { line-height: 1.1; }
.brand__name {
  display: block; font-family: var(--font-display);
  font-size: 1.18rem; letter-spacing: .26em; color: #fff;
  transition: color .5s var(--ease);
}
.brand__sub {
  display: block; font-size: .58rem; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(255, 255, 255, .62);
  white-space: nowrap; transition: color .5s var(--ease);
}
@media (max-width: 520px) { .brand__sub { display: none; } }
.header.is-stuck .brand__mark { border-color: var(--gold); color: var(--gold); }
.header.is-stuck .brand__name { color: var(--ink); }
.header.is-stuck .brand__sub  { color: var(--muted); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav__link {
  position: relative; font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255, 255, 255, .86);
  padding-block: .4rem; transition: color .4s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .45s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.header.is-stuck .nav__link { color: var(--ink-soft); }
@media (max-width: 1080px) { .nav { display: none; } }

.header__actions { display: flex; align-items: center; gap: 1rem; }

/* Sélecteur de langue */
.lang {
  display: flex; align-items: center;
  border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px;
  padding: 3px; transition: border-color .5s var(--ease);
}
.header.is-stuck .lang { border-color: var(--line); }
.lang__item {
  display: inline-block; white-space: nowrap;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .68rem; border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.lang__item:hover { color: #fff; }
.lang__item[aria-current="true"] { background: var(--gold); color: #fff; }
.header.is-stuck .lang__item { color: var(--muted); }
.header.is-stuck .lang__item:hover { color: var(--ink); }
.header.is-stuck .lang__item[aria-current="true"] { color: #fff; }

.header__cta { padding: .82rem 1.4rem; font-size: .7rem; white-space: nowrap; letter-spacing: .16em; }
@media (max-width: 1279px) and (min-width: 1081px) { .header__cta { display: none; } }
@media (max-width: 860px) { .header__cta { display: none; } }

/* Compactage de l'en-tête sur petits écrans */
@media (max-width: 620px) {
  .header__inner { gap: .6rem; }
  .header__actions { gap: .5rem; }
  .brand { min-width: 0; }
  .brand__name { font-size: .98rem; letter-spacing: .16em; }
  .lang { padding: 2px; }
  .lang__item { padding: .3rem .4rem; font-size: .62rem; letter-spacing: .04em; }
}
@media (max-width: 380px) {
  .brand__mark { display: none; }
  .lang__item { padding: .28rem .32rem; }
}

/* Burger */
.burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255, 255, 255, .32); border-radius: 3px;
  transition: border-color .5s var(--ease);
}
.header.is-stuck .burger { border-color: var(--line); }
.burger span {
  display: block; position: relative; width: 18px; height: 1px; background: #fff;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1px; background: inherit;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.header.is-stuck .burger span { background: var(--ink); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); background: var(--ink); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); background: var(--ink); }
@media (max-width: 1080px) { .burger { display: inline-flex; } }

/* Panneau mobile */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ivory);
  padding: 110px var(--gut) 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__link {
  display: block; padding: 1rem 0;
  font-family: var(--font-display); font-size: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.drawer__foot { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.drawer__langs { display: flex; flex-wrap: wrap; gap: .5rem; }
.drawer__langs a {
  padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
.drawer__langs a[aria-current="true"] { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: 9rem clamp(3rem, 7vw, 5.5rem);
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 14, 12, .86) 0%, rgba(10, 14, 12, .30) 46%, rgba(10, 14, 12, .48) 100%),
    linear-gradient(to right, rgba(10, 14, 12, .55) 0%, rgba(10, 14, 12, 0) 62%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow {
  font-size: .7rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero__eyebrow::before { content: ''; width: 3rem; height: 1px; background: currentColor; }
.hero__title { max-width: 16ch; text-shadow: 0 2px 40px rgba(0, 0, 0, .35); }
.hero__sub {
  margin-top: 1.6rem; max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(255, 255, 255, .86); font-weight: 300;
}
.hero__actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; right: var(--gut); bottom: clamp(3rem, 7vw, 5.5rem);
  display: flex; align-items: center; gap: .8rem;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero__scroll i { display: block; width: 46px; height: 1px; background: currentColor; animation: slide 2.6s var(--ease) infinite; }
@media (max-width: 900px) { .hero__scroll { display: none; } }
@keyframes slide { 0%, 100% { transform: scaleX(.4); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

/* ---------- 7. Signature / baseline ---------- */
.baseline { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .baseline { grid-template-columns: 1fr; } }
.baseline__title { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.baseline__title em { font-style: normal; color: var(--gold); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ivory); padding: clamp(1.6rem, 3vw, 2.4rem) 1.25rem; text-align: center; }
.section--sand .stat { background: var(--ivory-warm); }
.stat__value { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); color: var(--gold); line-height: 1; }
.stat__label { margin-top: .7rem; font-size: .74rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

/* ---------- 8. Services ---------- */
.service {
  position: relative; background: var(--ivory);
  border: 1px solid var(--line); padding: clamp(1.9rem, 3vw, 2.75rem);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(184, 148, 90, .5); }
.service__n {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--sand-deep); transition: color .55s var(--ease);
}
.service:hover .service__n { color: var(--gold); }
.service__title { font-size: clamp(1.28rem, 1.8vw, 1.6rem); }
.service__lead { color: var(--gold); font-size: .94rem; letter-spacing: .02em; margin: 0; }
.service__desc { color: var(--muted); font-size: .96rem; margin: 0; }
.service__list { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: .6rem; }
.service__list li {
  position: relative; padding-left: 1.5rem; font-size: .92rem; color: var(--ink-soft);
}
.service__list li::before {
  content: ''; position: absolute; left: 0; top: .68em;
  width: 8px; height: 1px; background: var(--gold);
}

/* ---------- 9. Services aux voyageurs ---------- */
.section--textured::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 45% at 15% 0%, rgba(184, 148, 90, .16), transparent 70%),
    radial-gradient(50% 40% at 85% 100%, rgba(47, 79, 67, .55), transparent 70%);
}
.section--textured > * { position: relative; z-index: 1; }

.amenities {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
}
@media (max-width: 940px) { .amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .amenities { grid-template-columns: 1fr; } }

.amenity {
  position: relative; background: var(--jade);
  padding: clamp(1.75rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: .9rem;
  transition: background .55s var(--ease);
}
.amenity::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid transparent; transition: border-color .55s var(--ease);
}
.amenity:hover { background: #1A2F27; }
.amenity:hover::after { border-color: rgba(184, 148, 90, .55); }
.amenity__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid rgba(228, 194, 135, .32); border-radius: 50%;
  color: var(--gold-light);
  transition: border-color .55s var(--ease), background .55s var(--ease), transform .55s var(--ease);
}
.amenity__icon svg { width: 28px; height: 28px; }
.amenity:hover .amenity__icon {
  border-color: var(--gold-light); background: rgba(228, 194, 135, .10);
  transform: translateY(-2px);
}
.amenity__title { font-size: clamp(1.15rem, 1.6vw, 1.38rem); }
.amenity__desc { margin: 0; font-size: .93rem; color: rgba(251, 248, 242, .70); }

.guest-foot {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .guest-foot { grid-template-columns: 1fr; } }
.pull { margin: 0; position: relative; padding-left: clamp(2.5rem, 5vw, 4rem); }
.pull::before {
  content: '“'; position: absolute; left: 0; top: -.25em;
  font-family: var(--font-display); font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1; color: var(--gold); opacity: .55;
}
.pull blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.34; color: var(--ivory);
}
.guest-foot__note { color: rgba(251, 248, 242, .70); font-size: .96rem; }

/* ---------- 10. Pourquoi nous ---------- */
.pillar { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.pillar__n { font-size: .72rem; letter-spacing: .26em; color: var(--gold); }
.pillar__title { margin: .9rem 0 .8rem; font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.pillar__quote {
  font-family: var(--font-display); font-size: 1.18rem; font-style: italic;
  color: var(--jade-light); margin: 0 0 .8rem;
}
.pillar__desc { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- 11. Clients ---------- */
.client {
  background: var(--ivory); border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1rem;
  transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease);
}
.client:hover { background: var(--jade); color: var(--ivory); transform: translateY(-6px); }
.client:hover .client__desc { color: rgba(251, 248, 242, .78); }
.client:hover .client__list li { color: rgba(251, 248, 242, .82); border-color: var(--line-light); }
.client__icon { width: 34px; height: 34px; color: var(--gold); }
.client__title { font-size: clamp(1.22rem, 1.7vw, 1.5rem); }
.client__desc { color: var(--muted); font-size: .96rem; margin: 0; transition: color .5s var(--ease); }
.client__list { list-style: none; margin: auto 0 0; padding: 0; }
.client__list li {
  padding: .7rem 0; border-top: 1px solid var(--line);
  font-size: .88rem; letter-spacing: .02em; transition: color .5s var(--ease), border-color .5s var(--ease);
}

/* ---------- 12. Processus ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 88px 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.3rem) 0; border-top: 1px solid var(--line);
  transition: background .5s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-family: var(--font-display); font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1; color: var(--sand-deep); transition: color .5s var(--ease);
}
.step:hover .step__n { color: var(--gold); }
.step__body h3 { margin-bottom: .5rem; }
.step__body p { margin: 0; color: var(--muted); max-width: 62ch; }
@media (max-width: 620px) { .step { grid-template-columns: 60px 1fr; } }

/* ---------- 13. Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); }
.tile { position: relative; overflow: hidden; border-radius: 2px; background: var(--sand); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 12, .78), rgba(10, 14, 12, 0) 55%);
  opacity: .85; transition: opacity .5s var(--ease);
}
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.2rem 1.4rem; color: #fff;
  font-size: .82rem; letter-spacing: .06em;
  transform: translateY(6px); opacity: .92;
  transition: transform .5s var(--ease);
}
.tile:hover figcaption { transform: none; }
.tile--a { grid-column: span 4; aspect-ratio: 16 / 10; }
.tile--b { grid-column: span 2; aspect-ratio: 4 / 5; }
.tile--c { grid-column: span 2; aspect-ratio: 1; }
.tile--d { grid-column: span 2; aspect-ratio: 1; }
.tile--e { grid-column: span 2; aspect-ratio: 1; }
.tile--f { grid-column: span 6; aspect-ratio: 21 / 7; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .tile--a, .tile--f { grid-column: span 2 !important; }
}

/* ---------- 14. À propos ---------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 960px) { .about { grid-template-columns: 1fr; } }
.about__media { margin: 0; }
.about__media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: contain; background: var(--ivory-warm); border-radius: 2px; box-shadow: var(--shadow-md); }
.about__media figcaption { margin-top: .9rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-align: center; }
.about__lead {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1.4; color: var(--ink); margin-bottom: 1.6rem;
}
.about__body p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; margin-top: 2.5rem; }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }
.value { padding-top: 1.1rem; border-top: 1px solid var(--line); }
.value h4 { font-size: 1.12rem; margin-bottom: .35rem; }
.value p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- 15. Blog ---------- */
.post-card {
  display: flex; flex-direction: column;
  background: var(--ivory); border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: clamp(1.4rem, 2.4vw, 2rem); display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.post-card__meta {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.post-card__tag { color: var(--gold); }
.post-card__title { font-size: clamp(1.22rem, 1.7vw, 1.5rem); }
.post-card__excerpt { font-size: .93rem; color: var(--muted); margin: 0; }
.post-card__foot { margin-top: auto; padding-top: .6rem; }

/* Article */
.article-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; color: #fff; padding-block: 8rem 3.5rem; overflow: hidden; }
.article-hero__media { position: absolute; inset: 0; }
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 12, .9), rgba(10, 14, 12, .35));
}
.article-hero .wrap { position: relative; z-index: 2; }
.article-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); max-width: 22ch; }
.article-hero__meta {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .72);
}
.prose { max-width: 72ch; margin-inline: auto; }
.prose > p:first-of-type { font-size: 1.12rem; color: var(--ink-soft); }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 2.6rem 0 1rem; }
.prose p { color: var(--muted); }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4rem; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--muted); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .78em; width: 9px; height: 1px; background: var(--gold); }

/* ---------- 16. Contact ---------- */
.contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 960px) { .contact { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .45rem; }
.field label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1rem;
  background: var(--ivory); color: var(--ink);
  border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 300;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.section--dark .field input, .section--dark .field select, .section--dark .field textarea {
  background: rgba(255, 255, 255, .05); border-color: var(--line-light); color: var(--ivory);
}
.section--dark .field label { color: rgba(251, 248, 242, .6); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 148px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.section--dark .field select option { color: #141815; }
.consent { display: flex; gap: .8rem; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.section--dark .consent { color: rgba(251, 248, 242, .62); }
.consent input { margin-top: .32rem; accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.form__status { font-size: .9rem; min-height: 1.4em; }
.form__status.is-ok  { color: var(--gold-light); }
.form__status.is-err { color: #E08D7A; }

.info { display: grid; gap: 1.6rem; }
.info__block { padding-top: 1.2rem; border-top: 1px solid var(--line-light); }
.info__label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .5rem; }
.info__value { font-size: 1.02rem; color: var(--ivory); }
.info__value a:hover { color: var(--gold-light); }

.map { margin-top: clamp(2.5rem, 5vw, 4rem); border: 1px solid var(--line-light); border-radius: 2px; overflow: hidden; }
.map iframe { width: 100%; height: clamp(320px, 42vw, 480px); border: 0; display: block; filter: grayscale(1) contrast(1.05) brightness(.94); }

/* ---------- 17. Newsletter ---------- */
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter__form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1 1 240px; padding: 1.05rem 1.1rem;
  background: transparent; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.newsletter__form input:focus { outline: none; border-color: var(--gold); }
.newsletter__note { margin: .9rem 0 0; font-size: .78rem; color: var(--muted); }

/* ---------- 18. Pied de page ---------- */
.footer { background: var(--jade); color: rgba(251, 248, 242, .72); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a:hover { color: var(--gold-light); }
.footer__tagline { font-family: var(--font-display); font-size: 1.35rem; color: var(--ivory); margin: 1.2rem 0 .8rem; line-height: 1.4; }
.footer__descr { font-size: .88rem; max-width: 42ch; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .78rem;
}
.footer__social { display: flex; gap: 1rem; }
.footer__social a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 999px; transition: border-color .4s var(--ease), color .4s var(--ease); }
.footer__social a:hover { border-color: var(--gold-light); }
.footer__social svg { width: 15px; height: 15px; }

/* ---------- 19. WhatsApp ---------- */
.wa {
  position: fixed; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem); z-index: 90;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .85rem 1.15rem; border-radius: 999px;
  background: #128C7E; color: #fff;
  font-size: .78rem; letter-spacing: .1em;
  box-shadow: 0 14px 34px -12px rgba(18, 140, 126, .8);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.wa:hover { transform: translateY(-3px); background: #0F7A6D; }
.wa svg { width: 20px; height: 20px; flex: none; }
.wa__label { white-space: nowrap; }
@media (max-width: 620px) { .wa__label { display: none; } .wa { padding: 1rem; } }

/* ---------- 20. Animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.reveal[data-delay="5"] { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service:hover, .post-card:hover, .client:hover { transform: none; }
  .hero__scroll i { animation: none; }
}

/* ---------- 21. Utilitaires ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--jade); color: #fff; padding: .8rem 1.2rem; border-radius: 2px;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   22. Finitions — rythme, matière et détails
   ============================================================ */

/* Ancres : compenser l'en-tête fixe */
section[id] { scroll-margin-top: 92px; }

/* Filet doré sous les titres centrés */
.head--center h2::after {
  content: ''; display: block; width: 54px; height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Liseré doré en tête des sections sombres */
.section--dark { border-top: 1px solid rgba(184, 148, 90, .22); }
.section--dark + .section--dark { border-top: 0; }

/* Grain discret sur les fonds clairs */
.section--sand::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(184, 148, 90, .12) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(75% 60% at 50% 0%, #000, transparent 75%);
          mask-image: radial-gradient(75% 60% at 50% 0%, #000, transparent 75%);
}
.section--sand > * { position: relative; z-index: 1; }

/* Cartes services : trait doré au survol */
.service { overflow: hidden; }
.service::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.service:hover::before { transform: scaleX(1); }
.service__lead { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; }

/* Chiffres clés */
.stat { position: relative; transition: background .5s var(--ease); }
.stat::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transform: translateX(-50%);
  transition: width .5s var(--ease);
}
.stat:hover::after { width: 46px; }
.stat__value { letter-spacing: -.01em; }

/* Piliers : numéro en filigrane */
.pillar { transition: border-color .5s var(--ease); }
.pillar:hover { border-top-color: var(--gold); }
.pillar__n {
  display: inline-block; padding-bottom: .35rem;
  border-bottom: 1px solid rgba(184, 148, 90, .3);
}

/* Étapes du processus */
.step:hover { background: linear-gradient(to right, rgba(184, 148, 90, .07), transparent 60%); }
.step__n { transition: color .5s var(--ease), transform .5s var(--ease); }
.step:hover .step__n { transform: translateX(4px); }

/* Galerie : filet doré au-dessus de la légende */
.tile figcaption::before {
  content: ''; display: block; width: 26px; height: 1px;
  background: var(--gold-light); margin-bottom: .7rem;
  transition: width .5s var(--ease);
}
.tile:hover figcaption::before { width: 54px; }

/* Journal : étiquette de rubrique */
.post-card__tag {
  padding: .3rem .7rem; border: 1px solid rgba(184, 148, 90, .35); border-radius: 999px;
  font-size: .64rem; letter-spacing: .14em;
}
.post-card__title a { transition: color .4s var(--ease); }
.post-card:hover .post-card__title a { color: var(--gold); }

/* Clients : icône adoucie */
.client__icon { transition: color .5s var(--ease), transform .5s var(--ease); }
.client:hover .client__icon { color: var(--gold-light); transform: translateY(-2px); }

/* Hero : lisibilité et respiration */
.hero__title { letter-spacing: -.015em; }
.hero__sub { text-shadow: 0 1px 24px rgba(0, 0, 0, .35); }
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 3;
  background: linear-gradient(to right, transparent, rgba(184, 148, 90, .55), transparent);
}

/* Formulaire : confort de saisie */
.field input::placeholder, .field textarea::placeholder { color: rgba(110, 106, 95, .7); }
.section--dark .field input::placeholder { color: rgba(251, 248, 242, .4); }
.btn[disabled] { opacity: .55; cursor: progress; }

/* Barre de défilement */
@supports (scrollbar-color: auto) {
  html { scrollbar-color: var(--sand-deep) var(--ivory); scrollbar-width: thin; }
}

/* Impression */
@media print {
  .header, .drawer, .wa, .hero__scroll, .map, .newsletter { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; }
}
