/* ====== Yère — Maison de charme ====== */
:root{
  --bg: #f6f2ea;
  --surface: rgba(255,255,255,.78);
  --surface-strong: rgba(255,255,255,.92);
  --text: #1e1e1e;
  --muted: #5c5c5c;
  --stone: #d7c8b2;
  --sage: #6e7f68;
  --charcoal: #2d2f2f;
  --shadow: 0 18px 60px rgba(0,0,0,.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:#fff; padding:10px 12px; border-radius:10px;
  box-shadow: var(--shadow);
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(246,242,234,.72);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:baseline; gap:10px;
}
.brand .logo{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing:.5px;
  font-weight:700;
  font-size:20px;
}
.brand .tag{
  font-size:12px;
  color:var(--muted);
  display:none;
}

.logo img{
  height:36px;
  width:auto;
  display:block;
}

.footer-logo img{
  height:34px;
  width:auto;
  display:block;
  margin-bottom:6px;
  opacity:.92;
  transition: opacity .18s ease, transform .18s ease;
}
.footer-logo a:hover img{
  opacity:1;
  transform: translateY(-1px);
}

@media (min-width:900px){
  .brand .tag{ display:inline; }
}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  color:rgba(0,0,0,.82);
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.nav a:hover{ background: rgba(0,0,0,.05); }

.lang{
  display:flex; gap:6px; align-items:center;
  padding:6px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  border-radius:999px;
}
.lang a{
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  color:rgba(0,0,0,.75);
}
.lang a[aria-current="page"]{
  background: rgba(110,127,104,.16);
  color: var(--charcoal);
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.2px;
  border:1px solid rgba(0,0,0,.15);
  background: #2a2a2a;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  background: #1f1f1f;
}
.cta.secondary{
  background: rgba(255,255,255,.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}

.cta.secondary:hover{
  background: rgba(255,255,255,.25);
}

.header .cta{
  background: #1e1e1e;
  color: #ffffff;
  border-color: rgba(0,0,0,.3);
}

.header .cta:hover{
  background: #000;
}

.menu-btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.6);
}
.menu-btn svg{ width:22px; height:22px; }

@media (max-width:960px){
  .nav{ display:none; }
}
@media (min-width:961px){
  .menu-btn{ display:none; }
}

.drawer{
  display:none;
  position:fixed; inset:0;
  background: rgba(0,0,0,.45);
  z-index:80;
}
.drawer.open{ display:block; }
.drawer-panel{
  position:absolute; right:0; top:0; bottom:0;
  width:min(360px, 86vw);
  background: rgba(246,242,234,.98);
  border-left: 1px solid rgba(0,0,0,.08);
  padding:16px;
  box-shadow: var(--shadow);
}
.drawer-top{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:10px;
}
.drawer a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  margin:6px 0;
  background: rgba(255,255,255,.6);
  border:1px solid rgba(0,0,0,.06);
}
.drawer a:hover{ background: rgba(255,255,255,.8); }

.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:flex-end;
  padding: 36px 0 56px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.40) 35%,
    rgba(0,0,0,.18) 65%,
    rgba(0,0,0,.05) 100%
  );
  z-index:1;
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity .8s ease;
}
.hero-media img.active{ opacity:1; }
.hero-content{
  position:relative;
  z-index:2;
  width:min(720px, 100%);
}

.hero-certifications{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.stars{
  color: #d4af37;
  font-size: 1.25em;
  letter-spacing: 2px;
  vertical-align: -2px;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.keys{
  filter: saturate(1.2);
}

.cert{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  font-size:14px;
  font-weight:600;
  backdrop-filter: blur(8px);
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color: rgba(255,255,255,.90);
  font-size:13px;
  letter-spacing:.12em;
  text-transform: uppercase;
}
.kicker .dot{
  width:6px; height:6px; border-radius:999px;
  background: rgba(255,255,255,.75);
}
.hero h1{
  margin:12px 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 8.6vw, 40px);
  line-height:1.05;
  color:#fff;
  letter-spacing:.2px;
}
.hero p{
  margin:0 0 18px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.6vw, 15px);
  max-width: 62ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  font-size:13px;
}

.section{
  padding: 50px 0;
}
.section.alt{
  background: rgba(255,255,255,.45);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.section h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.3vw, 34px);
  margin: 0 0 12px;
  letter-spacing:.2px;
}
.lead{
  color: var(--muted);
  margin:0 0 22px;
  max-width: 70ch;
}

.grid{
  display:grid;
  gap:14px;
}
.grid.two{
  grid-template-columns: 1fr;
}
@media (min-width:900px){
  .grid.two{ grid-template-columns: 1.1fr .9fr; }
}

.card{
  background: var(--surface);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  overflow:hidden;
}
.card.pad{ padding:22px; }

.photo{
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,.06);
}
.photo img{
  width:100%; height:100%;
  object-fit:cover;
}

