.host-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  z-index: 5;
}

.back-link {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0.5;
  font-weight: 500;
  transition: opacity 0.2s;
  z-index: 10;
}

.back-link:hover { opacity: 1; }

.host-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.host-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1rem;
  font-weight: 500;
}

.host-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.host-title em {
  color: var(--ink);
  font-style: italic;
}

.host-intro {
  font-size: 0.875rem;
  opacity: 0.55;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Textarea matching the form style */
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.6rem;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.6);
  color: #1a1a1a;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-textarea::placeholder {
  color: #1a1a1a;
  opacity: 0.3;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--label-color);
  box-shadow: 0 0 0 3px rgba(184, 54, 42, 0.08);
}

@media (max-width: 700px) {
  .host-page { padding: 2rem 1.25rem; }
  .back-link { top: 1.2rem; left: 1.2rem; }
}
