    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --bg: #0A0A0A;
      --card: #111111;
      --border: #292929;
      --primary: #C43232;
      --primary-text: #e54848;
      --text: #ffffff;
      --text-secondary: #d1d1d1;
      --text-muted: #949494;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 48px 16px 80px;
      overflow-x: hidden;
    }

    main,
    main > section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ── HEADER ── */
    .site-header {
      width: 100%;
      max-width: 480px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
    }
    .site-header img {
      height: 28px;
      width: auto;
      object-fit: contain;
    }
    .back-link {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .15s;
    }
    .back-link:hover { color: var(--text-secondary); }

    /* ── AVATAR ── */
    .avatar-wrap {
      position: relative;
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .avatar-border {
      position: absolute;
      inset: -2px;
      border: 2px solid var(--primary);
    }
    .avatar-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    /* ── META ── */
    .meta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin-bottom: 40px;
      text-align: center;
    }
    .meta-name {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -.02em;
      color: var(--text);
    }
    .meta-tag {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--primary-text);
    }
    .meta-city {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-muted);
    }

    .profile-note {
      max-width: 360px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.5;
      color: var(--text-secondary);
    }

    /* ── SECTION LABEL ── */
    .section-label {
      width: 100%;
      max-width: 480px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 1px;
      height: 12px;
      background: var(--primary);
      flex-shrink: 0;
    }

    /* ── LINKS ── */
    .links {
      width: 100%;
      max-width: 480px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      margin-bottom: 12px;
    }

    .link-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      transition: background .15s, border-color .15s;
      background: transparent;
      position: relative;
    }
    .link-item:last-child { border-bottom: none; }
    .link-item:hover { background: rgba(196,50,50,.05); }
    .link-item:hover::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: var(--primary);
    }

    .link-icon {
      color: var(--text-muted);
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color .15s;
    }
    .link-item:hover .link-icon { color: var(--primary-text); }

    .link-text { flex: 1; min-width: 0; }
    .link-label {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .02em;
      color: var(--text);
    }
    .link-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 2px;
      letter-spacing: .02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .link-arrow {
      color: var(--text-muted);
      flex-shrink: 0;
      transition: color .15s, transform .15s;
    }
    .link-item:hover .link-arrow {
      color: var(--primary-text);
      transform: translateX(2px);
    }

    .consult-note {
      width: 100%;
      max-width: 480px;
      margin: 0 0 24px;
      padding: 12px 14px;
      border: 1px solid var(--border);
      background: rgba(17,17,17,.28);
      color: var(--text-muted);
      font-size: 12px;
      line-height: 1.5;
      text-align: center;
    }

    /* ── DIVIDER ── */
    .links-gap { height: 24px; }

    /* ── PORTFOLIO STRIP ── */
    .portfolio-wrap {
      width: 100%;
      max-width: 480px;
      margin-top: 32px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      width: 100%;
    }
    .portfolio-item {
      aspect-ratio: 1/1;
      overflow: hidden;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .portfolio-item:last-child { border-right: none; }
    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .3s;
    }
    .portfolio-item:hover img { transform: scale(1.05); }
    .portfolio-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid var(--border);
      pointer-events: none;
    }

    .view-more-wrap {
      display: flex;
      justify-content: stretch;
      margin-top: 0;
      width: 100%;
    }
    .view-more {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border: 1px solid var(--border);
      border-top: none;
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color .15s, background .15s, color .15s;
    }
    .view-more:hover {
      border-color: var(--text-muted);
      background: rgba(196,50,50,.05);
      color: var(--text);
    }
    .view-more svg { flex-shrink: 0; }

    /* ── FOOTER ── */
    .footer {
      margin-top: 48px;
      font-size: 10px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #858585;
      text-align: center;
      white-space: nowrap;
    }

    @media(max-width:360px) {
      .footer {
        font-size: 9px;
        letter-spacing: .04em;
      }
    }
