:root { color-scheme: light; }

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #111;
  background: #fff;
}
a { color: inherit; }

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}
.brand { font-weight: 700; letter-spacing: 0.2px; }
.cta { text-decoration: none; font-weight: 600; }

.hero {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #f7f7f7, #fff);
  border-bottom: 1px solid #eee;
}
.hero h1 { margin: 0 0 8px; font-size: 34px; line-height: 1.15; }
.subtitle { margin: 0 0 16px; color: #333; max-width: 70ch; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 8px; }
.fineprint { margin: 8px 0 0; color: #444; font-size: 14px; }

.section { padding: 28px 0; }
.section h2 { margin: 0 0 12px; font-size: 22px; }

.list { margin: 0; padding-left: 18px; }
.list li { margin: 6px 0; }

.button {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #111;
  font-weight: 650;
}
.button.secondary {
  border-color: #ddd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.card {
  margin: 0;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card figcaption {
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
}

.contact { border-top: 1px solid #eee; }
.contact-line { font-size: 18px; margin: 0 0 8px; }
.footer {
  padding: 18px 0;
  border-top: 1px solid #eee;
  color: #444;
}
