:root {
  --falu-red: #9c3b2e;
  --falu-red-dark: #6d2a20;
  --cream: #f7f4ee;
  --cream-dark: #ece5d6;
  --ink: #3d342e;
  --gold: #f4c95d;
  --green: #6f9a52;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdfaf3 0%, var(--cream-dark) 100%);
  -webkit-font-smoothing: antialiased;
}

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

.content {
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house-illustration {
  width: min(320px, 78vw);
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 18px rgba(61, 43, 31, 0.14));
}

.house-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--falu-red);
  font-weight: 600;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  color: var(--falu-red-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tagline {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5a4f45;
  max-width: 38ch;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 220px;
  margin: 2.25rem 0 1.25rem;
}

.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9b79f, transparent);
}

.footer-note {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #a08e78;
}

@media (max-width: 420px) {
  .tagline {
    font-size: 0.98rem;
  }
}
