/* HOLDING VIVANT — Site statique (v1) */
:root{
  --bg:#061c14;
  --bg2:#07140f;
  --border:rgba(185, 207, 197, .18);
  --border2:rgba(217, 194, 122, .22);
  --text:#e9f2ec;
  --muted:#b9cfc5;
  --accent:#d9c27a;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 30% 20%, rgba(18,63,45,.35), transparent 60%),
              radial-gradient(900px 600px at 70% 30%, rgba(217,194,122,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}
a{ color: var(--text); text-decoration:none; }
a:hover{ text-decoration:underline; }
.skip{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; color:#fff; border-radius:10px; z-index:9999; }
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(6,28,20,.85), rgba(6,28,20,.55));
  border-bottom: 1px solid var(--border);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; }
.logo-wrap{
  width:44px; height:44px; border-radius:14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  display:grid; place-items:center; overflow:hidden;
}
.logo{ width:34px; height:34px; object-fit:contain; }
.logo-fallback{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(217,194,122,.12);
  border: 1px solid var(--border2);
  color: var(--accent);
  font-weight:800;
}
.kicker{ font-size:12px; color: rgba(185,207,197,.85); letter-spacing:.2px; }
.name{ font-size:15px; font-weight:800; color: var(--accent); letter-spacing:.4px; }

.menu{ display:flex; align-items:center; gap:18px; }
.menu a{ font-size:14px; color: rgba(233,242,236,.9); }
.menu a.cta{
  padding:10px 14px; border-radius:999px;
  border: 1px solid var(--border2);
  background: rgba(217,194,122,.10);
  text-decoration:none;
}
.menu a.cta:hover{ background: rgba(217,194,122,.16); }

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{ display:block; width:18px; height:2px; margin:4px auto; background: rgba(233,242,236,.9); border-radius:2px; }

.hero{ position:relative; padding:64px 0 30px; overflow:hidden; }
.bg-forest{
  position:absolute; inset:-40px;
  background:
    radial-gradient(1000px 700px at 15% 20%, rgba(18,63,45,.35), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(217,194,122,.18), transparent 55%),
    repeating-linear-gradient(90deg, rgba(233,242,236,.03) 0, rgba(233,242,236,.03) 1px, transparent 1px, transparent 58px);
  opacity:.9; pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:28px;
  align-items:start;
}

.pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.pill{
  padding:8px 12px; border-radius:999px;
  background: rgba(18,63,45,.55);
  border:1px solid rgba(185,207,197,.18);
  color: rgba(233,242,236,.88);
  font-size:12px;
}
.headline{ margin:0 0 14px; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -.6px; }
.accent{ color: var(--accent); }
.lead{
  margin:0 0 20px;
  color: rgba(185,207,197,.92);
  font-size:16px; line-height:1.6; max-width: 62ch;
}
.lead strong{ color: rgba(233,242,236,.92); font-weight:700; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text);
  font-weight:700; font-size:14px;
  text-decoration:none; cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.04); border-color: rgba(233,242,236,.22); text-decoration:none; }
.btn.primary{ background: rgba(217,194,122,.14); border-color: var(--border2); }
.btn.primary:hover{ background: rgba(217,194,122,.18); }
.btn.ghost{ background: rgba(15,36,28,.18); }
.btn.full{ width:100%; border-radius:16px; }

.trust{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(185,207,197,.16);
  background: rgba(15,36,28,.22);
  font-size:12px; color: rgba(233,242,236,.85);
}

.glass-panel{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(185,207,197,.18);
  box-shadow: var(--shadow);
  padding:18px 18px 14px;
}
.panel-title{ font-weight:800; color: rgba(233,242,236,.92); letter-spacing:.2px; margin-bottom:10px; }
.panel-list{ list-style:none; padding:0; margin:0 0 12px; display:grid; gap:10px; }
.panel-list li{ display:flex; gap:10px; align-items:flex-start; color: rgba(185,207,197,.9); font-size:13px; line-height:1.5; }
.dot{ width:10px; height:10px; border-radius:99px; margin-top:5px; background: rgba(217,194,122,.6); box-shadow: 0 0 0 3px rgba(217,194,122,.12); }
.panel-footer{ display:flex; justify-content:flex-end; }
.mini-cta{
  font-size:12px; color: rgba(233,242,236,.9);
  padding:8px 10px; border-radius: 999px;
  border:1px solid rgba(217,194,122,.22);
  background: rgba(217,194,122,.10);
  text-decoration:none;
}

