.board {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20,20,20,0.12);
  background-image: var(--paper-texture),
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.06));
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.name {
  font-family: 'subway';
  color: var(--leaf);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
}

.surname {
  font-family: 'Amatic SC', cursive;
  font-size: 60px;
  color: var(--wood);
  margin-top: -8px;
  letter-spacing: 1px;
  text-align: center;
}

main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  margin-top: 30px;
  align-items: start;
}

.card {
  background: linear-gradient(180deg, rgba(216,156,90,0.06), rgba(255,255,255,0));
  border-radius: 12px;
  padding: 26px;
  border: 1px solid rgba(91,64,48,0.1);
  box-shadow: 0 8px 18px rgba(30,30,30,0.06);
}

.brand-title {
  font-family: 'Quicksand', sans-serif;
  color: var(--wood);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.side {
  background: #fffdfa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(10,10,10,0.03);
}

.page-footer {
  padding: 25px;
  background-color: var(--navy);
  margin-top: 80px;
  width: 100%;
  color: white;
  text-align: center;
  min-height: 100px;
  border-radius: 18px;
}
