/* Grondvik — coming soon theme. BEM, rem units. */

:root {
  --c-light: #edecec;
  --c-dark: #514f4f;
  --c-darker: #454343;
  --c-amber: #e29820;
  --c-ink: #1d1d1b;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--c-light);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
}

/* ── Home / coming soon ─────────────────────────────── */

body.home {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--c-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100dvh;
}

.hero__top {
  flex: 1 1 0;
  min-height: 2.5rem;
  background: var(--c-light);
}

.hero__banner {
  display: block;
  width: 100%;
  height: auto;
}

.hero__bottom {
  flex: 1.4 1 0;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.hero__bottom::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  background: var(--c-amber);
  margin-bottom: 0.75rem;
}

.hero__content {
  color: #fff;
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 38rem;
}

.hero__content a { color: var(--c-amber); }

.hero__soon {
  margin: 0;
  color: #fff;
  font-size: clamp(0.78rem, 3.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: clamp(0.12em, 0.9vw, 0.32em);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__brand {
  margin: 0;
  color: var(--c-amber);
  font-size: clamp(0.65rem, 2.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: clamp(0.14em, 0.8vw, 0.28em);
  white-space: nowrap;
}

@media (max-width: 48rem) {
  .hero__top { flex: 0.55 1 0; }
}

/* ── Inner pages (blog scaffold, future content) ────── */

.prose {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.prose__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  text-wrap: balance;
}

.prose__meta { color: var(--c-dark); }

.prose__list { padding-left: 1.25rem; }

.prose a { color: var(--c-amber); }
