:root {
  color-scheme: dark;
  --field: #101820;
  --panel: #f4efe6;
  --ink: #f9f5ef;
  --muted: rgba(249, 245, 239, 0.72);
  --accent: #e5b45b;
  --line: rgba(249, 245, 239, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--field);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(229, 180, 91, 0.12), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(244, 239, 230, 0.1), transparent 32%),
    var(--field);
}

.site-shell {
  width: min(100%, 900px);
  min-height: 100vh;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 88px) 24px;
}

.identity {
  max-width: 700px;
  padding-left: clamp(0px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.eyebrow,
h1,
.note {
  margin: 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin-top: 24px;
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 720;
  line-height: 0.88;
}

.note {
  max-width: 32rem;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

@media (max-width: 560px) {
  .site-shell {
    align-items: end;
    padding: 28px 20px 44px;
  }

  .identity {
    padding-left: 20px;
  }
}

