<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Brendi's Meetspot Profile</title>
  <style>
    :root {
      --page-bg: #77756f;
      --shell: #898781;
      --shell-light: #a9a7a1;
      --panel: #94928c;
      --panel-dark: #66645f;
      --border-dark: #3f3d39;
      --border-mid: #6b6964;
      --border-light: #d8d4cc;
      --orange-1: #ffc56e;
      --orange-2: #f49b2f;
      --orange-3: #d47409;
      --orange-4: #9f5100;
      --cream: #fff4df;
      --text: #ffffff;
      --pink-1: #fff5fa;
      --pink-2: #f8d9e8;
      --lavender: #eec6ff;
      --shadow: rgba(0,0,0,.34);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px),
        linear-gradient(#7f7d78, #6c6a65);
    }

    a { color: inherit; }

    .site-shell {
      width: min(1020px, calc(100% - 22px));
      margin: 14px auto 28px;
      border: 1px solid #262523;
      background: linear-gradient(90deg, #85837e, #a4a29c 50%, #85837e);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.28),
        0 14px 34px var(--shadow);
    }

    .top-strip {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      min-height: 30px;
      padding: 6px 10px;
      color: #f5f5f5;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .035em;
      text-transform: uppercase;
      background:
        linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,0) 45%),
        linear-gradient(#62605d, #3f3e3b);
      border-bottom: 1px solid #232220;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
    }

    .status-dot {
      display: inline-block;
      width: 9px;
      height: 9px;
      margin-right: 6px;
      border-radius: 50%;
      vertical-align: -1px;
      background: radial-gradient(circle at 35% 35%, #d7ffd7 0 18%, #6dff76 35%, #16ae2d 72%, #0b6317 100%);
      box-shadow: 0 0 7px rgba(87,255,105,.95);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 34px 20px 30px;
      text-align: center;
      background:
        radial-gradient(circle at 76% 18%, rgba(255,255,255,.18), transparent 22%),
        linear-gradient(180deg, #fdb756 0%, #ef9222 58%, #c96b06 100%);
      border-top: 1px solid #ffd99a;
      border-bottom: 3px ridge #f9a136;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(98,43,0,.55);
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.24);
      box-shadow: inset 0 0 24px rgba(255,255,255,.08);
    }

    .hero::before { width: 170px; height: 170px; left: -68px; top: -95px; }
    .hero::after { width: 125px; height: 125px; right: -18px; bottom: -66px; }

    .hero h1 {
      position: relative;
      z-index: 1;
      margin: 0;
      color: #fff;
      font-size: clamp(2.4rem, 6vw, 4.3rem);
      line-height: 1;
      letter-spacing: .035em;
      text-shadow:
        0 1px 0 #fff,
        1px 2px 0 #c8c8c8,
        3px 4px 0 rgba(99,48,0,.7),
        0 7px 10px rgba(0,0,0,.22);
    }

    .hero p {
      position: relative;
      z-index: 1;
      margin: 10px 0 0;
      color: var(--cream);
      font-weight: 700;
      text-shadow: 1px 1px 0 rgba(0,0,0,.42);
    }

    .nav-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      padding: 9px;
      background: linear-gradient(#565451, #3d3c39);
      border-top: 1px solid rgba(255,255,255,.22);
      border-bottom: 1px solid #242321;
    }

    .nav-bar a,
    .footer-nav a {
      color: #241506;
      text-decoration: none;
      font-weight: 700;
      text-transform: uppercase;
      border: 1px solid #6c3900;
      background:
        linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,0) 42%),
        linear-gradient(var(--orange-1), var(--orange-2) 46%, var(--orange-3) 55%, #e98715 100%);
      box-shadow:
        inset 0 1px 0 #fff2d6,
        inset 0 -1px 0 rgba(103,44,0,.45),
        0 2px 3px rgba(0,0,0,.36);
    }

    .nav-bar a {
      min-width: 86px;
      padding: 8px 14px 7px;
      font-size: 12px;
      text-align: center;
    }

    .nav-bar a:hover,
    .nav-bar a:focus-visible,
    .footer-nav a:hover,
    .footer-nav a:focus-visible {
      filter: brightness(1.08);
      outline: 1px dotted #fff;
      outline-offset: 2px;
    }

    .profile-grid {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 12px;
      padding: 12px;
      background: linear-gradient(90deg, #8a8882, #aaa8a2 50%, #8a8882);
    }

    .panel {
      border: 1px solid var(--border-dark);
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03)), var(--panel);
      box-shadow:
        inset 1px 1px 0 rgba(255,255,255,.42),
        inset -1px -1px 0 rgba(0,0,0,.12),
        0 1px 0 rgba(255,255,255,.28);
      overflow: hidden;
    }

    .panel + .panel { margin-top: 12px; }

    .panel-title {
      margin: 0;
      padding: 8px 10px 7px;
      color: #241406;
      font-size: 15px;
      letter-spacing: .03em;
      text-transform: uppercase;
      text-align: center;
      border-bottom: 1px solid #6f3900;
      background:
        linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,0) 40%),
        linear-gradient(var(--orange-1), var(--orange-2) 48%, var(--orange-3) 52%, #e98715 100%);
      box-shadow:
        inset 0 1px 0 #fff1ce,
        inset 0 -1px 0 rgba(116,48,0,.45);
      text-shadow: 0 1px 0 rgba(255,255,255,.45);
    }

    .panel-body {
      padding: 15px;
      text-align: center;
    }

    .avatar {
      width: 160px;
      height: 160px;
      margin: 0 auto 14px;
      padding: 5px;
      overflow: hidden;
      background: #eee;
      border: 5px ridge #d8d4cd;
      box-shadow: 0 5px 12px rgba(0,0,0,.33);
    }

    .avatar img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border: 1px solid #777;
    }

    .quick-facts {
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: left;
      font-size: 13px;
      line-height: 1.65;
      text-shadow: 1px 1px 0 rgba(0,0,0,.2);
    }

    .quick-facts strong { color: #ffe0a8; }

    .main-content { min-width: 0; }

    .intro h2 {
      margin: 0 0 7px;
      font-size: clamp(1.8rem, 4vw, 2.75rem);
      font-style: italic;
      text-shadow: 2px 2px 0 rgba(0,0,0,.33);
    }

    .intro p { margin: 0; color: #f6f1e8; }

    .music-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 19px auto 3px;
    }

    .music-btn {
      min-width: 132px;
      padding: 10px 20px;
      border-radius: 999px;
      border: 1px solid #aa8194;
      color: #31272d;
      text-decoration: none;
      font-weight: 700;
      background:
        linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 45%),
        linear-gradient(var(--pink-1), var(--pink-2));
      box-shadow:
        inset 0 1px 0 #fff,
        inset 0 -2px 0 rgba(139,91,112,.16),
        0 4px 8px rgba(0,0,0,.28);
      transition: transform .15s ease, filter .15s ease;
    }

    .music-btn:hover,
    .music-btn:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.04);
      outline: 2px solid #fff;
      outline-offset: 2px;
      background:
        linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 45%),
        linear-gradient(#f9efff, var(--lavender));
    }

    blockquote {
      max-width: 690px;
      margin: 18px auto 0;
      padding: 16px 20px;
      background: linear-gradient(180deg, #6d6b67, #5d5b57);
      border-left: 5px solid #f6a028;
      border-right: 5px solid #f6a028;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
      text-align: center;
      font-style: italic;
      line-height: 1.5;
    }

    .poem {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      line-height: 1.55;
    }

    .poem h3 {
      margin: 0 0 12px;
      font-size: 1.55rem;
      text-shadow: 1px 1px 0 rgba(0,0,0,.28);
    }

    .poem p { margin: 0 0 16px; }

    .poem-card + .poem-card { margin-top: 12px; }

    .heart {
      margin: 2px 0 0;
      font-size: 18px;
      text-shadow: 0 0 6px rgba(255,255,255,.65);
    }

    .divider {
      width: 78%;
      height: 1px;
      margin: 18px auto;
      border: 0;
      background: repeating-linear-gradient(to right, rgba(255,255,255,.6) 0 4px, transparent 4px 8px);
    }

    details {
      width: min(520px, 100%);
      margin: 0 auto;
      border: 1px dashed #f8d1a6;
      background: rgba(63,61,57,.4);
      text-align: center;
    }

    summary {
      cursor: pointer;
      padding: 10px;
      color: #ffe3bf;
      font-weight: 700;
    }

    details p { margin: 0; padding: 0 12px 12px; }

    .footer {
      padding: 11px 12px 13px;
      text-align: center;
      color: #dedbd5;
      font-size: 12px;
      background: linear-gradient(#4e4c49, #343330);
      border-top: 1px solid #242321;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 7px;
      margin-top: 9px;
    }

    .footer-nav a {
      padding: 5px 9px;
      font-size: 11px;
    }

    @media (max-width: 760px) {
      .profile-grid { grid-template-columns: 1fr; }
      .top-strip { justify-content: center; text-align: center; }
      .top-strip span:last-child { display: none; }
      .music-btn { min-width: 140px; }
      .site-shell { width: min(100% - 10px, 1020px); margin-top: 6px; }
    }
  </style>