:root{
  --bg: #f3efec;
  --text: #1b1b1b;
  --muted: #6a6a6a;
  --accent: #111;
  --chip: #0f172a;
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
.page { min-height: 100%; display: flex; flex-direction: column; }
/* Topbar */
.topbar{
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 20;
}
.brand .brand-lines{ line-height: 1.05; }
.brand .line{ display:block; font-size: clamp(18px, 2.3vw, 40px); font-weight: 300; letter-spacing:.2px; }
.brand .strong{ font-weight: 800; }
.spacer{ display:none; }
@media (min-width: 900px){ .spacer{ display:block; } }
.contact{
  display:flex; flex-direction: column; gap:6px;
  text-align:right; white-space:nowrap;
}
.contact-line{
  font-weight:600; text-decoration:none; color:var(--text);
}
.contact .light{ color: var(--muted); font-weight: 400; }
.icons{ display:flex; gap:12px; align-items:center; }
.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius: 999px;
  background: #fff; color: var(--chip);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  cursor:pointer;
}
.icon-btn:hover{ transform: translateY(-1px); }
.icon-btn.menu{ margin-left:6px; }
/* Hero */
.hero{ width:100%; }
.hero-img{
  width:100%; height: clamp(260px, 45vw, 520px);
  object-fit: cover;
  display:block;
  border-radius: 0 0 var(--radius) var(--radius);
}
/* Content */
.content{
  max-width: 1100px;
  margin: 26px auto 60px;
  padding: 0 20px;
  width: 100%;
}
.card{
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.card h2{ margin:0 0 8px; }
/* Footer */
.footer{
  margin-top:auto; padding: 24px; text-align:center;
  color: var(--muted);
}
