:root {
  --ink: #171717;
  --muted: #62605d;
  --paper: #f7f4ee;
  --bone: #fffcf6;
  --charcoal: #242424;
  --brick: #b94a36;
  --sage: #657162;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--bone);
  background: rgba(23, 23, 23, 0.76);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 252, 246, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-block: 6px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--bone);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(340px, 1.15fr);
  align-items: stretch;
  overflow: hidden;
  padding-top: 74px;
  color: var(--bone);
  background:
    linear-gradient(115deg, rgba(23, 23, 23, 0.98), rgba(36, 36, 36, 0.9)),
    var(--charcoal);
}
