/* ── Page content area ── */
.page-content {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 60px;
  overflow-y: auto;
}

.page-inner {
  max-width: 560px;
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(1.4) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.4) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.65);
  border-left-color: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  padding: 40px 36px;
  color: var(--text);
}

/* ── About page ── */
.about-photo {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 18px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.15);
  object-fit: cover;
}

.about-name {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.about-subtitle {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.35;
  margin-bottom: 2.5rem;
}

.about-bio {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  letter-spacing: 0.02em;
  opacity: 0.6;
  text-align: center;
}

.about-bio p + p {
  margin-top: 1.4rem;
}

/* ── Contact page ── */
.contact-heading {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.contact-subtitle {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.35;
  margin-bottom: 2.5rem;
}

.contact-email {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--glass-text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-bottom: 3rem;
}
.contact-email:hover {
  opacity: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--glass-text);
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 8px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glass-text);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.contact-form button:hover {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Archive placeholder ── */
.archive-placeholder {
  text-align: center;
}

.archive-mark {
  font-size: 1.8rem;
  opacity: 0.2;
  letter-spacing: 0.4em;
  margin-bottom: 1.5rem;
}

.archive-heading {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.6rem;
}

.archive-note {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0.3;
}
