/* Example client site — plain styling, only here so the editor has something
   realistic to render. */

:root { --ink: #16181d; --soft: #5b626e; --line: #e5e7eb; --accent: #b4531f; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font: 16px/1.6 Georgia, "Times New Roman", serif;
  color: var(--ink);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
}

.logo { font-weight: 700; font-size: 18px; text-decoration: none; color: var(--ink); }
nav a { margin-left: 20px; color: var(--soft); text-decoration: none; }

main { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.hero { text-align: center; padding: 56px 0; }
.hero-image { width: 100%; max-width: 640px; height: 280px; object-fit: cover; border-radius: 8px; background: #eceff3; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 28px 0 12px; }
.lede { font-size: 19px; color: var(--soft); max-width: 620px; margin: 0 auto 24px; }

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-family: system-ui, sans-serif;
  font-size: 15px;
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; padding: 32px 0 56px; }
.card img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; background: #eceff3; }
.card h2 { font-size: 22px; margin: 16px 0 8px; }
.card p { margin: 0; color: var(--soft); }

.banner {
  background-size: cover;
  background-position: center;
  background-color: #2b2f36;
  border-radius: 8px;
  padding: 72px 32px;
  margin-bottom: 56px;
  text-align: center;
}
.banner-text { color: #fff; font-size: 26px; margin: 0; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55); }

footer { border-top: 1px solid var(--line); padding: 24px 32px; color: var(--soft); font-size: 14px; text-align: center; }
