  :root {
    --pm-dark: #7f4755;
    --pm-purple: #3a1f5d;
    --pm-lilac: #6f4a9c;
    --pm-rose: #b86f9e;
    --pm-pink: #e29ecf;
    --pm-light: #e7dcdc;
    --pm-cream: #e69577;
    --pm-yellow: #e4bf8b;
    --pm-white: #fff7f4;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: var(--pm-light);
    color: var(--pm-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  .container {
    width: 100%;
    max-width: 720px;
    padding: 30px 22px;
  }
  .topbar {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .topbar a {
    color: var(--pm-purple);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 247, 244, 0.55);
    border: 2px solid rgba(58, 31, 93, 0.12);
    transition: 0.15s;
  }
  .topbar a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(58, 31, 93, 0.12);
  }
  .card {
    background: rgba(255, 247, 244, 0.55);
    border: 2px solid rgba(127, 71, 85, 0.18);
    border-radius: 20px;
    padding: 22px 18px;
    backdrop-filter: blur(2px);
  }
  .logo {
    width: 140px;
    margin-bottom: 10px;
  }
  h1 {
    margin: 6px 0 8px;
    font-size: 1.7rem;
    color: var(--pm-purple);
  }
  p {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--pm-dark);
  }
  .about-line {
    margin: 0 auto 14px;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.45;
  }
  .location {
    margin: 0 0 18px;
    font-size: 0.95rem;
    color: rgba(127, 71, 85, 0.9);
  }
  /* Team layout — fallback first */
  .team {
    display: flex; /* fallback for old browsers / validators */
    gap: 14px;
    margin-top: 14px;
  }
  .team > .member {
    flex: 1;
  }
  /* Modern browsers use grid */
  @supports (display: grid) {
    .team {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
  }
  .member {
    background: rgba(255, 247, 244, 0.7);
    border: 2px solid rgba(58, 31, 93, 0.12);
    border-radius: 18px;
    padding: 16px 14px;
  }
  .photo {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(58, 31, 93, 0.15);
    box-shadow: 0 6px 18px rgba(58, 31, 93, 0.12);
    margin-bottom: 10px;
    background: var(--pm-white);
  }
  .name {
    font-weight: 800;
    color: var(--pm-purple);
    margin: 2px 0 4px;
    font-size: 1.05rem;
  }
  .role {
    display: inline-block;
    margin-top: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(228, 191, 139, 0.35);
    border: 2px solid rgba(58, 31, 93, 0.12);
    font-weight: 800;
    color: var(--pm-dark);
    font-size: 0.9rem;
  }
  .contact {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 2px dashed rgba(127, 71, 85, 0.22);
    font-size: 0.95rem;
  }
  .contact a {
    color: var(--pm-purple);
    font-weight: 800;
    text-decoration: none;
  }
  .contact a:hover {
    text-decoration: underline;
  }
  @media (max-width: 640px) {
    .team {
      grid-template-columns: 1fr;
    }
    .container {
      padding: 22px 14px;
    }
  }
  .back-home {
    margin-top: 16px;
  }
  .back-home a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 247, 244, 0.65);
    border: 2px solid rgba(58, 31, 93, 0.14);
    color: var(--pm-purple);
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.15s;
  }
  .back-home a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(58, 31, 93, 0.12);
  }
  /* Beloved Bound banner */
  .banner-link {
    display: inline-block;
  }
  .project-banner {
    width: 100%;
    max-width: 420px;
    margin: 10px auto 18px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(58, 31, 93, 0.18);
    transition: 0.2s ease;
  }
  .banner-link:hover .project-banner {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(58, 31, 93, 0.25);
  }
  /* Newsletter UI */
  .newsletter {
    margin: 18px auto 12px;
    padding: 14px 14px 12px;
    max-width: 420px;
    border-radius: 16px;
    background: rgba(255, 247, 244, 0.55);
    border: 2px solid rgba(127, 71, 85, 0.18);
    backdrop-filter: blur(2px);
  }
  .newsletter-title {
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--pm-purple);
    font-size: 1.05rem;
  }
  .newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .newsletter input[type="email"] {
    width: 260px;
    max-width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 2px solid rgba(58, 31, 93, 0.18);
    outline: none;
    background: var(--pm-white);
    color: var(--pm-purple);
    font-size: 0.95rem;
    transition: 0.15s;
  }
  .newsletter input[type="email"]::placeholder {
    color: rgba(58, 31, 93, 0.45);
  }
  .newsletter input[type="email"]:focus {
    border-color: rgba(58, 31, 93, 0.45);
    box-shadow: 0 0 0 4px rgba(228, 191, 139, 0.35);
  }
  .newsletter button {
    padding: 12px 14px;
    border-radius: 12px;
    border: none;
    background: var(--pm-purple);
    color: var(--pm-white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.15s;
  }
  .newsletter button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(58, 31, 93, 0.18);
  }
  .newsletter-note {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: rgba(127, 71, 85, 0.85);
    line-height: 1.35;
  }
  .newsletter-success {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(228, 191, 139, 0.35);
    border: 2px solid rgba(58, 31, 93, 0.18);
    color: var(--pm-purple);
    font-weight: 700;
    font-size: 0.95rem;
  }
  /* Honeypot (spam trap) */
  #website {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  .about-link {
    margin: 6px 0 12px;
  }
  .about-link a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 247, 244, 0.65);
    border: 2px solid rgba(58, 31, 93, 0.14);
    color: var(--pm-purple);
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.15s ease;
  }
  .about-link a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(58, 31, 93, 0.12);
  }
  /* Social icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
  }
  .social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(1.1);
    transition: 0.2s;
  }
  .social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.25);
  }
  .site-footer {
    margin-top: 28px;
    font-size: 0.75rem;
    opacity: 0.5;
  }
  /* CSS Document */