:root {
  --bg: #f6f5f1;
  --paper: #ffffff;
  --text: #1c1c1a;
  --muted: #6b6b67;
  --line: #ddd8cb;
  --accent: #b85c2e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, #ebe6d7 0%, transparent 55%), var(--bg);
}
.top {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { font-weight: 700; letter-spacing: .4px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 20px; }
main { max-width: 920px; margin: 0 auto; padding: 10px 20px 50px; }
.hero { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 40px; }
.kicker { color: var(--accent); font-weight: 600; margin: 0 0 8px; }
h1 { margin: 0; font: 700 44px/1.12 "Newsreader", serif; }
.sub { margin-top: 16px; color: var(--muted); max-width: 720px; line-height: 1.7; }
.cta { display: inline-block; margin-top: 22px; text-decoration: none; color: #fff; background: var(--accent); padding: 10px 16px; border-radius: 999px; }
.posts { margin-top: 28px; }
.post { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 14px; }
.post .meta { margin: 0; color: var(--muted); font-size: 14px; }
.post h2 { margin: 10px 0; font: 700 28px/1.2 "Newsreader", serif; }
.post p { margin: 0; color: var(--muted); line-height: 1.65; }
.about, .contact { margin-top: 24px; padding: 20px; border-top: 1px solid var(--line); }
footer { max-width: 920px; margin: 0 auto; padding: 0 20px 30px; color: var(--muted); font-size: 14px; }
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  .hero { padding: 28px; }
  nav a { margin-left: 12px; }
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.quick-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.quick-btn.email {
  background: #1f2937;
  color: #fff;
}

.quick-btn.whatsapp {
  background: #25D366;
  color: #102215;
}

@media (max-width: 768px) {
  .quick-actions {
    right: 12px;
    bottom: 12px;
  }
}
