/* okamuskoka — minimal starter styles (mobile first) */
:root {
  --bg: #0f1a14;
  --fg: #f3f0e7;
  --accent: #7ba884;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 12vw, 5rem);
  letter-spacing: 0.04em;
}

.hero__tag {
  margin: 0.5rem 0 0;
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 3.5vw, 1.1rem);
}
