  :root{
    --bg:#161F19;
    --bg-panel:#1D2A22;
    --bg-panel-2:#202D24;
    --gold:#C9A256;
    --gold-soft:#B8895A;
    --cream:#EDE6D6;
    --cream-dim:#9C9686;
    --line: rgba(201,162,86,0.28);
    --max: 1100px;
  }

  *{box-sizing:border-box; margin:0; padding:0;}

  html{scroll-behavior:smooth;}

  body{
    background:var(--bg);
    color:var(--cream);
    font-family:'Inter', sans-serif;
    font-weight:300;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

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

  a{ color:inherit; }

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

  .eyebrow{
    font-family:'Inter', sans-serif;
    font-size:0.72rem;
    letter-spacing:0.32em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:500;
  }

  .wrap{
    max-width:var(--max);
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- NAV ---------- */
  nav{
    position:fixed;
    top:0; left:0; right:0;
    z-index:50;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 32px;
    mix-blend-mode:difference;
  }
  nav .markword{
    font-family:'Fraunces', serif;
    font-size:1.1rem;
    letter-spacing:0.04em;
    color:var(--cream);
  }
  nav .navlink{
    font-size:0.72rem;
    letter-spacing:0.22em;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--cream);
    border-bottom:1px solid transparent;
    padding-bottom:2px;
    transition:border-color .3s ease;
  }
  nav .navlink:hover{ border-color:var(--cream); }

  /* ---------- HERO ---------- */
  .hero{
    min-height:100svh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    padding:120px 24px 80px;
  }

  .hero-glyph{
    width:min(72vw, 420px);
    height:auto;
    opacity:0.9;
    margin-bottom:8px;
  }
  .hero-glyph path, .hero-glyph circle{
    stroke:var(--gold);
    fill:none;
    stroke-width:1;
    stroke-dasharray:1400;
    stroke-dashoffset:1400;
    animation: draw 2.6s ease forwards 0.3s;
  }
  @media (prefers-reduced-motion: reduce){
    .hero-glyph path, .hero-glyph circle{ animation:none; stroke-dashoffset:0; }
  }
  @keyframes draw{ to{ stroke-dashoffset:0; } }

  .hero h1{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:clamp(3rem, 9vw, 6.2rem);
    letter-spacing:0.01em;
    color:var(--cream);
    line-height:1;
    margin-top:18px;
  }

  .hero .tagline{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:400;
    color:var(--gold-soft);
    font-size:clamp(1rem, 2vw, 1.3rem);
    margin-top:18px;
    letter-spacing:0.01em;
  }

  .hero .eyebrow{ margin-bottom:0; }

  .scrolldown{
    position:absolute;
    bottom:36px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    opacity:0.6;
  }
  .scrolldown .stem{
    width:1px; height:42px;
    background:linear-gradient(var(--gold), transparent);
  }
  .scrolldown span{
    font-size:0.65rem;
    letter-spacing:0.28em;
    text-transform:uppercase;
    color:var(--cream-dim);
  }

  /* ---------- DIVIDER ---------- */
  .divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:0;
    margin: 0 auto;
  }
  .divider .rule{
    height:1px;
    width:64px;
    background:var(--line);
  }
  .divider svg{ width:22px; height:22px; }
  .divider path{ stroke:var(--gold); fill:none; stroke-width:1.2; }

  /* ---------- SECTION GENERIC ---------- */
  section{
    padding:140px 0;
    position:relative;
  }

  .section-head{
    margin-bottom:56px;
  }
  .section-head h2{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:clamp(2rem, 4vw, 3rem);
    margin-top:14px;
    color:var(--cream);
  }

  /* ---------- HISTOIRE ---------- */
  .histoire-grid{
    display:grid;
    grid-template-columns: 1fr 1.1fr;
    gap:80px;
    align-items:start;
  }
  .histoire-quote{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-weight:400;
    font-size:clamp(1.5rem, 2.6vw, 2.1rem);
    color:var(--gold);
    line-height:1.4;
  }
  .histoire-body p{
    color:var(--cream-dim);
    font-size:1.02rem;
    margin-bottom:20px;
    max-width:46ch;
  }
  .histoire-body p strong{
    color:var(--cream);
    font-weight:500;
  }

  @media (max-width: 780px){
    .histoire-grid{ grid-template-columns:1fr; gap:36px; }
  }

  /* ---------- PROCEDE ---------- */
  .procede-list{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--line);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .procede-item{
    background:var(--bg);
    padding:48px 36px;
  }
  .procede-num{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:0.95rem;
    color:var(--gold-soft);
    display:block;
    margin-bottom:24px;
  }
  .procede-item h3{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:1.4rem;
    margin-bottom:14px;
    color:var(--cream);
  }
  .procede-item p{
    color:var(--cream-dim);
    font-size:0.94rem;
  }
  @media (max-width:780px){
    .procede-list{ grid-template-columns:1fr; }
    .procede-item{ border-bottom:1px solid var(--line); }
  }

  /* ---------- MATIERES ---------- */
  .matieres{
    background:var(--bg-panel);
    position:relative;
    overflow:hidden;
  }
  .honeycomb{
    position:absolute;
    inset:0;
    opacity:0.18;
    pointer-events:none;
  }
  .matieres-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:48px;
    position:relative;
    z-index:1;
  }
  .matiere-card{
    padding:8px;
  }
  .matiere-card .hex{
    width:46px; height:46px;
    margin-bottom:22px;
  }
  .matiere-card .hex path{ stroke:var(--gold); fill:none; stroke-width:1; }
  .matiere-card h4{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:1.15rem;
    margin-bottom:10px;
    color:var(--cream);
  }
  .matiere-card p{
    color:var(--cream-dim);
    font-size:0.92rem;
  }
  @media (max-width:780px){
    .matieres-grid{ grid-template-columns:1fr; gap:40px; }
  }

  /* ---------- CONTACT / CLOSING ---------- */
  .closing{
    text-align:center;
  }
  .closing h2{
    font-family:'Fraunces', serif;
    font-weight:400;
    font-size:clamp(2.2rem, 5vw, 3.4rem);
    max-width:18ch;
    margin:18px auto 28px;
    line-height:1.15;
  }
  .closing p.lead{
    color:var(--cream-dim);
    max-width:48ch;
    margin:0 auto 40px;
  }

  .cta-row{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 30px;
    font-size:0.78rem;
    letter-spacing:0.18em;
    text-transform:uppercase;
    text-decoration:none;
    border:1px solid var(--gold);
    color:var(--cream);
    transition: background .3s ease, color .3s ease;
  }
  .btn:hover{ background:var(--gold); color:var(--bg); }
  .btn.ghost{
    border-color:var(--line);
    color:var(--cream-dim);
  }
  .btn.ghost:hover{ background:transparent; color:var(--cream); border-color:var(--cream); }

  footer{
    padding:48px 0 36px;
    text-align:center;
  }
  footer .markword{
    font-family:'Fraunces', serif;
    font-size:0.95rem;
    color:var(--cream-dim);
    letter-spacing:0.04em;
  }
  footer .fine{
    margin-top:10px;
    font-size:0.7rem;
    letter-spacing:0.1em;
    color:var(--cream-dim);
    opacity:0.6;
  }

  /* reveal on scroll */
  .reveal{
    opacity:0;
    transform:translateY(18px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .reveal.in{
    opacity:1;
    transform:translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
  }

  /* ---------- LOGO "E" (image) ---------- */
  .logo-e{
    height:0.92em;
    width:auto;
    vertical-align:-0.12em;
    margin-right:0.04em;
  }

  .logo-e--hero{
    height:0.95em;
    vertical-align:-0.1em;
    margin-right:0.06em;
  }

  nav .markword{
    display:inline-flex;
    align-items:baseline;
  }
  .hero h1{
    display:flex;
    align-items:baseline;
    justify-content:center;
  }
