
:root{
  --ink:#2d190c;
  --brown:#6d421e;
  --gold:#c9963b;
  --pale:#fff7e8;
  --cream:#fff1d6;
  --card:rgba(255,248,232,.88);
  --shadow:0 24px 70px rgba(48,28,8,.28);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,215,138,.65), transparent 32rem),
    linear-gradient(135deg,#fff9ec,#f4ddac 42%,#c68b3f);
  min-height:100vh;
}
a{color:inherit}
.site-header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(14px);
  background:rgba(255,247,229,.78);
  border-bottom:1px solid rgba(109,66,30,.2);
}
.nav{
  max-width:1200px; margin:auto; padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{
  text-decoration:none; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
}
.nav-links{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav-links a{
  text-decoration:none; font-size:.9rem; padding:8px 10px; border-radius:999px;
}
.nav-links a:hover{background:rgba(201,150,59,.25)}
.hero{
  max-width:1200px; margin:0 auto; padding:70px 20px 36px;
  display:grid; grid-template-columns:1.05fr .95fr; gap:38px; align-items:center;
}
.hero h1{
  margin:0 0 20px; font-size:clamp(3rem,8vw,7.4rem); line-height:.86; letter-spacing:-.05em;
}
.kicker{font-size:.95rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brown); font-weight:700}
.hero p{font-size:clamp(1.15rem,2vw,1.65rem); line-height:1.4; max-width:700px}
.hero-card{
  background:var(--card); border:1px solid rgba(109,66,30,.18);
  border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden;
  transform:rotate(1.25deg);
}
.hero-card img{display:block; width:100%; height:auto}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:26px}
.button{
  display:inline-block; text-decoration:none; padding:13px 18px; border-radius:999px;
  background:var(--ink); color:var(--pale); font-weight:700;
}
.button.secondary{background:rgba(255,248,232,.72); color:var(--ink); border:1px solid rgba(45,25,12,.2)}
.section{max-width:1200px; margin:0 auto; padding:42px 20px}
.grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.tile{
  background:rgba(255,248,232,.8); border:1px solid rgba(109,66,30,.16);
  border-radius:22px; overflow:hidden; box-shadow:0 16px 46px rgba(45,25,12,.14);
  text-decoration:none; display:flex; flex-direction:column; min-height:100%;
}
.tile img{width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center; display:block}
.tile-body{padding:22px}
.tile h2{margin:0 0 8px; font-size:1.7rem}
.tile p{margin:0; line-height:1.45}
.poster-layout{
  max-width:1240px; margin:0 auto; padding:48px 20px 80px;
  display:grid; grid-template-columns:minmax(280px,460px) 1fr; gap:34px; align-items:start;
}
.poster-image{
  position:sticky; top:86px;
  background:var(--card); padding:10px; border-radius:22px; box-shadow:var(--shadow);
}
.poster-image img{width:100%; display:block; border-radius:16px}
.article{
  background:rgba(255,248,232,.78); border:1px solid rgba(109,66,30,.16);
  border-radius:28px; padding:clamp(22px,4vw,48px); box-shadow:0 20px 62px rgba(45,25,12,.14);
}
.article h1{font-size:clamp(2.7rem,6vw,5.7rem); line-height:.9; margin:0 0 16px}
.lead{font-size:clamp(1.15rem,2vw,1.55rem); line-height:1.45}
.strap{
  margin:28px 0; padding:18px 22px; border-left:5px solid var(--gold);
  background:rgba(255,255,255,.35); border-radius:14px; font-size:1.18rem; font-style:italic;
}
.cards{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:30px 0}
.card{
  background:rgba(255,255,255,.42); border:1px solid rgba(109,66,30,.16);
  padding:18px; border-radius:18px;
}
.icon{font-size:2rem; display:block; margin-bottom:9px}
.card h3{margin:0 0 8px; text-transform:uppercase; letter-spacing:.06em; font-size:1rem}
.card p{margin:0; line-height:1.45}
.footer-quote{
  margin-top:30px; padding:24px; border-radius:20px;
  background:linear-gradient(135deg,rgba(201,150,59,.28),rgba(255,255,255,.36));
  font-size:1.25rem; line-height:1.45;
}
.site-footer{text-align:center; padding:40px 20px 60px; color:rgba(45,25,12,.78)}
.acolyte-note{
  max-width:900px; margin:20px auto 0; padding:18px 22px; border-radius:18px;
  background:rgba(45,25,12,.09); line-height:1.5;
}
@media (max-width:900px){
  .hero{grid-template-columns:1fr; padding-top:46px}
  .hero-card{transform:none}
  .grid{grid-template-columns:repeat(2,1fr)}
  .poster-layout{grid-template-columns:1fr}
  .poster-image{position:static; max-width:520px; margin:auto}
}
@media (max-width:620px){
  .nav{align-items:flex-start; flex-direction:column}
  .nav-links{justify-content:flex-start}
  .grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .section{padding-top:24px}
}
