
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #1f4d36;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

.header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 44px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

.hero {
  padding: 6rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta {
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  margin: 0 0.4rem;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: #f8fafc;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}

.card h3 {
  margin-top: 0;
}

.tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.address {
  margin-top: 1.5rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
