:root{
  --bg:#fbfaf7;
  --paper:#ffffff;
  --txt:#151515;
  --muted:#5f6368;
  --line:rgba(15,15,15,.10);

  --gold:#d6b36a;
  --gold2:#f2e2b8;
  --green:#2f6f6a;

  --shadow:0 18px 60px rgba(15,15,15,.08);
  --shadow2:0 10px 30px rgba(15,15,15,.06);

  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--txt);
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(214,179,106,.18), transparent 60%),
    radial-gradient(900px 520px at 92% 14%, rgba(47,111,106,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 60%, #f6f3ed);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, calc(100% - 44px)); margin:0 auto}

/* Typo titres (premium) */
h1,h2,h3{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing:-.2px;
}
h1{letter-spacing:-.6px}

.top{
  position:sticky; top:0; z-index:20;
  background:rgba(251,250,247,.82);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}

.top__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; gap:10px; align-items:center}
.brand__dot{
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow:0 0 0 5px rgba(214,179,106,.18);
}
.brand__name{font-weight:900; letter-spacing:.9px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted); font-weight:800; font-size:14px}
.nav a:hover{color:var(--txt)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  color:var(--txt);
  font-weight:900;
  cursor:pointer;
  box-shadow:0 2px 0 rgba(15,15,15,.03);
  transition:transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(15,15,15,.08);
}
.btn--primary{
  border:1px solid rgba(214,179,106,.55);
  background:linear-gradient(135deg, rgba(214,179,106,.98), rgba(242,226,184,.95));
  color:#241a06;
}
.btn--ghost{background:transparent; box-shadow:none}
.btn--subtle{background:rgba(255,255,255,.88)}
.btn--block{width:100%}

.badge{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(214,179,106,.38);
  color:#5a4a22;
  background:rgba(242,226,184,.38);
  font-weight:900;
  font-size:12px;
}

.hero{padding:56px 0 30px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.10fr .90fr;
  gap:26px;
  align-items:start;
}
.hero__copy h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.06;
}
.lead{margin:0; color:var(--muted); font-size:18px; line-height:1.6}
.punch{margin:14px 0 0; font-weight:900; font-size:16px}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin:22px 0 18px}

