html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Courier Prime", "Courier New", Courier, monospace;
  color: #111;
  background: #f7f7f7 url("assets/background.png") no-repeat center center fixed;
  background-size: cover;
}

/* Layout */
.page{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.content{
  width: min(980px, 92vw);
  padding: clamp(26px, 5vw, 60px);
  padding-bottom: 140px; /* room above the brand */
}

/* Typography */
.name{
  margin: 0 0 8px 0;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subtitle{
  margin: 0 0 26px 0;
  font-size: clamp(16px, 2vw, 20px);
}

.section{
  margin: 22px 0 18px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
}

.title{
  margin: 18px 0 6px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
}

.desc{
  margin: 0 0 8px 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.45;
}

.note{
  margin: 6px 0 0 0;
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.45;
}

.footer{
  margin-top: 34px;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.45;
}

.email{
  color: inherit;
  text-decoration: none;
}

/* Brand mark: always lower-right, above content */
.brand{
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.brand-drop{
  width: clamp(70px, 11vw, 110px);
  height: auto;
  display: block;
  margin: 0 auto 6px auto;
}

.brand-name{
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.brand-tagline{
  margin-top: 6px;
  font-size: clamp(14px, 2.2vw, 18px);
  color: #fff;
  white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .content{
    width: min(980px, 94vw);
    padding-bottom: 170px;
  }
  .brand-tagline{
    white-space: normal; /* allow wrap if needed */
  }
}