.list{
  margin:0; padding-left:18px;
  color: var(--muted);
}
.pills{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:16px;
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(110,127,104,.12);
  border: 1px solid rgba(110,127,104,.18);
  color: var(--charcoal);
  font-size:13px;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (min-width:900px){
  .gallery{ grid-template-columns: repeat(3, 1fr); gap:14px; }
}
.g-item{
  border-radius: var(--radius-sm);
  overflow:hidden;
  background: rgba(0,0,0,.06);
  cursor:pointer;
  position:relative;
}
.g-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .35s ease;
}
@media (hover:hover){
  .g-item:hover img{ transform: scale(1.035); }
}

.nearby{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width:900px){
  .nearby{ grid-template-columns: repeat(4, 1fr); }
}
.n-card{
  padding:18px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  transition: transform .18s ease;
}
@media (hover:hover){
  .n-card:hover{ transform: translateY(-2px); }
}
.n-card .time{
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--muted);
}
.n-card .title{
  font-weight:700;
  margin:8px 0 6px;
}
.n-card p{
  margin:0;
  color: var(--muted);
  font-size:14px;
}

/* Form (preview CTA area) */
.form-preview{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:flex-end;
  margin-top:14px;
}
.input{
  display:flex; flex-direction:column;
  gap:6px;
  min-width: 170px;
}
.input label{
  font-size:12px;
  color: var(--muted);
}
.input-submit .cta{
  width:100%;
  min-height:49px;
}
.input input{
  padding:12px 12px;
  border-radius:12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.8);
  font: inherit;
}

.footer{
  padding: 44px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.74);
}
.footer .cols{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width:900px){
  .footer .cols{ grid-template-columns: 2fr 1fr 1fr; }
}
.small{
  font-size: 13px;
  color: rgba(0,0,0,.62);
}

.lightbox{
  display:none;
  position:fixed; inset:0;
  z-index:120;
  background: rgba(0,0,0,.82);
  padding: 24px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  margin:auto;
  width:min(1060px, 96vw);
  max-height: 86vh;
  position:relative;
}
.lightbox img{
  width:100%; height:auto;
  border-radius: 18px;
}
.lightbox button{
  position:absolute;
  top:-8px; right:-8px;
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  backdrop-filter: blur(12px);
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform: translateY(0);
}

.mobile-bar{
  position:fixed;
  left:12px; right:12px; bottom:12px;
  z-index:90;
  display:flex;
  gap:10px;
  padding:10px;
  border-radius: 18px;
  background: rgba(246,242,234,.88);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}
.mobile-bar a{
  flex:1;
  text-align:center;
  padding:12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.74);
  font-weight:600;
  font-size:14px;
}
.mobile-bar a.primary{
  background: var(--charcoal);
  color:#fff;
  border-color: rgba(45,47,47,.4);
}

.mobile-bar button{
  flex:1;
  text-align:center;
  padding:12px 10px;
  border-radius:14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.74);
  font: inherit;
  font-weight:600;
  font-size:14px;
  color: inherit;
  cursor: pointer;
}

@media (min-width:900px){
  .mobile-bar{ display:none; }
}

@media (max-width: 900px){
  body{
    padding-bottom: 96px;
  }
}

.map-card{
  position:relative;
  display:block;
  border-radius: var(--radius);
  overflow:hidden;
}
.map-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(.95) contrast(1.05);
}
.map-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  font-weight:600;
  font-size:14px;
}

/* ===== Hero mobile — ratio plus "cinéma" (premium) ===== */
@media (max-width: 700px){

	.hero{
	  min-height: 42vh;
	  padding: 16px 0 18px;
	}

	.hero-content{
	max-width: 100%;
	}

	.hero-media img{
	object-position: center 35%;
	}

	.hero-actions{
	display:none;
	}

	.hero-actions .cta[type="button"]{
	  appearance: none;
	  border: none;
	}

	.hero-certifications{
	  display:grid;
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	  gap:8px;
	  margin-top:8px;
	}
	.hero-certifications .cert{
	  display:flex;
	  justify-content:center;
	  align-items:center;
	  gap:6px;
	  padding:6px 8px;
	  border-radius:999px;
	  background: rgba(255,255,255,.14);
	  border: 1px solid rgba(255,255,255,.18);
	  color: rgba(255,255,255,.92);
	  backdrop-filter: blur(10px);
	  font-size:10px;
	  white-space:nowrap;
	}

	.hero-certifications .stars,
	.hero-certifications .keys{
	font-size:10px;
	line-height:1;
	}

	.hero h1{
	font-size: clamp(20px, 7vw, 28px);
	}

	.hero p{
	font-size:12px;
	line-height:1.45;
	}

	.hero-extra{
	display:none;
	}

	.hero-badges{
	display:grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap:6px;
	margin-top:10px;
	}
	.hero-badges .badge:nth-child(n+4){
	  display:none;
	}
  .hero-badges .badge{
    justify-content:center;
    padding:6px 8px;
    font-size:12px;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

.share-menu{
  position: absolute;
  z-index: 200;
  min-width: 260px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}

.share-menu a,
.share-menu button{
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  cursor: pointer;
}

.share-menu a:hover,
.share-menu button:hover{
  background: rgba(0,0,0,.05);
}