/* Inner pages — Parchémonos */
.page-hero{
  background:var(--yellow); border-bottom:4px solid var(--black);
  padding:56px 0 48px; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background:url('../img/pattern.jpg'); background-size:520px; opacity:.1; mix-blend-mode:multiply;
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero h1{ font-size:clamp(2.2rem,5vw,3.6rem); max-width:16ch; }
.page-hero p{ margin-top:14px; font-weight:600; max-width:560px; line-height:1.55; }

.crumbs{ font-size:.86rem; font-weight:700; margin-bottom:16px; }
.crumbs a{ text-decoration:none; }

.article-grid{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:40px; align-items:start;
  padding:72px 0;
}
.article-media{
  position:sticky; top:92px;
  border:3px solid var(--black); border-radius:24px; overflow:hidden;
  box-shadow:8px 8px 0 var(--black); background:var(--black);
  aspect-ratio:9/16; max-height:78vh;
}
.article-media video, .article-media img{
  width:100%; height:100%; object-fit:contain; display:block;
}
.article-copy h1{ font-size:clamp(2rem,4vw,3rem); margin:10px 0 16px; }
.article-copy p{ font-size:1.05rem; line-height:1.7; color:#332C22; }
.related-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:28px; }
.related-card{
  display:block; text-decoration:none; border:3px solid var(--black); border-radius:18px;
  overflow:hidden; box-shadow:4px 4px 0 var(--black);
}
.related-card .ph{
  aspect-ratio:9/16; background-size:cover; background-position:center;
}
.related-card span{ display:block; padding:12px 14px; font-weight:800; background:var(--white); }

.guide-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.guide-card{
  display:block; text-decoration:none; min-height:240px; border-radius:24px;
  border:3px solid var(--black); box-shadow:6px 6px 0 var(--black);
  background-size:cover; background-position:center; position:relative; color:var(--white);
}
.guide-card .shade{
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 30%, rgba(23,20,15,.8));
}
.guide-card .body{ position:absolute; left:16px; right:16px; bottom:16px; }
.guide-card h3{ font-family:'Chendolle'; font-size:1.8rem; }

.soon-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.soon-card{
  background:var(--cream); border:3px solid var(--black); border-radius:24px;
  padding:28px 24px; box-shadow:6px 6px 0 var(--coral);
}
.soon-card .tag{ margin-bottom:12px; }
.soon-card h3{ font-size:1.8rem; margin-bottom:10px; }
.soon-card p{ margin:0; font-weight:600; line-height:1.55; color:#332C22; }

.form-card{
  max-width:640px; margin:0 auto; background:var(--white);
  border:3px solid var(--black); border-radius:24px; padding:32px 28px;
  box-shadow:8px 8px 0 var(--coral);
}
.form-card label{ display:block; font-weight:800; font-size:.86rem; margin:14px 0 6px; }
.form-card input, .form-card textarea, .form-card select{
  width:100%; font:inherit; font-weight:600; padding:12px 14px;
  border:2.5px solid var(--black); border-radius:12px; background:var(--cream);
}
.form-card textarea{ min-height:140px; resize:vertical; }
.form-card .hp{ position:absolute; left:-9999px; }
.form-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.form-note{ font-size:.88rem; color:#5c5343; font-weight:600; margin-top:12px; }

.list-exps{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.list-exps a{
  display:block; text-decoration:none; border:3px solid var(--black); border-radius:22px;
  overflow:hidden; box-shadow:5px 5px 0 var(--black); background:var(--white);
}
.list-exps .ph{ aspect-ratio:9/16; background-size:cover; background-position:center top; }
.list-exps .info{ padding:14px 16px; }
.list-exps .info strong{ display:block; font-size:1.02rem; }
.list-exps .info small{ color:var(--coral-text); font-weight:800; text-transform:uppercase; letter-spacing:.3px; }

@media (max-width:860px){
  .article-grid, .guide-grid, .soon-grid, .list-exps, .related-row{ grid-template-columns:1fr; }
  .article-media{ position:static; max-height:none; }
}
