:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #2a241c;
  color: #f7f0e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(201, 161, 114, 0.22), transparent 45%),
    #2a241c;
}

.page-shell,
.section-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shell {
  width: 100vw;
  height: 100vh;
}

.home-canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #b69877;
}

.section-card {
  width: min(100%, 720px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(40, 34, 28, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.section-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-card p {
  margin: 0 0 14px;
  line-height: 1.5;
}

.section-kicker,
.section-status,
.back-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-status {
  color: #f0b85b;
}

.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  color: #f7f0e6;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: #f0b85b;
}

