:root {
  --bg: #f7f1e8;
  --text: #211816;
  --muted: #6f625c;
  --line: #d8cbbb;
  --accent: #cf5538;
  --soft: #fffaf2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#d8cbbb 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  pointer-events: none;
}

.topbar {
  height: 86px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  background: rgba(247,241,232,.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.brand strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
}

.brand span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--muted);
}

.page {
  padding: 34px;
}

.eyebrow {
  font-family: Arial, sans-serif;
  letter-spacing: 6px;
  color: #9a7553;
  font-weight: 700;
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(58px, 10vw, 140px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 760px;
  font-family: Arial, sans-serif;
  font-size: 25px;
  line-height: 1.55;
  color: var(--muted);
}

.box {
  margin-top: 70px;
  max-width: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,250,242,.7);
  font-family: Arial, sans-serif;
}

.box p {
  margin: 0 0 8px;
  color: var(--muted);
}

.box strong {
  font-size: 28px;
  color: var(--accent);
}

@media (max-width: 700px) {
  .topbar {
    height: auto;
    padding: 22px;
  }

  .page {
    padding: 24px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 19px;
  }
}