.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.trust__item{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow2);
}
.trust__title{font-weight:900; font-size:13px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.trust__text{color:var(--muted); font-size:12px; margin-top:4px}

.hero__card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(15,15,15,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.mock__top{
  display:flex; gap:8px; align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(15,15,15,.10);
  background:rgba(246,243,237,.88);
}
.mock__pill{width:10px;height:10px;border-radius:50%; background:rgba(15,15,15,.10)}
.mock__body{padding:18px 18px 16px}
.mock__title{font-weight:900; font-size:18px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.mock__sub{color:var(--muted); font-size:13px; margin-top:4px}
.mock__section{margin-top:16px; padding-top:14px; border-top:1px dashed rgba(15,15,15,.14)}
.mock__h{font-weight:900; font-size:13px; margin-bottom:8px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.mock__list{margin:0; padding-left:16px; color:var(--muted); font-size:13px}

.mock__rsvp{display:flex; gap:10px}
.chip{
  border-radius:999px;
  padding:8px 10px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(15,15,15,.12);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.chip--yes{background:rgba(47,111,106,.10); color:#245a55}
.chip--no{background:rgba(214,179,106,.16); color:#5a4a22}

.mock__qr{display:flex; gap:12px; align-items:center}
.qr{
  width:52px;height:52px;border-radius:12px;
  background:
    linear-gradient(90deg, rgba(15,15,15,.12) 25%, transparent 25%) 0 0/10px 10px,
    linear-gradient(rgba(15,15,15,.12) 25%, transparent 25%) 0 0/10px 10px,
    linear-gradient(135deg, rgba(214,179,106,.30), rgba(47,111,106,.14));
  border:1px solid rgba(15,15,15,.12);
}
.mock__footer{margin-top:14px; font-size:12px; color:var(--muted)}

.section{padding:58px 0}
.section--soft{
  background:rgba(246,243,237,.70);
  border-top:1px solid rgba(15,15,15,.06);
  border-bottom:1px solid rgba(15,15,15,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:30px}
.muted{color:var(--muted)}
.small{font-size:12px}
.center{text-align:center}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.panel{
  border-radius:var(--radius);
  border:1px solid rgba(15,15,15,.10);
  background:rgba(255,255,255,.80);
  padding:18px;
  box-shadow:var(--shadow2);
}
.panel--big{padding:22px}
.panel h3{margin:0 0 10px}
.check{margin:0; padding-left:18px}
.check li{margin:8px 0; color:var(--muted); font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

.quotes{margin-top:14px; display:grid; gap:10px}
.quote{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,15,15,.10);
  background:rgba(255,255,255,.74);
  color:var(--muted);
  font-weight:800;
  box-shadow:0 2px 0 rgba(15,15,15,.02);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(15,15,15,.10);
  background:rgba(255,255,255,.80);
  padding:18px;
  min-height:120px;
  box-shadow:var(--shadow2);
}
.card h3{margin:0 0 8px}
.card p{margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

.mini{margin-top:16px; display:grid; gap:10px}
.mini__row{
  display:flex; gap:10px; align-items:center;
  color:var(--muted); font-weight:800;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.dot{width:9px;height:9px;border-radius:50%; background:linear-gradient(135deg, var(--gold), var(--gold2))}

.pricing{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.pricecard{
  border-radius:var(--radius);
  border:1px solid rgba(15,15,15,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.pricecard__top{
  padding:18px;
  border-bottom:1px solid rgba(15,15,15,.10);
  background:rgba(246,243,237,.78);
}
.pricecard__name{font-weight:900; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.pricecard__price{font-size:44px; font-weight:900; margin:6px 0 2px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.pricecard__sub{color:var(--muted); font-weight:900; font-size:13px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.pricecard__body{padding:18px}

.side{display:grid; gap:12px}
.side__box{
  border-radius:var(--radius);
  border:1px solid rgba(15,15,15,.10);
  background:rgba(255,255,255,.80);
  padding:16px;
  box-shadow:var(--shadow2);
}
.side__title{font-weight:900; margin-bottom:8px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.bullets{margin:0; padding-left:18px; color:var(--muted); font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.bullets li{margin:8px 0}

.faq details{
  border-radius:16px;
  border:1px solid rgba(15,15,15,.10);
  background:rgba(255,255,255,.80);
  padding:14px 14px;
  margin:10px 0;
  box-shadow:0 2px 0 rgba(15,15,15,.02);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.faq p{
  margin:10px 0 0;
  color:var(--muted);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.final{padding:58px 0}
.final__box{
  border-radius:calc(var(--radius) + 6px);
  border:1px solid rgba(15,15,15,.12);
  background:linear-gradient(135deg, rgba(214,179,106,.22), rgba(47,111,106,.08));
  padding:22px;
  box-shadow:var(--shadow);
}

.form{margin-top:14px}
.row{display:flex; gap:12px; flex-wrap:wrap; margin:12px 0}

label{display:flex; flex-direction:column; gap:8px; width:100%}
label.grow{flex:1}
label span{font-weight:800; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,15,15,.14);
  background:rgba(255,255,255,.94);
  color:var(--txt);
  outline:none;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
input:focus{
  border-color:rgba(47,111,106,.40);
  box-shadow:0 0 0 4px rgba(47,111,106,.12);
}
.slug{display:flex; align-items:center; gap:10px}
.slug input{flex:1}
.slug__suffix{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(15,15,15,.14);
  background:rgba(246,243,237,.88);
  color:var(--muted);
  font-weight:900;
  white-space:nowrap;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.hint{color:var(--muted); font-size:12px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

.footer{
  padding:22px 0 30px;
  border-top:1px solid rgba(15,15,15,.06);
  background:rgba(255,255,255,.60);
}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap}
.footer__links{display:flex; gap:14px}
.footer__links a{color:var(--muted); font-weight:900; font-size:13px; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.footer__links a:hover{color:var(--txt)}

@media (max-width: 940px){
  .hero__grid{grid-template-columns:1fr}
  .hero__copy h1{font-size:38px}
  .trust{grid-template-columns:1fr; gap:10px}
  .grid2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .nav{display:none}
}
