:root{
  --bg:#ffffff;
  --fg:#0b0b0b;
  --muted:#3a3a3a;
  --line:#e9e9e9;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.75;
}
a{color:inherit}
.container{max-width:1100px; margin:0 auto; padding:24px}
.hero{
  padding:18px 0 10px;
}
.brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid var(--line);
  padding-bottom:14px;
}
.brand .domain{
  font-size:20px;
  font-weight:700;
  letter-spacing:.5px;
}
.brand .tag{
  font-size:14px;
  color:var(--muted);
}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  padding:28px 0 10px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr; gap:18px;}
  .brand{flex-direction:column; align-items:flex-start;}
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card .pad{padding:20px}
.h1{
  font-size:38px;
  margin:0 0 10px;
  letter-spacing:-.2px;
}
@media (max-width: 600px){
  .h1{font-size:30px}
}
.lead{
  font-size:18px;
  color:var(--muted);
  margin:0 0 14px;
}
blockquote{
  margin:16px 0 0;
  padding:14px 16px;
  border-right:4px solid var(--fg);
  background: #fafafa;
  border-radius:14px;
}
.kicker{
  display:inline-block;
  font-weight:700;
  font-size:13px;
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.portrait{
  width:100%;
  height:auto;
  display:block;
}
.mono{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  border-bottom:1px solid var(--line);
}
.mono img{
  width:min(420px, 100%);
  height:auto;
  image-rendering: pixelated;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding:12px 0 4px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--fg);
  background:var(--fg);
  color:var(--bg);
  text-decoration:none;
  font-weight:700;
  transition: transform .06s ease, background .2s ease, color .2s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.secondary{
  background:var(--bg);
  color:var(--fg);
}
.section{
  margin-top:24px;
}
.section h2{
  margin:0 0 8px;
  font-size:22px;
}
.hr{height:1px; background:var(--line); margin:20px 0}
.small{font-size:13px; color:var(--muted)}
.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}
.guestbook{
  margin-top:16px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 600px){
  .form-row{grid-template-columns:1fr}
}
label{display:block; font-weight:700; font-size:14px; margin-bottom:6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  font-family:inherit;
  font-size:15px;
}
textarea{min-height:120px; resize:vertical}
.help{margin:8px 0 0; font-size:12px; color:var(--muted)}
.entry{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  margin-top:12px;
}
.entry .meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}
.badge{
  display:inline-block;
  border:1px solid var(--line);
  padding:4px 8px;
  border-radius:999px;
  font-size:12px;
}
.notice{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fcfcfc;
  padding:12px 14px;
  margin-top:12px;
}
.hidden-trap{position:absolute; left:-9999px; top:-9999px; height:0; width:0; overflow:hidden;}
