:root{
  --paper:#efe3cf;
  --paper-2:#e3d2b7;
  --ink:#2b2420;
  --muted:#5b514b;
  --border:#d7c3a3;
  --panel:#f7eedc;
  --panel-2:#f3e7d1;
  --accent:#3e4e34;
  --shadow:0 16px 40px rgba(0,0,0,.18);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  line-height:1.55;
  background:
    radial-gradient(1200px 500px at 30% 0%, rgba(0,0,0,.08), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(0,0,0,.06), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.page{max-width:1100px; margin:0 auto; padding:14px 14px 24px}

/* HERO */
.hero{position:relative}
.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px 12px;
  background:rgba(247,238,220,.75);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-logo{
  width:56px; height:56px; object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
}
.brand-text{min-width:0}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-sub{color:var(--muted); font-weight:700; font-size:13px}

.icons{display:flex; gap:10px; align-items:center}
.iconbtn{
  width:44px;height:44px;
  display:grid; place-items:center;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.55);
  text-decoration:none;
}
.iconbtn:hover{background:rgba(255,255,255,.75)}
.iconbtn svg{width:22px;height:22px; fill:var(--accent)}

.hero-figure{margin:12px 0 0 0}
.hero-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

/* CONTENT */
.content{padding:18px 4px 0}
.panel{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  padding:18px;
}

h1,h2{
  margin:0 0 10px 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  letter-spacing:.2px;
}
h1{font-size:30px}
h2{font-size:22px}

.intro p{margin:0 0 12px 0; max-width:68ch}
.muted{color:var(--muted)}

.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:8px}
.chip{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.55);
  font-weight:800;
  color:#2f3a26;
  font-size:13px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}

.bullets{margin:10px 0 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.footer{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  padding:18px 0 6px;
}

@media (max-width:900px){
  .grid{grid-template-columns:1fr}
  h1{font-size:28px}
}
