:root {
  color-scheme: light;
  --ink: #0a1526;
  --muted: #4c5464;
  --paper: #eceae4;
  --surface: #f5f2ec;
  --stone: #8d9199;
  --charcoal: #0a1830;
  --brass: #836237;
  --brass-light: #c9a86a;
  --cream: #f7f4ee;
  --line: rgba(10, 24, 48, 0.16);
  --shadow: 0 24px 70px rgba(10, 21, 38, 0.24);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}
