:root {
  --bg: #f5eae3;
  --ink: #806f64;
  --muted: #a39289;
  --surface: rgba(255, 255, 255, 0.34);
  --line: rgba(128, 111, 100, 0.18);
  --radius: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 18px 28px;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.page {
  width: min(900px, 100%);
  min-height: calc(100vh - 36px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.home-link:hover,
.home-link:focus-visible {
  color: #5f514a;
  border-color: #5f514a;
  background: rgba(255, 255, 255, 0.48);
  outline: none;
}

.brand {
  width: 170px;
  max-width: 52%;
  height: auto;
  display: block;
}

.space {
  flex: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.space-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(80, 60, 50, 0.1);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.next {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.next h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
}

.next p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  body {
    padding: 10px 14px;
  }

  .page {
    min-height: calc(100vh - 20px);
    gap: 16px;
  }

  .topbar {
    align-items: center;
  }

  .brand {
    width: 138px;
    max-width: 48%;
  }

  .space {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .space-art {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  h1 {
    font-size: 2.8rem;
  }

  .intro {
    margin-top: 12px;
    font-size: 1rem;
  }

  .next {
    margin-top: 18px;
  }
}
