:root{
  --bg: #eef6e6;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --accent: #111827;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text); }
a{ color:inherit; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  padding: 18px 0;
}

.logo-only{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.brand{ display:inline-flex; align-items:center; text-decoration:none; }
.logo{ height:60px; width:auto; display:block; }

.page-bg{
  background: var(--bg);
  min-height: calc(100vh - 140px);
  padding: 56px 0;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.center-card{
  max-width: 760px;
  margin: 0 auto;
}

.lead{
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.link-strong{
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid transparent;
}

.btn-primary{
  background: var(--accent);
  color:#fff;
}

.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--accent);
}

.site-footer{
  background:#fff;
  border-top:1px solid var(--border);
  padding: 18px 0;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  color: var(--muted);
  font-size: 14px;
}

/* Contact page */
.contact-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.kicker{
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 10px;
}

.contact-title{
  font-size: 46px;
  margin: 0 0 26px;
  line-height: 1.05;
}

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

.contact-block{
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background:#fff;
}

.contact-h{
  margin:0 0 10px;
  font-size: 18px;
}

.contact-p{
  margin:0 0 8px;
  font-size: 18px;
}

.muted{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.contact-note{
  margin-top: 18px;
  padding-top: 14px;
  border-top:1px solid var(--border);
}

/* Mobile */
@media (max-width: 768px){
  .page-bg{ padding: 30px 0; }
  .contact-title{ font-size: 34px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .logo{ height:40px; }
}