.section{ padding:54px 0; }
.section.subtle{
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.02));
  border-top:1px solid rgba(185,207,197,.08);
  border-bottom:1px solid rgba(185,207,197,.08);
}
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 6px; font-size:28px; letter-spacing:-.3px; }
.section-head p{ margin:0; color: rgba(185,207,197,.9); }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.card{
  background: rgba(15,36,28,.35);
  border:1px solid rgba(185,207,197,.14);
  border-radius: var(--radius);
  padding:16px;
  min-height: 180px;
}
.card h3{ margin:0 0 8px; font-size:18px; color: rgba(233,242,236,.95); }
.card p{ margin:0 0 14px; color: rgba(185,207,197,.92); line-height:1.55; font-size:14px; }
.bubbles{ display:flex; flex-wrap:wrap; gap:8px; }
.bubble{
  font-size:12px; color: rgba(233,242,236,.9);
  padding:7px 10px; border-radius:999px;
  background: rgba(18,63,45,.55);
  border:1px solid rgba(185,207,197,.16);
}

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.box{
  background: rgba(15,36,28,.28);
  border:1px solid rgba(185,207,197,.14);
  border-radius: var(--radius2);
  padding:18px;
}
.box h2{ margin:0 0 14px; font-size:22px; }
.steps{ margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.steps li{ display:flex; gap:10px; align-items:flex-start; color: rgba(185,207,197,.92); line-height:1.5; }
.steps li span{
  width:26px; height:26px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(217,194,122,.12);
  border:1px solid rgba(217,194,122,.22);
  color: var(--accent);
  font-weight:800; flex:0 0 auto;
}
.bullets{ margin:0; padding-left:18px; color: rgba(185,207,197,.92); display:grid; gap:10px; line-height:1.5; }

.banner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(217,194,122,.20);
  background: linear-gradient(90deg, rgba(217,194,122,.12), rgba(15,36,28,.22));
}
.banner h2{ margin:0 0 8px; font-size:22px; }
.banner p{ margin:0 0 12px; color: rgba(185,207,197,.92); line-height:1.55; }
.banner-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.banner-right{ display:flex; flex-direction:column; gap:10px; min-width: 220px; }

.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start; }
.contact-card, .form{
  background: rgba(15,36,28,.30);
  border:1px solid rgba(185,207,197,.14);
  border-radius: var(--radius2);
  padding:18px;
}
.contact-lines{ display:grid; gap:10px; margin:14px 0; }
.line{ display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:14px; border:1px solid rgba(185,207,197,.12); background: rgba(6,28,20,.35); }
.label{ color: rgba(185,207,197,.85); font-size:12px; }
.field{ display:grid; gap:8px; margin-bottom:12px; }
label{ font-size:12px; color: rgba(185,207,197,.9); }
input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(185,207,197,.16);
  background: rgba(6,28,20,.42);
  color: rgba(233,242,236,.95);
  padding:12px 12px;
  outline:none;
  font-size:14px;
}
input:focus, textarea:focus{ border-color: rgba(217,194,122,.35); box-shadow: 0 0 0 4px rgba(217,194,122,.08); }

.footer{ border-top:1px solid rgba(185,207,197,.10); padding:18px 0 26px; color: rgba(185,207,197,.8); }
.footer-row{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.small{ font-size:12px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .banner{ flex-direction:column; align-items:flex-start; }
  .banner-right{ width:100%; flex-direction:row; }
}
@media (max-width: 760px){
  .menu{
    position:absolute; right:0; top:66px;
    width:min(320px, calc(100vw - 20px));
    flex-direction:column; align-items:stretch;
    gap:10px; padding:12px;
    border-radius: 18px;
    background: rgba(6,28,20,.92);
    border:1px solid rgba(185,207,197,.14);
    box-shadow: var(--shadow);
    display:none;
  }
  .menu.open{ display:flex; }
  .burger{ display:block; }
}
