:root {
  --orange: #CD5C08;
  --green:  #6A9C89;
  --beige:  #FFF5E4;
  --white:  #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: var(--beige);
  color: var(--green);
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
}

.page__header {
  padding-top: 100px;
}

.page__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page__footer {
  padding: 1rem 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

.brand {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1.2;
}

.brand__highlight {
  display: block;
}

.brand__sub {
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.8;
  max-width: 420px;
  margin: 50px auto;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  border: none;
}

.btn--secondary {
  background-color: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


@media (max-width: 480px) {
  .brand {
    font-size: 2rem;
  }
  .brand__sub {
    font-size: 0.9rem;
    margin-top: 30px;
  }
}
