:root {
  --bg: #f7f9fb;
  --alt-bg: #eef2f5;
  --text: #1f2933;
  --muted: #5f6c7b;
  --accent: #2563eb;
  --accent-soft: #e0e7ff;
  --border: #d1d9e0;
}

* {
  box-sizing: border-box;
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

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

.site-header h1 {
  margin: 0;
}

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

.header-text {
  flex: 1;
}

.header-logo img {
  max-height: 120px;
  width: auto;
}

.tagline {
  color: var(--muted);
  margin: 0.25rem 0 1rem;
}

nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(135deg, var(--accent-soft), white);
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
}

.cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

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

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

.section {
  background: var(--bg);
}

.section.alt {
  background: var(--alt-bg);
}

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

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

.card h3 {
  margin-top: 0;
}

.map-placeholder {
  background: white;
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.etiquette-list {
  list-style: none;
  padding: 0;
}

.etiquette-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.etiquette-list li:last-child {
  border-bottom: none;
}

.contact a {
  color: var(--accent);
  font-weight: 500;
}

.site-footer {
  background: white;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}