:root {
  --ink: #1a1614;
  --paper: #f7f3ed;
  --accent: #8b2942;
  --muted: #5c534d;
  --sand: #e8dfd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.hero {
  min-height: 88vh;
  background:
    linear-gradient(135deg, rgba(26, 22, 20, 0.85), rgba(139, 41, 66, 0.55)),
    url("hero-texture.svg") center / cover;
  background-color: #2c2420;
  color: var(--paper);
  padding: 1.5rem 5vw 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
}

.dot {
  color: #f0c4a0;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: rgba(247, 243, 237, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a:hover {
  color: #fff;
}

.hero__content {
  max-width: 38rem;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(247, 243, 237, 0.8);
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.lede {
  font-size: 1.1rem;
  color: rgba(247, 243, 237, 0.92);
  margin: 0 0 2rem;
  max-width: 34ch;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--paper);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

.cta:hover {
  background: #fff;
}

.section {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.5rem 5vw;
}

.section--alt {
  background: var(--sand);
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact {
  text-align: center;
}

.contact a {
  color: var(--accent);
}

.fine {
  margin-top: 2rem !important;
  font-size: 0.85rem !important;
  color: #8a827b !important;
}

.footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  color: #8a827b;
}
