:root {
  --background: #34442f;
  --accent: #c67845;
  --accent-soft: rgba(198, 120, 69, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}

.brand {
  color: rgba(198, 120, 69, 0.62);
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(1.5rem);
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--accent);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.035em;
}

.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: rgba(198, 120, 69, 0.1);
  border-color: var(--accent);
  outline: none;
}

@media (max-width: 640px) {
  .site-header {
    top: 1.4rem;
    left: 1.4rem;
  }

  .hero {
    transform: none;
    padding: 1.4rem;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    line-height: 1.2;
  }

  .actions {
    flex-direction: column;
    width: min(260px, 100%);
    margin-top: 2rem;
  }

  .button {
    width: 100%;
  }
}
