:root{
  --bg:#0b0b0c; --fg:#f4f4f4; --muted:#a7a7ad; --accent:#e6c08b; --card:#141418;
  --pill:#2a2a2f; --btn:#e6c08b; --btnfg:#19191c;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--fg);line-height:1.55}
a{color:var(--accent);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:28px}
.site-header{position:sticky;top:0;display:flex;justify-content:space-between;align-items:center;padding:12px 24px;background:rgba(11,11,12,.7);backdrop-filter:blur(6px);z-index:10}
.site-header .logo{font-weight:700;letter-spacing:.5px}
.site-header nav a{margin-left:16px;color:#ddd}
.hero{position:relative;height:70vh;min-height:420px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.55)}
.hero-text{position:relative;text-align:center;padding:0 16px}
.hero-text h1{font-size:40px;margin:0 0 8px}
.hero .btn{margin-top:12px}
.intro,.galleries,.videos,.private,.contact{background:var(--card);margin:24px; border-radius:16px}
h2{font-size:28px;margin:0 0 8px}
h3{margin:8px 0 6px;font-size:20px}
.tagline{color:var(--muted);margin:0 0 14px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.grid img{width:100%;height:100%;object-fit:cover;border-radius:10px}
.pill{background:var(--pill);color:#bbb;font-size:12px;padding:3px 8px;border-radius:999px;margin-left:8px}
.gallery-block{background:#15151a;border:1px solid #1f1f24;padding:16px;border-radius:14px;margin-bottom:16px}
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.video-card{background:#15151a;border:1px solid #1f1f24;border-radius:12px;padding:8px}
.video-card video{width:100%;border-radius:8px;background:#000}
.caption{font-size:14px;color:#bbb;margin-top:6px}
.cta-center{display:flex;justify-content:center;margin:12px 0}
.btn{display:inline-block;background:var(--btn);color:var(--btnfg);padding:10px 16px;border-radius:999px;font-weight:600}
.btn.outline{background:transparent;border:1px solid var(--accent);color:var(--accent)}
.note{color:#aaa;font-size:14px;text-align:center;margin-top:8px}
.site-footer .small{font-size:13px;color:#aaa;text-align:center}
@media (max-width:920px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .video-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero-text h1{font-size:32px}
}
#services {
  background:linear-gradient(180deg,#0c0c0c 0%,#0a0a0a 100%);
}
#services h2 {
  text-align:center;
  margin-bottom:24px;
}
#services .lead {
  text-align:center;
  margin-bottom:32px;
  color:var(--muted);
}
#services .btn {
  min-width:200px;
}
/* --- SERVICES : style "pills" comme la capture --- */
#services h2{
  font-family:"Playfair Display",serif;
  margin-bottom:18px;
}

.features.features--pills{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2,1fr);
}

.pill{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:18px 20px;
  position:relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 10px 20px rgba(0,0,0,.25);
}

.pill h3{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:.2px;
}

.pill .muted{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}

#services .footnote{
  margin-top:10px;
  color:var(--muted);
  font-size:.95rem;
}

/* responsive comme sur ta capture */
@media (max-width:900px){
  .features.features--pills{ grid-template-columns:1fr; }
}
#services .row {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}

#services .btn {
  min-width:200px;
  text-align:center;
}
/* --- HAMBURGER --- */
.hamburger{
  display:none; /* visible en mobile uniquement (voir media query) */
  width:44px;height:44px;position:relative;
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;background:transparent;color:#fff;
}
.hamburger span{
  position:absolute;left:9px;right:9px;height:2px;background:#fff;transition:.25s;
}
.hamburger span:nth-child(1){ top:13px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:29px; }

/* état ouvert (croix) */
.hamburger.is-open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* --- NAV responsive --- */
.nav-links{ display:flex; gap:18px; }
@media (max-width:900px){
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute; top:64px; left:0; right:0;
    display:flex; flex-direction:column; gap:0;
    background:rgba(0,0,0,.92);
    border-top:1px solid rgba(255,255,255,.06);
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:.25s; padding:8px 12px;
  }
  .nav-links a{
    padding:14px 20px; border-bottom:1px solid rgba(255,255,255,.06);
    opacity:.95;
  }
  .nav-links a:last-child{ border-bottom:none; }
  /* état ouvert */
  .nav-links.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
}
/* LOGO LORENA CENTRÉ ET ÉLÉGANT */
.brand {
  flex: 1;
  text-align: center;
}

.logo-text {
  font-family: "Playfair Display", "Great Vibes", "Dancing Script", cursive;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.logo-text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* Position du bouton hamburger */
.hamburger {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 32px;
}

.hamburger span {
  background: #fff;
  height: 2px;
  border-radius: 1px;
  width: 100%;
  transition: all .3s ease;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Sur mobile, les deux photos passent l'une sous l'autre */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  min-height: 70vh;        /* tu peux mettre 100vh si tu veux plein écran */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* L'image plein écran, comme une vidéo de fond */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65);   /* assombrit un peu pour bien lire le texte */
}

/* Le texte par-dessus l’image */
.hero-text {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
